Home | History | Annotate | Download | only in space

Lines Matching full:num_bytes

49   mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, size_t* bytes_allocated,
52 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
54 return AllocNonvirtual(self, num_bytes, bytes_allocated, usable_size,
57 mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
60 return AllocNonvirtualThreadUnsafe(self, num_bytes, bytes_allocated, usable_size,
71 mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated,
74 return AllocCommon(self, num_bytes, bytes_allocated, usable_size,
77 mirror::Object* AllocNonvirtualThreadUnsafe(Thread* self, size_t num_bytes,
81 return AllocCommon<false>(self, num_bytes, bytes_allocated, usable_size,
87 ALWAYS_INLINE bool CanAllocThreadLocal(Thread* self, size_t num_bytes);
90 ALWAYS_INLINE mirror::Object* AllocThreadLocal(Thread* self, size_t num_bytes,
92 size_t MaxBytesBulkAllocatedFor(size_t num_bytes) OVERRIDE {
93 return MaxBytesBulkAllocatedForNonvirtual(num_bytes);
95 ALWAYS_INLINE size_t MaxBytesBulkAllocatedForNonvirtual(size_t num_bytes);
157 mirror::Object* AllocCommon(Thread* self, size_t num_bytes, size_t* bytes_allocated,
169 void InspectAllRosAlloc(void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
173 void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),