Lines Matching defs:length
541 // We have to configure the SVE vector register length before calling
13922 uint64_t length = 0;
13925 length = GetPredicateLengthInBytes();
13928 length = GetVectorLengthInBytes();
13935 base + (length * instr->GetImmSVEVLScale()),
14508 size_t length = strlen(format_base) + 1;
14509 char* const format = allocator_.New<char[]>(length + arg_count);
14516 for (size_t i = 0; i < length; i++) {
14683 void* address, size_t length, int prot, int flags, int fd, off_t offset) {
14691 mmap(address, length, prot, flags, fd, offset));
14696 SetGranuleTag(address2, tag, length);
14704 int Simulator::Munmap(void* address, size_t length, int prot) {
14709 CleanGranuleTag(reinterpret_cast<char*>(address), length);
14712 return munmap(address, length);