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

  /art/runtime/gc/space/
valgrind_malloc_space-inl.h 35 size_t* usable_size) {
37 bytes_allocated, usable_size);
52 size_t* usable_size) {
54 usable_size);
67 size_t ValgrindMallocSpace<S, A>::AllocationSize(mirror::Object* obj, size_t* usable_size) {
69 reinterpret_cast<byte*>(obj) - kValgrindRedZoneBytes), usable_size);
78 size_t usable_size = 0; local
79 AllocationSize(ptr, &usable_size);
80 VALGRIND_MAKE_MEM_UNDEFINED(obj_with_rdz, usable_size);
space_test.h 64 size_t* bytes_allocated, size_t* usable_size)
68 mirror::Object* obj = alloc_space->Alloc(self, bytes, bytes_allocated, usable_size);
76 size_t* bytes_allocated, size_t* usable_size)
80 mirror::Object* obj = alloc_space->AllocWithGrowth(self, bytes, bytes_allocated, usable_size);
348 size_t allocation_size, usable_size; local
351 &usable_size);
355 EXPECT_EQ(usable_size, computed_usable_size);
363 size_t allocation_size, usable_size; local
364 lots_of_objects[i] = AllocWithGrowth(space, self, 1024, &allocation_size, &usable_size);
368 EXPECT_EQ(usable_size, computed_usable_size)
    [all...]
  /art/runtime/gc/
heap-inl.h 67 size_t usable_size; local
84 usable_size = bytes_allocated;
85 pre_fence_visitor(obj, usable_size);
89 &usable_size);
92 obj = AllocateInternalWithGc(self, allocator, byte_count, &bytes_allocated, &usable_size,
106 DCHECK_GT(usable_size, 0u);
126 pre_fence_visitor(obj, usable_size);
132 CHECK_LE(obj->SizeOf(), usable_size);
197 size_t* usable_size) {
210 *usable_size = alloc_size
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
vertex_attrib_manager.cc 84 uint32 usable_size = buffer_size - offset_; local
85 GLuint num_elements = usable_size / real_stride_ +
86 ((usable_size % real_stride_) >=

Completed in 824 milliseconds