Searched refs:BT (Results 1 - 25 of 70) sorted by last modified time

123

/external/srec/config/en.us/dictionary/
H A Dc0.614677 BT B IY1 T IY1
[all...]
/external/sonivox/jet_tools/JetCreator/
H A Dimg_splash.py794 E\xb0QA\x90p\x83p\xad\xb2\xf0Om\xaa%z\xaa)&\x1c;|\x1c+BT.tTN\x0c$2d\xa4\x0c\
/external/qemu/disas/
H A Dppc.c446 as the BT field in the same instruction. */
527 /* The BT field in an X or XL form instruction. */
528 #define BT BH + 1
535 #define CR BT + 1
905 the BT field in the same instruction. This operand is marked FAKE.
906 The insertion function just copies the BT field into the BA field,
1457 function just copies the BT field into the BA field, and the
3135 { "crnot", XL(19,33), XL_MASK, PPCCOM, { BT, BA, BBA } },
3136 { "crnor", XL(19,33), XL_MASK, COM, { BT, BA, BB } },
3144 { "crandc", XL(19,129), XL_MASK, COM, { BT, B
524 #define BT macro
[all...]
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h158 template <class BT> struct BlockEdgesAdder;
772 template <class BT> class BlockFrequencyInfoImpl : BlockFrequencyInfoImplBase {
773 typedef typename bfi_detail::TypeMap<BT>::BlockT BlockT;
774 typedef typename bfi_detail::TypeMap<BT>::FunctionT FunctionT;
775 typedef typename bfi_detail::TypeMap<BT>::BranchProbabilityInfoT
777 typedef typename bfi_detail::TypeMap<BT>::LoopT LoopT;
778 typedef typename bfi_detail::TypeMap<BT>::LoopInfoT LoopInfoT;
781 friend struct bfi_detail::BlockEdgesAdder<BT>;
926 template <class BT>
927 void BlockFrequencyInfoImpl<BT>
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsInstrInfo.cpp92 BranchType BT = AnalyzeBranch(MBB, TBB, FBB, Cond, AllowModify, BranchInstrs); local
94 return (BT == BT_None) || (BT == BT_Indirect);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp11946 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
11986 // Use BT if the immediate can't be encoded in a TEST instruction.
11994 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
12004 // BT ignores high bits (like shifts) we can use anyextend.
12008 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
12011 DAG.getConstant(Cond, MVT::i8), BT);
12412 // Optimize to BT if possible.
12413 // Lower (X & (1 << N)) == 0 to BT(X, N).
12414 // Lower ((X >>u N) & 1) != 0 to BT(
[all...]
H A DX86ISelLowering.h96 BT, enumerator in enum:llvm::X86ISD::NodeType
/external/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp256 IntegerType *BT = IntegerType::get(J->getContext(), BI->second); local
258 MadeChange |= reuseOrInsertFastDiv(F, I, J, BT, UseDivOp,
/external/lldb/source/Symbol/
H A DClangASTType.cpp597 if (const BuiltinType *BT = dyn_cast<BuiltinType>(qual_type->getCanonicalTypeInternal()))
599 clang::BuiltinType::Kind kind = BT->getKind();
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c1329 #define BFP(BT, SDF, SDAF, VF, SVF, SVAF, SVFHH, SVFHV, SVFHHV, \
1331 cpi->fn_ptr[BT].sdf = SDF; \
1332 cpi->fn_ptr[BT].sdaf = SDAF; \
1333 cpi->fn_ptr[BT].vf = VF; \
1334 cpi->fn_ptr[BT].svf = SVF; \
1335 cpi->fn_ptr[BT].svaf = SVAF; \
1336 cpi->fn_ptr[BT].svf_halfpix_h = SVFHH; \
1337 cpi->fn_ptr[BT].svf_halfpix_v = SVFHV; \
1338 cpi->fn_ptr[BT].svf_halfpix_hv = SVFHHV; \
1339 cpi->fn_ptr[BT]
[all...]
/external/clang/lib/Sema/
H A DSemaInit.cpp7163 } else if (const BuiltinType *BT = EntityType->getAs<BuiltinType>())
7164 OS << BT->getName(S.getLangOpts());
/external/clang/lib/Serialization/
H A DASTCommon.cpp26 serialization::TypeIdxFromBuiltin(const BuiltinType *BT) { argument
28 switch (BT->getKind()) {
H A DASTCommon.h38 TypeIdx TypeIdxFromBuiltin(const BuiltinType *BT);
53 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T.getTypePtr()))
54 return TypeIdxFromBuiltin(BT).asTypeID(FastQuals);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundChecker.cpp28 mutable std::unique_ptr<BuiltinBug> BT; member in class:__anon18148::ArrayBoundChecker
69 if (!BT)
70 BT.reset(new BuiltinBug(
80 new BugReport(*BT, BT->getDescription(), N);
H A DArrayBoundCheckerV2.cpp31 mutable std::unique_ptr<BuiltinBug> BT; member in class:__anon18149::ArrayBoundCheckerV2
189 if (!BT)
190 BT.reset(new BuiltinBug(this, "Out-of-bound access"));
210 checkerContext.emitReport(new BugReport(*BT, os.str(), errorNode));
H A DBasicObjCFoundationChecks.cpp99 mutable std::unique_ptr<APIMisuse> BT; member in class:__anon18151::NilArgChecker
207 if (!BT)
208 BT.reset(new APIMisuse(this, "nil argument"));
210 BugReport *R = new BugReport(*BT, Msg, N);
346 mutable std::unique_ptr<APIMisuse> BT; member in class:__anon18152::CFNumberCreateChecker
516 if (!BT)
517 BT.reset(new APIMisuse(this, "Bad use of CFNumberCreate"));
519 BugReport *report = new BugReport(*BT, os.str(), N);
531 mutable std::unique_ptr<APIMisuse> BT; member in class:__anon18153::CFRetainReleaseChecker
553 if (!BT) {
629 mutable std::unique_ptr<BugType> BT; member in class:__anon18154::ClassReleaseChecker
688 mutable std::unique_ptr<BugType> BT; member in class:__anon18155::VariadicMethodTypeChecker
[all...]
H A DBoolAssignmentChecker.cpp26 mutable std::unique_ptr<BuiltinBug> BT; member in class:__anon18158::BoolAssignmentChecker
36 if (!BT)
37 BT.reset(new BuiltinBug(this, "Assignment of a non-Boolean value"));
38 C.emitReport(new BugReport(*BT, BT->getDescription(), N));
H A DCStringChecker.cpp247 BuiltinBug *BT = static_cast<BuiltinBug*>(BT_Null.get()); local
248 BugReport *report = new BugReport(*BT, os.str(), N);
304 BuiltinBug *BT = static_cast<BuiltinBug*>(BT_Bounds.get()); local
309 report = new BugReport(*BT, warningMsg, N);
319 report = new BugReport(*BT, os.str(), N);
H A DCallAndMessageChecker.cpp69 std::unique_ptr<BugType> &BT,
72 static void emitBadCall(BugType *BT, CheckerContext &C, const Expr *BadE);
80 void LazyInit_BT(const char *desc, std::unique_ptr<BugType> &BT) const {
81 if (!BT)
82 BT.reset(new BuiltinBug(this, desc));
86 const Expr *ArgEx, std::unique_ptr<BugType> &BT,
91 void CallAndMessageChecker::emitBadCall(BugType *BT, CheckerContext &C, argument
97 BugReport *R = new BugReport(*BT, BT->getName(), N);
136 std::unique_ptr<BugType> &BT,
132 uninitRefOrPointer(CheckerContext &C, const SVal &V, const SourceRange &ArgRange, const Expr *ArgEx, std::unique_ptr<BugType> &BT, const ParmVarDecl *ParamDecl, const char *BD) const argument
180 PreVisitProcessArg(CheckerContext &C, SVal V, SourceRange ArgRange, const Expr *ArgEx, bool IsFirstArgument, bool CheckUninitFields, const CallEvent &Call, std::unique_ptr<BugType> &BT, const ParmVarDecl *ParamDecl ) const argument
344 BugType *BT = BT_cxx_delete_undef.get(); local
415 std::unique_ptr<BugType> *BT; local
440 BugType *BT = nullptr; local
[all...]
H A DCastSizeChecker.cpp26 mutable std::unique_ptr<BuiltinBug> BT; member in class:__anon18164::CastSizeChecker
135 if (!BT)
136 BT.reset(new BuiltinBug(this, "Cast region with wrong size.",
139 BugReport *R = new BugReport(*BT, BT->getDescription(), errorNode);
H A DCastToStructChecker.cpp27 mutable std::unique_ptr<BuiltinBug> BT; member in class:__anon18165::CastToStructChecker
60 if (!BT)
61 BT.reset(
66 BugReport *R = new BugReport(*BT,BT->getDescription(), N);
H A DDivZeroChecker.cpp26 mutable std::unique_ptr<BuiltinBug> BT; member in class:__anon18188::DivZeroChecker
39 if (!BT)
40 BT.reset(new BuiltinBug(this, "Division by zero"));
42 BugReport *R = new BugReport(*BT, Msg, N);
H A DExprInspectionChecker.cpp21 mutable std::unique_ptr<BugType> BT; member in class:__anon18190::ExprInspectionChecker
97 if (!BT)
98 BT.reset(new BugType(this, "Checking analyzer assumptions", "debug"));
100 BugReport *R = new BugReport(*BT, getArgumentValueString(CE, C), N);
108 if (!BT)
109 BT.reset(new BugType(this, "Checking analyzer assumptions", "debug"));
111 BugReport *R = new BugReport(*BT, "REACHABLE", N);
128 if (!BT)
129 BT.reset(new BugType(this, "Checking analyzer assumptions", "debug"));
131 BugReport *R = new BugReport(*BT, getArgumentValueStrin
[all...]
H A DFixedAddressChecker.cpp28 mutable std::unique_ptr<BuiltinBug> BT; member in class:__anon18191::FixedAddressChecker
54 if (!BT)
55 BT.reset(
60 BugReport *R = new BugReport(*BT, BT->getDescription(), N);
H A DGenericTaintChecker.cpp45 mutable std::unique_ptr<BugType> BT; member in class:__anon18192::GenericTaintChecker
47 if (!BT)
48 BT.reset(new BugType(this, "Use of Untrusted Data", "Untrusted Data"));
645 BugReport *report = new BugReport(*BT, Msg, N);

Completed in 739 milliseconds

123