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

  /system/bt/osi/include/
allocation_tracker.h 45 // by calling |allocation_tracker_resize_for_canary|. Returns |ptr| offset
59 size_t allocation_tracker_resize_for_canary(size_t size);
  /system/bt/osi/src/
allocator.cc 29 size_t real_size = allocation_tracker_resize_for_canary(size);
45 size_t real_size = allocation_tracker_resize_for_canary(size + 1);
59 size_t real_size = allocation_tracker_resize_for_canary(size);
66 size_t real_size = allocation_tracker_resize_for_canary(size);
allocation_tracker.cc 109 alloc_total_size += allocation_tracker_resize_for_canary(requested_size);
152 free_total_size += allocation_tracker_resize_for_canary(allocation->size);
173 size_t allocation_tracker_resize_for_canary(size_t size) { function
  /system/bt/osi/test/
allocation_tracker_test.cc 33 EXPECT_EQ(4U, allocation_tracker_resize_for_canary(4));
48 size_t with_canary_size = allocation_tracker_resize_for_canary(4);

Completed in 84 milliseconds