Lines Matching refs:qpoints
166 void SetQuickAllocEntryPoints##suffix(QuickEntryPoints* qpoints, bool instrumented) { \
168 qpoints->SetAllocArrayResolved(art_quick_alloc_array_resolved##suffix##_instrumented); \
169 qpoints->SetAllocArrayResolved8(art_quick_alloc_array_resolved8##suffix##_instrumented); \
170 qpoints->SetAllocArrayResolved16(art_quick_alloc_array_resolved16##suffix##_instrumented); \
171 qpoints->SetAllocArrayResolved32(art_quick_alloc_array_resolved32##suffix##_instrumented); \
172 qpoints->SetAllocArrayResolved64(art_quick_alloc_array_resolved64##suffix##_instrumented); \
173 qpoints->SetAllocObjectResolved(art_quick_alloc_object_resolved##suffix##_instrumented); \
174 qpoints->SetAllocObjectInitialized(art_quick_alloc_object_initialized##suffix##_instrumented); \
175 qpoints->SetAllocObjectWithChecks(art_quick_alloc_object_with_checks##suffix##_instrumented); \
176 qpoints->SetAllocStringObject(art_quick_alloc_string_object##suffix##_instrumented); \
177 qpoints->SetAllocStringFromBytes(art_quick_alloc_string_from_bytes##suffix##_instrumented); \
178 qpoints->SetAllocStringFromChars(art_quick_alloc_string_from_chars##suffix##_instrumented); \
179 qpoints->SetAllocStringFromString(art_quick_alloc_string_from_string##suffix##_instrumented); \
181 qpoints->SetAllocArrayResolved(art_quick_alloc_array_resolved##suffix); \
182 qpoints->SetAllocArrayResolved8(art_quick_alloc_array_resolved8##suffix); \
183 qpoints->SetAllocArrayResolved16(art_quick_alloc_array_resolved16##suffix); \
184 qpoints->SetAllocArrayResolved32(art_quick_alloc_array_resolved32##suffix); \
185 qpoints->SetAllocArrayResolved64(art_quick_alloc_array_resolved64##suffix); \
186 qpoints->SetAllocObjectResolved(art_quick_alloc_object_resolved##suffix); \
187 qpoints->SetAllocObjectInitialized(art_quick_alloc_object_initialized##suffix); \
188 qpoints->SetAllocObjectWithChecks(art_quick_alloc_object_with_checks##suffix); \
189 qpoints->SetAllocStringObject(art_quick_alloc_string_object##suffix); \
190 qpoints->SetAllocStringFromBytes(art_quick_alloc_string_from_bytes##suffix); \
191 qpoints->SetAllocStringFromChars(art_quick_alloc_string_from_chars##suffix); \
192 qpoints->SetAllocStringFromString(art_quick_alloc_string_from_string##suffix); \
217 void ResetQuickAllocEntryPoints(QuickEntryPoints* qpoints) { in ResetQuickAllocEntryPoints() argument
221 SetQuickAllocEntryPoints_dlmalloc(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
225 SetQuickAllocEntryPoints_rosalloc(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
230 SetQuickAllocEntryPoints_bump_pointer(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
235 SetQuickAllocEntryPoints_tlab(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
240 SetQuickAllocEntryPoints_region(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
245 SetQuickAllocEntryPoints_region_tlab(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
252 UNUSED(qpoints); in ResetQuickAllocEntryPoints()