Lines Matching refs:sci
732 SizeClassInfo *sci = GetSizeClassInfo(class_id); in AllocateBatch() local
733 SpinMutexLock l(&sci->mutex); in AllocateBatch()
734 if (sci->free_list.empty()) in AllocateBatch()
735 PopulateFreeList(stat, c, sci, class_id); in AllocateBatch()
736 CHECK(!sci->free_list.empty()); in AllocateBatch()
737 Batch *b = sci->free_list.front(); in AllocateBatch()
738 sci->free_list.pop_front(); in AllocateBatch()
744 SizeClassInfo *sci = GetSizeClassInfo(class_id); in DeallocateBatch() local
745 SpinMutexLock l(&sci->mutex); in DeallocateBatch()
747 sci->free_list.push_front(b); in DeallocateBatch()
866 SizeClassInfo *sci, uptr class_id) { in PopulateFreeList() argument
883 sci->free_list.push_back(b); in PopulateFreeList()
889 sci->free_list.push_back(b); in PopulateFreeList()