HomeSort by relevance Sort by last modified time
    Searched refs:tbi (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 175 /// Assuming that this is a dominator of TBI, determine if it contains
180 /// Also returns true when TBI == this.
181 bool isUsefulDominator(const TraceBlockInfo &TBI) const {
182 // The trace for TBI may not even be calculated yet.
183 if (!hasValidDepth() || !TBI.hasValidDepth())
186 if (Head != TBI.Head)
188 // It is almost always the case that TBI belongs to the same trace as
191 // same trace as TBI. This is not a big problem as long as it doesn't
193 return HasValidInstrDepths && InstrDepth <= TBI.InstrDepth;
238 TraceBlockInfo &TBI;
    [all...]
  /external/mksh/src/
exec.c 1081 struct tbl *tp = NULL, *tbi; local
1094 tbi = (flags & FC_BI) ? ktsearch(&builtins, name, h) : NULL;
1099 if ((flags & FC_SPECBI) && tbi && (tbi->flag & SPEC_BI))
1100 tp = tbi;
1112 if (!tp && (flags & FC_NORMBI) && tbi)
1113 tp = tbi;
    [all...]

Completed in 921 milliseconds