• Home
  • Raw
  • Download

Lines Matching refs:qpoints

163 void SetQuickAllocEntryPoints##suffix(QuickEntryPoints* qpoints, bool instrumented) { \
165 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix##_instrumented; \
166 qpoints->pAllocArrayResolved8 = art_quick_alloc_array_resolved8##suffix##_instrumented; \
167 qpoints->pAllocArrayResolved16 = art_quick_alloc_array_resolved16##suffix##_instrumented; \
168 qpoints->pAllocArrayResolved32 = art_quick_alloc_array_resolved32##suffix##_instrumented; \
169 qpoints->pAllocArrayResolved64 = art_quick_alloc_array_resolved64##suffix##_instrumented; \
170 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix##_instrumented; \
171 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix##_instrumented; \
172 qpoints->pAllocObjectWithChecks = art_quick_alloc_object_with_checks##suffix##_instrumented; \
173 qpoints->pAllocStringObject = art_quick_alloc_string_object##suffix##_instrumented; \
174 qpoints->pAllocStringFromBytes = art_quick_alloc_string_from_bytes##suffix##_instrumented; \
175 qpoints->pAllocStringFromChars = art_quick_alloc_string_from_chars##suffix##_instrumented; \
176 qpoints->pAllocStringFromString = art_quick_alloc_string_from_string##suffix##_instrumented; \
178 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix; \
179 qpoints->pAllocArrayResolved8 = art_quick_alloc_array_resolved8##suffix; \
180 qpoints->pAllocArrayResolved16 = art_quick_alloc_array_resolved16##suffix; \
181 qpoints->pAllocArrayResolved32 = art_quick_alloc_array_resolved32##suffix; \
182 qpoints->pAllocArrayResolved64 = art_quick_alloc_array_resolved64##suffix; \
183 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix; \
184 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix; \
185 qpoints->pAllocObjectWithChecks = art_quick_alloc_object_with_checks##suffix; \
186 qpoints->pAllocStringObject = art_quick_alloc_string_object##suffix; \
187 qpoints->pAllocStringFromBytes = art_quick_alloc_string_from_bytes##suffix; \
188 qpoints->pAllocStringFromChars = art_quick_alloc_string_from_chars##suffix; \
189 qpoints->pAllocStringFromString = art_quick_alloc_string_from_string##suffix; \
214 void ResetQuickAllocEntryPoints(QuickEntryPoints* qpoints, bool is_marking) { in ResetQuickAllocEntryPoints() argument
218 SetQuickAllocEntryPoints_dlmalloc(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
222 SetQuickAllocEntryPoints_rosalloc(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
227 SetQuickAllocEntryPoints_bump_pointer(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
232 SetQuickAllocEntryPoints_tlab(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
237 SetQuickAllocEntryPoints_region(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
243 SetQuickAllocEntryPoints_region_tlab(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
246 SetQuickAllocEntryPoints_tlab(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
254 UNUSED(qpoints); in ResetQuickAllocEntryPoints()