Home
last modified time | relevance | path

Searched refs:CurVNode (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/profile/
DInstrProfilingValue.c148 ValueProfNode *CurVNode = ValueCounters[CounterIndex]; in __llvm_profile_instrument_target() local
152 while (CurVNode) { in __llvm_profile_instrument_target()
153 if (TargetValue == CurVNode->Value) { in __llvm_profile_instrument_target()
154 CurVNode->Count++; in __llvm_profile_instrument_target()
157 if (CurVNode->Count < MinCount) { in __llvm_profile_instrument_target()
158 MinCount = CurVNode->Count; in __llvm_profile_instrument_target()
159 MinCountVNode = CurVNode; in __llvm_profile_instrument_target()
161 PrevVNode = CurVNode; in __llvm_profile_instrument_target()
162 CurVNode = CurVNode->Next; in __llvm_profile_instrument_target()
196 CurVNode = MinCountVNode; in __llvm_profile_instrument_target()
[all …]
/external/llvm-project/compiler-rt/lib/profile/
DInstrProfilingValue.c153 ValueProfNode *CurVNode = ValueCounters[CounterIndex]; in instrumentTargetValueImpl() local
157 while (CurVNode) { in instrumentTargetValueImpl()
158 if (TargetValue == CurVNode->Value) { in instrumentTargetValueImpl()
159 CurVNode->Count += CountValue; in instrumentTargetValueImpl()
162 if (CurVNode->Count < MinCount) { in instrumentTargetValueImpl()
163 MinCount = CurVNode->Count; in instrumentTargetValueImpl()
164 MinCountVNode = CurVNode; in instrumentTargetValueImpl()
166 PrevVNode = CurVNode; in instrumentTargetValueImpl()
167 CurVNode = CurVNode->Next; in instrumentTargetValueImpl()
201 CurVNode = MinCountVNode; in instrumentTargetValueImpl()
[all …]