HomeSort by relevance Sort by last modified time
    Searched refs:BT (Results 26 - 50 of 74) sorted by null

12 3

  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 291 llvm::OwningPtr<bcinfo::BitcodeTranslator> BT;
292 BT.reset(new bcinfo::BitcodeTranslator(bitcode, bitcodeSize, version));
293 if (!BT->translate()) {
299 ME.reset(new bcinfo::MetadataExtractor(BT->getTranslatedBitcode(),
300 BT->getTranslatedBitcodeSize()));
309 const char *translatedBitcode = BT->getTranslatedBitcode();
310 size_t translatedBitcodeSize = BT->getTranslatedBitcodeSize();
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 96 mutable OwningPtr<APIMisuse> BT;
189 if (!BT)
190 BT.reset(new APIMisuse("nil argument"));
192 BugReport *R = new BugReport(*BT, Msg, N);
311 mutable OwningPtr<APIMisuse> BT;
481 if (!BT)
482 BT.reset(new APIMisuse("Bad use of CFNumberCreate"));
484 BugReport *report = new BugReport(*BT, os.str(), N);
496 mutable OwningPtr<APIMisuse> BT;
516 if (!BT) {
    [all...]
ArrayBoundCheckerV2.cpp 31 mutable OwningPtr<BuiltinBug> BT;
189 if (!BT)
190 BT.reset(new BuiltinBug("Out-of-bound access"));
210 checkerContext.emitReport(new BugReport(*BT, os.str(), errorNode));
MacOSKeychainAPIChecker.cpp 32 mutable OwningPtr<BugType> BT;
93 if (!BT)
94 BT.reset(new BugType("Improper use of SecKeychain API",
272 BugReport *Report = new BugReport(*BT, os.str(), N);
313 BugReport *Report = new BugReport(*BT, os.str(), N);
365 BugReport *Report = new BugReport(*BT,
431 BugReport *Report = new BugReport(*BT,
540 BugReport *Report = new BugReport(*BT, os.str(), N, LocUsedForUniqueing,
UnixAPIChecker.cpp 67 static inline void LazyInitialize(OwningPtr<BugType> &BT,
69 if (BT)
71 BT.reset(new BugType(name, categories::UnixAPI));
GenericTaintChecker.cpp 46 mutable OwningPtr<BugType> BT;
48 if (!BT)
49 BT.reset(new BugType("Use of Untrusted Data", "Untrusted Data"));
649 BugReport *report = new BugReport(*BT, Msg, N);
IdempotentOperationChecker.cpp 110 mutable OwningPtr<BugType> BT;
348 if (!BT)
349 BT.reset(new BugType("Idempotent operation", "Dead code"));
420 BugReport *report = new BugReport(*BT, os.str(), *I);
  /external/clang/lib/AST/
Type.cpp 626 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
627 return BT->getKind() >= BuiltinType::Bool &&
628 BT->getKind() <= BuiltinType::Int128;
639 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
640 return BT->getKind() >= BuiltinType::Bool &&
641 BT->getKind() <= BuiltinType::Int128;
656 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
657 return BT->getKind() == BuiltinType::Char_U ||
658 BT->getKind() == BuiltinType::UChar ||
659 BT->getKind() == BuiltinType::Char_S |
    [all...]
NSAPI.cpp 290 const BuiltinType *BT = T->getAs<BuiltinType>();
291 if (!BT)
305 switch (BT->getKind()) {
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 73 BugType& BT;
145 BugReport(BugType& bt, StringRef desc, const ExplodedNode *errornode)
146 : BT(bt), DeclWithIssue(0), Description(desc), ErrorNode(errornode),
149 BugReport(BugType& bt, StringRef shortDesc, StringRef desc,
151 : BT(bt), DeclWithIssue(0), ShortDescription(shortDesc), Description(desc),
155 BugReport(BugType& bt, StringRef desc, PathDiagnosticLocation l)
156 : BT(bt), DeclWithIssue(0), Description(desc), Location(l), ErrorNode(0)
    [all...]
  /frameworks/rs/
rsScriptC.h 68 bcinfo::BitcodeTranslator *BT;
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.cpp 89 BranchType BT = AnalyzeBranch(MBB, TBB, FBB, Cond, AllowModify, BranchInstrs);
91 return (BT == BT_None) || (BT == BT_Indirect);
  /external/clang/lib/Analysis/
FormatString.cpp 261 if (const BuiltinType *BT = argTy->getAs<BuiltinType>())
262 switch (BT->getKind()) {
282 if (const BuiltinType *BT = argTy->getAs<BuiltinType>())
283 switch (BT->getKind()) {
316 if (const BuiltinType *BT = pointeeTy->getAs<BuiltinType>())
317 switch (BT->getKind()) {
PrintfFormatString.cpp 438 const BuiltinType *BT = QT->getAs<BuiltinType>();
439 if (!BT)
443 switch (BT->getKind()) {
ScanfFormatString.cpp 387 const BuiltinType *BT = PT->getAs<BuiltinType>();
388 if (!BT)
402 switch (BT->getKind()) {
  /external/clang/lib/Serialization/
ASTCommon.cpp 26 serialization::TypeIdxFromBuiltin(const BuiltinType *BT) {
28 switch (BT->getKind()) {
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 255 IntegerType *BT = IntegerType::get(J->getContext(), BI->second);
257 MadeChange |= reuseOrInsertFastDiv(F, I, J, BT, UseDivOp,
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 824 if (const BuiltinType *BT = T->getAs<BuiltinType>()) {
825 BuiltinType::Kind K = BT->getKind();
    [all...]
  /external/qemu/tcg/ppc/
tcg-target.c 412 #define BT(n, c) (((c)+((n)*4))<<21)
584 tcg_out32 (s, CRAND | BT (7, CR_EQ) | BA (6, CR_EQ) | BB (7, CR_EQ));
780 tcg_out32 (s, CRAND | BT (7, CR_EQ) | BA (6, CR_EQ) | BB (7, CR_EQ));
1100 tcg_out32 (s, op | BT (7, CR_EQ) | BA (6, CR_EQ) | BB (7, CR_EQ));
1114 tcg_out32 (s, op | BT (7, CR_EQ) | BA (5, CR_EQ) | BB (7, b->bit2));
1115 tcg_out32 (s, CROR | BT (7, CR_EQ) | BA (5, b->bit1) | BB (7, CR_EQ));
1205 crop = CRNOR | BT (7, CR_EQ) | BA (7, CR_LT) | BB (7, CR_LT);
1211 crop = CRNOR | BT (7, CR_EQ) | BA (7, CR_GT) | BB (7, CR_GT);
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 172 const clang::BuiltinType *BT =
175 switch (BT->getKind()) {
612 const clang::BuiltinType *BT =
615 switch (BT->getKind()) {
    [all...]
  /external/arduino/hardware/arduino/
boards.txt 140 bt328.name=Arduino BT w/ ATmega328
150 bt328.bootloader.path=bt
161 bt.name=Arduino BT w/ ATmega168
163 bt.upload.protocol=stk500
164 bt.upload.maximum_size=14336
165 bt.upload.speed=19200
166 bt.upload.disable_flushing=true
168 bt.bootloader.low_fuses=0xff
169 bt.bootloader.high_fuses=0xd
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp     [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 537 if (const BuiltinType *BT = T->getAs<BuiltinType>()) {
539 switch (BT->getKind()) {
646 if (const BlockPointerType *BT = T->getAs<BlockPointerType>()) {
648 T = BT->getPointeeType();
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_browsertest.js 179 name: 'Sony BT-00',
237 name: 'Sony BT-00',

Completed in 3115 milliseconds

12 3