HomeSort by relevance Sort by last modified time
    Searched refs:tbi (Results 1 - 3 of 3) 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/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
collector.py 311 tbi = locals.get('__traceback_info__', None)
312 if tbi is not None:
313 data['traceback_info'] = str(tbi)
  /external/mksh/src/
exec.c 1104 struct tbl *tp = NULL, *tbi; local
1117 tbi = (flags & FC_BI) ? ktsearch(&builtins, name, h) : NULL;
1122 if ((flags & FC_SPECBI) && tbi && (tbi->flag & SPEC_BI))
1123 tp = tbi;
1135 if (!tp && (flags & FC_NORMBI) && tbi)
1136 tp = tbi;
    [all...]

Completed in 281 milliseconds