HomeSort by relevance Sort by last modified time
    Searched refs:heap_ptr (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/test/asan/TestCases/
debug_locate.cc 17 char *heap_ptr = (char *)malloc(10); local
52 type = __asan_locate_address(heap_ptr, name, 100,
55 assert(region_address == heap_ptr);
58 type = __asan_locate_address(heap_ptr+1, name, 100,
61 assert(region_address == heap_ptr);
68 uintptr_t shadow_ptr = (((uintptr_t)heap_ptr) >> shadow_scale)
77 free(heap_ptr);
debug_report.cc 10 char *heap_ptr = (char *)malloc(10); local
11 free(heap_ptr);
15 heap_ptr[0] = 'A'; // BOOM
  /external/v8/test/cctest/
test-constantpool.cc 15 ConstantPoolArray::HEAP_PTR,
125 } else if (i <= array->last_index(ConstantPoolArray::HEAP_PTR, kSmall)) {
138 } else if (i <= array->last_index(ConstantPoolArray::HEAP_PTR, kExtended)) {
152 } else if (i <= array->last_index(ConstantPoolArray::HEAP_PTR, kSmall)) {
166 } else if (i <= array->last_index(ConstantPoolArray::HEAP_PTR, kExtended)) {
203 CheckIterator(array, ConstantPoolArray::HEAP_PTR, expected_heap_indexs, 2);
225 CheckIterator(array, ConstantPoolArray::HEAP_PTR, expected_heap_indexs, 3);
290 Handle<HeapObject> heap_ptr = local
292 CHECK(heap->InOldDataSpace(heap_ptr->address()));
293 CHECK(!first_page->Contains(heap_ptr->address()))
    [all...]

Completed in 209 milliseconds