HomeSort by relevance Sort by last modified time
    Searched refs:start_address (Results 1 - 25 of 48) sorted by null

1 2

  /system/extras/kexec_tools/
kexecload.c 21 #define START_ADDRESS 0x44000000
76 void *start_address = (void *)START_ADDRESS; local
80 {"start_address", required_argument, 0, 's'},
95 start_address = (void *) strtoul(optarg, 0, 16);
144 segment[0].mem = (void *) ((unsigned) start_address + KEXEC_ARM_ZIMAGE_OFFSET);
149 segment[1].mem = (void *) ((unsigned) start_address + KEXEC_ARM_ATAGS_OFFSET);
152 rv = kexec_load(((unsigned) start_address + KEXEC_ARM_ZIMAGE_OFFSET),
161 printf("New kernel should start at 0x%08x\n", START_ADDRESS + KEXEC_ARM_ZIMAGE_OFFSET);
  /external/v8/tools/
ll_prof.py 85 def __init__(self, name, start_address, end_address, origin, origin_offset):
90 self.start_address = start_address
119 offset = pc - self.start_address
147 end_offset = self.end_address - self.start_address
172 self.start_address,
174 self.end_address - self.start_address,
186 self.end_address - self.start_address,
223 if code.start_address <= pc < code.end_address:
241 page_id = CodePage.PageId(code.start_address)
    [all...]
  /external/chromium_org/v8/tools/
ll_prof.py 93 def __init__(self, name, start_address, end_address, origin, origin_offset):
98 self.start_address = start_address
135 offset = pc - self.start_address
163 end_offset = self.end_address - self.start_address
188 self.start_address,
190 self.end_address - self.start_address,
202 self.end_address - self.start_address,
239 if code.start_address <= pc < code.end_address:
257 page_id = CodePage.PageId(code.start_address)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
heap-checker.h 236 static void DisableChecksToHereFrom(const void* start_address);
252 static void DisableChecksFromToLocked(const void* start_address,
313 // that is mapped to [start_address..end_address)
316 uintptr_t start_address,
  /external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
heap-checker.h 236 static void DisableChecksToHereFrom(const void* start_address);
252 static void DisableChecksFromToLocked(const void* start_address,
313 // that is mapped to [start_address..end_address)
316 uintptr_t start_address,
  /external/oprofile/daemon/
opd_kernel.c 150 unsigned long long start_address; local
180 dependencies, live_info, &start_address);
187 image = opd_create_module(module_name, start_address,
188 start_address + module_size);
  /external/chromium_org/base/third_party/symbolize/
symbolize.cc 293 uint64_t start_address = symbol.st_value; local
294 start_address += symbol_offset;
295 uint64_t end_address = start_address + symbol.st_size;
298 start_address <= pc && pc < end_address) {
488 // and also set start_address to the start address of where this object
492 uint64_t &start_address) {
522 cursor = GetHex(cursor, eol, &start_address);
537 if (!(start_address <= pc && pc < end_address)) {
594 uint64_t start_address = 0; local
597 start_address);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-checker.cc 408 uintptr_t start_address; // the start of the range member in struct:HeapLeakChecker::RangeValue
753 if (iter->second.start_address < addr &&
762 uintptr_t start_address = AsInt(ptr); local
763 uintptr_t end_address = start_address + info.object_size;
765 = stack_tops->lower_bound(start_address);
767 RAW_DCHECK(*iter >= start_address, "");
795 // start_address start address of a memory region.
803 static void RecordGlobalDataLocked(uintptr_t start_address,
814 filename, start_address, end_address);
816 push_back(AllocObject(AsPtr(start_address),
907 uint64 start_address, end_address, file_offset; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-checker.cc 408 uintptr_t start_address; // the start of the range member in struct:HeapLeakChecker::RangeValue
753 if (iter->second.start_address < addr &&
762 uintptr_t start_address = AsInt(ptr); local
763 uintptr_t end_address = start_address + info.object_size;
765 = stack_tops->lower_bound(start_address);
767 RAW_DCHECK(*iter >= start_address, "");
795 // start_address start address of a memory region.
803 static void RecordGlobalDataLocked(uintptr_t start_address,
814 filename, start_address, end_address);
816 push_back(AllocObject(AsPtr(start_address),
907 uint64 start_address, end_address, file_offset; local
    [all...]
  /external/chromium_org/tools/android/memdump/
memdump.cc 74 uint start_address;
132 memory_map->start_address = static_cast<uint>(tmp);
149 (memory_map->end_address - memory_map->start_address) / PAGE_SIZE);
205 for (uint addr = memory_map.start_address, page_index = 0;
380 memory_map.start_address,
444 memory_map.start_address,
  /external/chromium_org/sandbox/win/src/
process_thread_interception.cc 406 LPTHREAD_START_ROUTINE start_address,
414 thread = orig_CreateThread(thread_attributes, stack_size, start_address,
426 0, stack_size, 0, start_address,
process_thread_interception.h 90 LPTHREAD_START_ROUTINE start_address, PVOID parameter,
interceptors_64.cc 73 LPTHREAD_START_ROUTINE start_address, PVOID parameter, DWORD creation_flags,
78 start_address, parameter, creation_flags,
interceptors_64.h 50 LPTHREAD_START_ROUTINE start_address, PVOID parameter,
  /external/oprofile/agents/jvmti/
libjvmti_oprofile.c 72 map[i].start_address,
97 debug_line[i].vma = (unsigned long)map[i].start_address;
  /external/chromium_org/v8/src/arm/
simulator-arm.cc 1581 intptr_t start_address = 0; local
1626 intptr_t start_address = 0; local
    [all...]
regexp-macro-assembler-arm.cc 1150 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 1625 intptr_t start_address = 0; local
1666 intptr_t start_address = 0; local
    [all...]
simulator-arm.h 262 intptr_t* start_address,
regexp-macro-assembler-arm.cc 1098 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); variable
    [all...]
  /external/chromium_org/v8/src/ia32/
regexp-macro-assembler-ia32.cc 1170 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); member in namespace:v8
    [all...]
  /external/chromium_org/v8/src/mips/
regexp-macro-assembler-mips.cc 1156 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
    [all...]
  /external/chromium_org/v8/src/x64/
regexp-macro-assembler-x64.cc 1259 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
    [all...]
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.cc 1128 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart); local
    [all...]
  /external/v8/src/mips/
regexp-macro-assembler-mips.cc     [all...]

Completed in 579 milliseconds

1 2