Lines Matching refs:S
81 template <typename S,
86 ValgrindMallocSpace<S,
95 void* obj_with_rdz = S::AllocWithGrowth(self, num_bytes + 2 * kValgrindRedZoneBytes, in AllocWithGrowth()
111 template <typename S,
115 mirror::Object* ValgrindMallocSpace<S,
124 void* obj_with_rdz = S::Alloc(self, num_bytes + 2 * kValgrindRedZoneBytes, in Alloc()
139 template <typename S,
143 mirror::Object* ValgrindMallocSpace<S,
152 void* obj_with_rdz = S::AllocThreadUnsafe(self, num_bytes + 2 * kValgrindRedZoneBytes, in AllocThreadUnsafe()
168 template <typename S,
172 size_t ValgrindMallocSpace<S,
177 size_t result = S::AllocationSize(reinterpret_cast<mirror::Object*>( in AllocationSize()
190 template <typename S,
194 size_t ValgrindMallocSpace<S,
214 return S::Free(self, reinterpret_cast<mirror::Object*>(obj_with_rdz)); in Free()
217 template <typename S,
221 size_t ValgrindMallocSpace<S,
234 template <typename S,
239 ValgrindMallocSpace<S,
243 MemMap* mem_map, size_t initial_size, Params... params) : S(mem_map, initial_size, params...) { in ValgrindMallocSpace()
248 template <typename S,
252 size_t ValgrindMallocSpace<S,
256 return S::MaxBytesBulkAllocatedFor(num_bytes + 2 * kValgrindRedZoneBytes); in MaxBytesBulkAllocatedFor()