Home
last modified time | relevance | path

Searched refs:page_address (Results 1 – 5 of 5) sorted by relevance

/external/google-breakpad/src/client/mac/handler/
Ddynamic_images.cc189 mach_vm_address_t page_address = address & (-systemPageSize); in ReadTaskMemory() local
194 mach_vm_size_t page_size = last_page_address - page_address; in ReadTaskMemory()
199 page_address, in ReadTaskMemory()
209 &local_start[(mach_vm_address_t)address - page_address], in ReadTaskMemory()
/external/v8/tools/
Dgrokdump.py1713 self.page_address = {}
1725 self.page_address[m.group(1)] = int(m.group(2), 0)
1732 return self.page_address.get(page_kind, 0)
1794 page_address = tagged_address & ~self.heap.PageAlignmentMask()
1795 return page_address == self.known_first_map_page
1798 page_address = tagged_address & ~self.heap.PageAlignmentMask()
1799 return page_address == self.known_first_old_page
1802 page_address = tagged_address & ~self.heap.PageAlignmentMask()
1803 if page_address == self.known_first_old_page: return "OLD_SPACE"
2669 def output_page_info(self, f, page_kind, page_address, my_page_address): argument
[all …]
/external/libnfc-nxp/src/
DphFriNfc_MifULFormat.c532 uint8_t page_address = 0; in phFriNfc_MfUL_GetLockBytesInfo() local
537 page_address = (uint8_t)(ps_type2_info->DynLockBytes[lock_index] >> MFUL_NIBBLE_SIZE); in phFriNfc_MfUL_GetLockBytesInfo()
552 ps_type2_info->LockByteNumber = (uint8_t)((page_address in phFriNfc_MfUL_GetLockBytesInfo()
DphFriNfc_TopazDynamicMap.c4146 uint8_t page_address = 0; in phFriNfc_Tpz_H_GetLockBytesInfo() local
4152 page_address = (uint8_t)(p_lock_info[lock_index] >> NIBBLE_SIZE); in phFriNfc_Tpz_H_GetLockBytesInfo()
4170 ps_locktlv_info->ByteAddr = (uint16_t)((page_address in phFriNfc_Tpz_H_GetLockBytesInfo()
4214 uint8_t page_address = 0; in phFriNfc_Tpz_H_GetMemBytesInfo() local
4220 page_address = (uint8_t)(p_mem_info[mem_index] >> NIBBLE_SIZE); in phFriNfc_Tpz_H_GetMemBytesInfo()
4233 ps_memtlv_info->ByteAddr = (uint16_t)((page_address in phFriNfc_Tpz_H_GetMemBytesInfo()
/external/v8/src/heap/
Dspaces.cc1878 Address page_address = start_ + i * Page::kPageSize; in AllocateChunk() local
1880 NewSpacePage::Initialize(heap(), page_address, this); in AllocateChunk()