Home
last modified time | relevance | path

Searched refs:map_end (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/tools/android/memdump/
Dmemsymbols.py63 map_end = int(r.group(2), 16)
74 map_pages_count = (map_end - map_start + 1) / _PAGE_SIZE
82 _HexAddr(map_end),
86 _HexAddr(offset + map_end - map_start),
/external/llvm/lib/IR/
DLLVMContextImpl.cpp74 std::for_each(ExprConstants.map_begin(), ExprConstants.map_end(), in ~LLVMContextImpl()
76 std::for_each(ArrayConstants.map_begin(), ArrayConstants.map_end(), in ~LLVMContextImpl()
78 std::for_each(StructConstants.map_begin(), StructConstants.map_end(), in ~LLVMContextImpl()
80 std::for_each(VectorConstants.map_begin(), VectorConstants.map_end(), in ~LLVMContextImpl()
DConstantsContext.h534 typename MapTy::iterator map_end() { return Map.end(); }
704 typename MapTy::iterator map_end() { return Map.end(); }
DConstants.cpp2585 if (I != pImpl->ArrayConstants.map_end()) { in replaceUsesOfWithOnConstant()
2671 if (I != pImpl->StructConstants.map_end()) { in replaceUsesOfWithOnConstant()
/external/qemu/memcheck/
Dmemcheck_proc_management.c716 desc.map_end = vend; in memcheck_mmap_exepath()
737 replaced.map_end, desc.path, desc.map_start, desc.map_end); in memcheck_mmap_exepath()
760 if (desc.map_start >= vstart && desc.map_end <= vend) { in memcheck_unmap()
772 desc.map_start, desc.map_end, desc.exec_offset, vstart, vend); in memcheck_unmap()
778 } else if (desc.map_end == vend) { in memcheck_unmap()
780 desc.map_end = vstart; in memcheck_unmap()
786 tail.map_end = desc.map_end; in memcheck_unmap()
791 desc.map_end = vstart; in memcheck_unmap()
Dmemcheck_mmrange_map.c51 return (d1->desc.map_end - 1) < start2 ? -1 : 0; in cmp_rb()
53 return (d2->desc.map_end - 1) < start1 ? 1 : 0; in cmp_rb()
107 rdesc.desc.map_end = end; in mmrangemap_find_entry()
Dmemcheck_common.h241 target_ulong map_end; member
/external/v8/src/
Dhashmap.h96 Entry* map_end() const { return map_ + capacity_; } in map_end() function
178 if (q == map_end()) { in Remove()
211 const Entry* end = map_end(); in Clear()
228 const Entry* end = map_end(); in Next()
246 const Entry* end = map_end(); in Probe()
/external/chromium_org/v8/src/
Dhashmap.h107 Entry* map_end() const { return map_ + capacity_; } in map_end() function
192 if (q == map_end()) { in Remove()
226 const Entry* end = map_end(); in Clear()
244 const Entry* end = map_end(); in Next()
262 const Entry* end = map_end(); in Probe()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.cc150 uptr map_end = map_res + map_size; in MmapAlignedOrDie() local
157 if (end != map_end) in MmapAlignedOrDie()
158 UnmapOrDie((void*)end, map_end - end); in MmapAlignedOrDie()
Dsanitizer_allocator.h948 uptr map_end = map_beg + map_size; in Allocate() local
953 CHECK_LE(res + size, map_end); in Allocate()