HomeSort by: relevance | last modified time | path
    Searched refs:tbi (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/arch/aarch64/include/
cpufunc.h 139 #define AARCH64_ADDRTOP_TAG __BIT(55) /* ECR_EL1.TBI[01]=1 */
140 #define AARCH64_ADDRTOP_MSB __BIT(63) /* ECR_EL1.TBI[01]=0 */
141 #define AARCH64_ADDRESS_TAG_MASK __BITS(63,56) /* if TCR.TBI[01]=1 */
149 * return the space considering TBI. (PAC is not yet)
160 uint64_t addrtop, tbi; local
163 tbi = addrtop ? TCR_TBI1 : TCR_TBI0;
164 if (reg_tcr_el1_read() & tbi) {
193 uint64_t addrtop, tbi; local
196 tbi = addrtop ? TCR_TBI1 : TCR_TBI0;
197 if (reg_tcr_el1_read() & tbi) {
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
threadaux.d 149 THREAD_BASIC_INFORMATION tbi;
150 int Status = (*fn)(hnd, ThreadBasicInformation, &tbi, tbi.sizeof, null);
153 return tbi.TebBaseAddress;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 194 /// Assuming that this is a dominator of TBI, determine if it contains
199 /// Also returns true when TBI == this.
200 bool isUsefulDominator(const TraceBlockInfo &TBI) const {
201 // The trace for TBI may not even be calculated yet.
202 if (!hasValidDepth() || !TBI.hasValidDepth())
205 if (Head != TBI.Head)
207 // It is almost always the case that TBI belongs to the same trace as
210 // same trace as TBI. This is not a big problem as long as it doesn't
212 return HasValidInstrDepths && InstrDepth <= TBI.InstrDepth;
257 TraceBlockInfo &TBI;
    [all...]
  /src/bin/ksh/
exec.c 898 struct tbl *tp = NULL, *tbi; local
909 tbi = (flags & FC_BI) ? mytsearch(&builtins, name, h) : NULL;
913 if ((flags & FC_SPECBI) && tbi && (tbi->flag & SPEC_BI))
914 tp = tbi;
926 if (!tp && (flags & FC_REGBI) && tbi && (tbi->flag & REG_BI))
927 tp = tbi;
936 if (!tp && (flags & FC_UNREGBI) && tbi)
937 tp = tbi;
    [all...]
  /src/sys/arch/arm/ep93xx/
epe.c 163 uint32_t tbi = *sc->TXStsQ_cur & 0x7fff; local
164 struct mbuf *m = sc->txq[tbi].m;
169 bus_dmamap_unload(sc->sc_dmat, sc->txq[tbi].m_dmamap);
172 sc->txq[tbi].m = NULL;
174 tbi = (tbi + 1) % TX_QLEN;
175 } while (sc->txq[tbi].m == m);
  /src/external/gpl2/dtc/dist/tests/
run_tests.sh 846 run_fdtput_test "2 3 12" $dtb /randomnode tricky1 -tbi "02 003 12"

Completed in 60 milliseconds