OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
1070
struct tbl *tp = NULL, *
tbi
;
local
1083
tbi
= (flags & FC_BI) ? ktsearch(&builtins, name, h) : NULL;
1088
if ((flags & FC_SPECBI) &&
tbi
&& (
tbi
->flag & SPEC_BI))
1089
tp =
tbi
;
1101
if (!tp && (flags & FC_REGBI) &&
tbi
&& (
tbi
->flag & REG_BI))
1102
tp =
tbi
;
1103
if (!tp && (flags & FC_UNREGBI) &&
tbi
)
1104
tp =
tbi
;
[
all
...]
Completed in 57 milliseconds