Home | History | Annotate | Download | only in space

Lines Matching refs:bytes_allocated

49   mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, size_t* bytes_allocated,
51 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
53 return AllocNonvirtual(self, num_bytes, bytes_allocated, usable_size);
55 mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
58 return AllocNonvirtualThreadUnsafe(self, num_bytes, bytes_allocated, usable_size);
68 mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated,
71 return AllocCommon(self, num_bytes, bytes_allocated, usable_size);
74 size_t* bytes_allocated, size_t* usable_size) {
76 return AllocCommon<false>(self, num_bytes, bytes_allocated, usable_size);
134 mirror::Object* AllocCommon(Thread* self, size_t num_bytes, size_t* bytes_allocated,