/external/llvm/lib/Target/Hexagon/ |
D | BitTracker.cpp | 69 typedef BitTracker BT; typedef 88 raw_ostream &operator<<(raw_ostream &OS, const BT::BitValue &BV) { in operator <<() 90 case BT::BitValue::Top: in operator <<() 93 case BT::BitValue::Zero: in operator <<() 96 case BT::BitValue::One: in operator <<() 99 case BT::BitValue::Ref: in operator <<() 106 raw_ostream &operator<<(raw_ostream &OS, const BT::RegisterCell &RC) { in operator <<() 118 const BT::BitValue &V = RC[i]; in operator <<() 119 const BT::BitValue &SV = RC[Start]; in operator <<() 120 bool IsRef = (V.Type == BT::BitValue::Ref); in operator <<() [all …]
|
D | HexagonBitTracker.cpp | 23 typedef BitTracker BT; typedef 78 BT::BitMask HexagonEvaluator::mask(unsigned Reg, unsigned Sub) const { in mask() 89 return (Sub == subreg_loreg) ? BT::BitMask(0, RW-1) in mask() 90 : BT::BitMask(RW, 2*RW-1); in mask() 102 std::vector<BT::RegisterRef> Vector; 109 Vector[i] = BT::RegisterRef(MO); in RegisterRefs() 116 const BT::RegisterRef &operator[](unsigned n) const { in operator []() 188 auto rr0 = [this,Reg] (const BT::RegisterCell &Val, CellMapType &Outputs) in evaluate() 195 uint16_t W) -> BT::RegisterCell { in evaluate() 205 auto lo = [this] (const BT::RegisterCell &RC, uint16_t RW) in evaluate() [all …]
|
D | HexagonBitSimplify.cpp | 1003 : Transformation(true), HII(hii), MRI(mri), BT(bt) {} in RedundantInstrElimination() 1017 BitTracker &BT; member in __anoncf8444f40511::RedundantInstrElimination 1227 const BitTracker::RegisterCell &DC = BT.lookup(RD.Reg); in usedBitsEqual() 1228 const BitTracker::RegisterCell &SC = BT.lookup(RS.Reg); in usedBitsEqual() 1267 if (!BT.has(RD.Reg)) in processBlock() 1269 const BitTracker::RegisterCell &DC = BT.lookup(RD.Reg); in processBlock() 1278 if (!BT.has(RS.Reg)) in processBlock() 1287 const BitTracker::RegisterCell &SC = BT.lookup(RS.Reg); in processBlock() 1298 BT.put(BitTracker::RegisterRef(NewR), SC); in processBlock() 1318 : Transformation(true), HII(hii), MRI(mri), BT(bt) {} in ConstGeneration() [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CallAndMessageChecker.cpp | 76 std::unique_ptr<BugType> &BT, 79 static void emitBadCall(BugType *BT, CheckerContext &C, const Expr *BadE); 87 void LazyInit_BT(const char *desc, std::unique_ptr<BugType> &BT) const { in LazyInit_BT() 88 if (!BT) in LazyInit_BT() 89 BT.reset(new BuiltinBug(this, desc)); in LazyInit_BT() 93 const Expr *ArgEx, std::unique_ptr<BugType> &BT, 98 void CallAndMessageChecker::emitBadCall(BugType *BT, CheckerContext &C, in emitBadCall() argument 104 auto R = llvm::make_unique<BugReport>(*BT, BT->getName(), N); in emitBadCall() 143 std::unique_ptr<BugType> &BT, in uninitRefOrPointer() argument 173 LazyInit_BT(BD, BT); in uninitRefOrPointer() [all …]
|
D | FixedAddressChecker.cpp | 28 mutable std::unique_ptr<BuiltinBug> BT; member in __anon4bb6e3380111::FixedAddressChecker 54 if (!BT) in checkPreStmt() 55 BT.reset( in checkPreStmt() 60 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
|
D | UndefinedArraySubscriptChecker.cpp | 28 mutable std::unique_ptr<BugType> BT; member in __anond89e72d20111::UndefinedArraySubscriptChecker 52 if (!BT) in checkPreStmt() 53 BT.reset(new BuiltinBug(this, "Array subscript is undefined")); in checkPreStmt() 56 auto R = llvm::make_unique<BugReport>(*BT, BT->getName(), N); in checkPreStmt()
|
D | CastToStructChecker.cpp | 27 mutable std::unique_ptr<BuiltinBug> BT; member in __anon6af2fe550111::CastToStructChecker 60 if (!BT) in checkPreStmt() 61 BT.reset( in checkPreStmt() 66 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
|
D | PointerSubChecker.cpp | 28 mutable std::unique_ptr<BuiltinBug> BT; member in __anon377c424d0111::PointerSubChecker 64 if (!BT) in checkPreStmt() 65 BT.reset( in checkPreStmt() 69 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
|
D | ArrayBoundChecker.cpp | 28 mutable std::unique_ptr<BuiltinBug> BT; member in __anon5ab90f190111::ArrayBoundChecker 69 if (!BT) in checkLocation() 70 BT.reset(new BuiltinBug( in checkLocation() 79 auto report = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkLocation()
|
D | ReturnPointerRangeChecker.cpp | 28 mutable std::unique_ptr<BuiltinBug> BT; member in __anona0961d100111::ReturnPointerRangeChecker 72 if (!BT) in checkPreStmt() 73 BT.reset(new BuiltinBug( in checkPreStmt() 83 auto report = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
|
D | UndefBranchChecker.cpp | 28 mutable std::unique_ptr<BuiltinBug> BT; member in __anon78750bc20111::UndefBranchChecker 68 if (!BT) in checkBranchCondition() 69 BT.reset(new BuiltinBug( in checkBranchCondition() 100 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkBranchCondition()
|
D | TaintTesterChecker.cpp | 25 mutable std::unique_ptr<BugType> BT; member in __anon3d2d28590111::TaintTesterChecker 40 if (!BT) in initBugType() 41 BT.reset(new BugType(this, "Tainted data", "General")); in initBugType() 53 auto report = llvm::make_unique<BugReport>(*BT, "tainted",N); in checkPostStmt()
|
D | NSAutoreleasePoolChecker.cpp | 35 mutable std::unique_ptr<BugType> BT; member in __anon34c71c170111::NSAutoreleasePoolChecker 61 if (!BT) in checkPreObjCMessage() 62 BT.reset(new BugType(this, "Use -drain instead of -release", in checkPreObjCMessage() 72 *BT, "Use -drain instead of -release when using NSAutoreleasePool and " in checkPreObjCMessage()
|
D | BoolAssignmentChecker.cpp | 26 mutable std::unique_ptr<BuiltinBug> BT; member in __anon038975470111::BoolAssignmentChecker 36 if (!BT) in emitReport() 37 BT.reset(new BuiltinBug(this, "Assignment of a non-Boolean value")); in emitReport() 38 C.emitReport(llvm::make_unique<BugReport>(*BT, BT->getDescription(), N)); in emitReport()
|
D | CastSizeChecker.cpp | 26 mutable std::unique_ptr<BuiltinBug> BT; member in __anon06ad9ce80111::CastSizeChecker 132 if (!BT) in checkPreStmt() 133 BT.reset(new BuiltinBug(this, "Cast region with wrong size.", in checkPreStmt() 136 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), errorNode); in checkPreStmt()
|
D | UndefinedAssignmentChecker.cpp | 27 mutable std::unique_ptr<BugType> BT; member in __anon3fed3c0d0111::UndefinedAssignmentChecker 56 if (!BT) in checkBind() 57 BT.reset(new BuiltinBug(this, str)); in checkBind() 86 auto R = llvm::make_unique<BugReport>(*BT, str, N); in checkBind()
|
D | UndefResultChecker.cpp | 31 mutable std::unique_ptr<BugType> BT; member in __anon36e740730111::UndefResultChecker 57 if (!BT) in checkPostStmt() 58 BT.reset( in checkPostStmt() 87 auto report = llvm::make_unique<BugReport>(*BT, OS.str(), N); in checkPostStmt()
|
D | DivZeroChecker.cpp | 26 mutable std::unique_ptr<BuiltinBug> BT; member in __anone3317fe50111::DivZeroChecker 39 if (!BT) in reportBug() 40 BT.reset(new BuiltinBug(this, "Division by zero")); in reportBug() 42 auto R = llvm::make_unique<BugReport>(*BT, Msg, N); in reportBug()
|
/external/clang/test/SemaObjC/ |
D | ns_returns_retained_block_return.m | 8 typedef void (^BT) (); typedef 10 BT foo() __attribute__((ns_returns_retained)); 13 BT foo() __attribute__((ns_returns_retained)); 14 - (BT) Meth __attribute__((ns_returns_retained)); 15 + (BT) ClsMeth __attribute__((ns_returns_retained)); 19 BT foo() __attribute__((ns_returns_retained)) {return ^{}; } 20 - (BT) Meth {return ^{}; } 21 + (BT) ClsMeth {return ^{}; }
|
/external/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 56 template <class BT> struct BlockEdgesAdder; 794 template <class BT> class BlockFrequencyInfoImpl : BlockFrequencyInfoImplBase { 795 typedef typename bfi_detail::TypeMap<BT>::BlockT BlockT; 796 typedef typename bfi_detail::TypeMap<BT>::FunctionT FunctionT; 797 typedef typename bfi_detail::TypeMap<BT>::BranchProbabilityInfoT 799 typedef typename bfi_detail::TypeMap<BT>::LoopT LoopT; 800 typedef typename bfi_detail::TypeMap<BT>::LoopInfoT LoopInfoT; 803 friend struct bfi_detail::BlockEdgesAdder<BT>; 955 template <class BT> 956 void BlockFrequencyInfoImpl<BT>::calculate(const FunctionT &F, [all …]
|
/external/skia/resources/ |
D | pdf_command_stream.txt | 44 BT 54 BT 139 BT 225 BT 234 BT 240 BT 272 BT 295 BT 322 BT 408 BT [all …]
|
/external/skqp/platform_tools/android/apps/skqp/src/main/assets/resources/ |
D | pdf_command_stream.txt | 44 BT 54 BT 139 BT 225 BT 234 BT 240 BT 272 BT 295 BT 322 BT 408 BT [all …]
|
/external/skqp/resources/ |
D | pdf_command_stream.txt | 44 BT 54 BT 139 BT 225 BT 234 BT 240 BT 272 BT 295 BT 322 BT 408 BT [all …]
|
/external/clang/examples/analyzer-plugin/ |
D | MainCallChecker.cpp | 11 mutable std::unique_ptr<BugType> BT; member in __anon23d5e9680111::MainCallChecker 37 if (!BT) in checkPreStmt() 38 BT.reset(new BugType(this, "call to main", "example analyzer plugin")); in checkPreStmt() 41 llvm::make_unique<BugReport>(*BT, BT->getName(), N); in checkPreStmt()
|
/external/clang/test/SemaCXX/ |
D | ns_returns_retained_block_return.cpp | 6 typedef void (^BT) (); typedef 9 BT br() __attribute__((ns_returns_retained)) { in br() 12 BT br1() __attribute__((ns_returns_retained)); 15 BT S::br1() { in br1()
|