/external/autotest/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/ |
D | control | 27 TP/SERVER/SSA/BV-01-C 28 TP/SERVER/SSA/BV-02-C 29 TP/SERVER/SSA/BV-03-C 30 TP/SERVER/SSA/BV-04-C 31 TP/SERVER/SSA/BV-06-C 32 TP/SERVER/SSA/BV-07-C 33 TP/SERVER/SSA/BV-08-C 34 TP/SERVER/SSA/BV-09-C 35 TP/SERVER/SSA/BV-10-C 36 TP/SERVER/SSA/BV-11-C [all …]
|
/external/autotest/server/site_tests/bluetooth_SDP_ServiceAttributeRequest/ |
D | control | 28 TP/SERVER/SA/BV-01-C 29 TP/SERVER/SA/BV-03-C 30 TP/SERVER/SA/BV-04-C 31 TP/SERVER/SA/BV-05-C 32 TP/SERVER/SA/BV-06-C 33 TP/SERVER/SA/BV-07-C 34 TP/SERVER/SA/BV-08-C 35 TP/SERVER/SA/BV-09-C 36 TP/SERVER/SA/BV-10-C 37 TP/SERVER/SA/BV-11-C [all …]
|
/external/llvm/unittests/IR/ |
D | ValueHandleTest.cpp | 64 Value *BV = BitcastV.get(); in TEST_F() local 66 EXPECT_EQ(BV < CV, BitcastWVH < ConstantWVH); in TEST_F() 67 EXPECT_EQ(BV <= CV, BitcastWVH <= ConstantWVH); in TEST_F() 68 EXPECT_EQ(BV > CV, BitcastWVH > ConstantWVH); in TEST_F() 69 EXPECT_EQ(BV >= CV, BitcastWVH >= ConstantWVH); in TEST_F() 71 EXPECT_EQ(BV < CV, BitcastV.get() < ConstantWVH); in TEST_F() 72 EXPECT_EQ(BV <= CV, BitcastV.get() <= ConstantWVH); in TEST_F() 73 EXPECT_EQ(BV > CV, BitcastV.get() > ConstantWVH); in TEST_F() 74 EXPECT_EQ(BV >= CV, BitcastV.get() >= ConstantWVH); in TEST_F() 76 EXPECT_EQ(BV < CV, BitcastWVH < ConstantV); in TEST_F() [all …]
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | ValueHandleTest.cpp | 68 Value *BV = BitcastV.get(); in TEST_F() local 70 EXPECT_EQ(BV < CV, BitcastWVH < ConstantWVH); in TEST_F() 71 EXPECT_EQ(BV <= CV, BitcastWVH <= ConstantWVH); in TEST_F() 72 EXPECT_EQ(BV > CV, BitcastWVH > ConstantWVH); in TEST_F() 73 EXPECT_EQ(BV >= CV, BitcastWVH >= ConstantWVH); in TEST_F() 75 EXPECT_EQ(BV < CV, BitcastV.get() < ConstantWVH); in TEST_F() 76 EXPECT_EQ(BV <= CV, BitcastV.get() <= ConstantWVH); in TEST_F() 77 EXPECT_EQ(BV > CV, BitcastV.get() > ConstantWVH); in TEST_F() 78 EXPECT_EQ(BV >= CV, BitcastV.get() >= ConstantWVH); in TEST_F() 80 EXPECT_EQ(BV < CV, BitcastWVH < ConstantV); in TEST_F() [all …]
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_deadlock_detector_test.cc | 33 template<class BV> 36 dp = new DeadlockDetector<BV>; in ScopedDD() 41 DeadlockDetector<BV> *dp; 42 DeadlockDetectorTLS<BV> dtls; 45 template <class BV> 48 ScopedDD<BV> sdd; in RunBasicTest() 49 DeadlockDetector<BV> &d = *sdd.dp; in RunBasicTest() 50 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; in RunBasicTest() 137 template <class BV> 139 ScopedDD<BV> sdd; in RunRemoveNodeTest() [all …]
|
D | sanitizer_bvgraph_test.cc | 69 template <class BV> 71 BVGraph<BV> g; in BasicTest() 73 BV target; in BasicTest() 93 uptr path[BV::kSize]; in BasicTest() 95 for (len = 1; len < BV::kSize; len++) { in BasicTest() 99 EXPECT_LT(len, BV::kSize); in BasicTest() 117 template <class BV> 120 BVGraph<BV> g; in RemoveEdges() 122 BV bv; in RemoveEdges() 164 template <class BV> [all …]
|
D | sanitizer_bitvector_test.cc | 30 template <class BV> 31 static void CheckBV(const BV &bv, const set<uptr> &s) { in CheckBV() 32 BV t; in CheckBV() 37 for (typename BV::Iterator it(bv); it.hasNext();) { in CheckBV() 58 template <class BV> 59 void Print(const BV &bv) { in Print() 60 BV t; in Print() 76 template <class BV> 78 BV bv, bv1, t_bv; in TestBitVector() 79 EXPECT_EQ(expected_size, BV::kSize); in TestBitVector()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_bitvector.h | 110 template <uptr kLevel1Size = 1, class BV = BasicBitVector<> > 118 enum SizeEnum { kSize = BV::kSize * BV::kSize * kLevel1Size }; 131 for (uptr i1 = 0; i1 < BV::kSize; i1++) in setAll() 189 uptr res = i0 * BV::kSize * BV::kSize + i1 * BV::kSize + i2; in getAndClearFirstOne() 201 BV t = v.l1_[i0]; in setUnion() 220 BV t = l1_[i0]; in setIntersection() 237 BV t = l1_[i0]; in setDifference() 258 BV t = l1_[i0]; in intersectsWith() 295 it1_ = typename BV::Iterator(bv_.l1_[i0_]); in next() 304 it2_ = typename BV::Iterator(bv_.l2_[i0_][i1_]); in next() [all …]
|
D | sanitizer_deadlock_detector.h | 36 template <class BV> 109 const BV &getLocks(uptr current_epoch) const { in getLocks() 118 BV bv_; 137 template <class BV> 140 typedef BV BitVector; 199 void ensureCurrentEpoch(DeadlockDetectorTLS<BV> *dtls) { in ensureCurrentEpoch() 206 bool onLockBefore(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { in onLockBefore() 212 u32 findLockContext(DeadlockDetectorTLS<BV> *dtls, uptr node) { in findLockContext() 217 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) { 225 bool hasAllEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { in hasAllEdges() [all …]
|
D | sanitizer_bvgraph.h | 25 template<class BV> 28 enum SizeEnum { kSize = BV::kSize }; 50 uptr addEdges(const BV &from, uptr to, uptr added_edges[], in addEdges() 77 bool removeEdgesTo(const BV &to) { in removeEdgesTo() 87 bool removeEdgesFrom(const BV &from) { in removeEdgesFrom() 111 bool isReachable(uptr from, const BV &targets) { in isReachable() 112 BV &to_visit = t1, in isReachable() 128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { in findPath() 136 for (typename BV::Iterator it(v[from]); it.hasNext(); ) { in findPath() 145 uptr findShortestPath(uptr from, const BV &targets, uptr *path, in findShortestPath() [all …]
|
/external/spirv-llvm/lib/SPIRV/ |
D | SPIRVReader.cpp | 314 Value *transConvertInst(SPIRVValue* BV, Function* F, BasicBlock* BB); 419 Value *mapValue(SPIRVValue *BV, Value *V) { in mapValue() argument 420 auto Loc = ValueMap.find(BV); in mapValue() 436 ValueMap[BV] = V; in mapValue() 465 Value *getTranslatedValue(SPIRVValue *BV); 480 BinaryOperator *transShiftLogicalBitwiseInst(SPIRVValue* BV, BasicBlock* BB, 483 Instruction *transCmpInst(SPIRVValue* BV, BasicBlock* BB, Function* F); 498 void setName(llvm::Value* V, SPIRVValue* BV); 514 SPIRVToLLVM::getTranslatedType(SPIRVType *BV){ in getTranslatedType() argument 515 auto Loc = TypeMap.find(BV); in getTranslatedType() [all …]
|
D | SPIRVWriter.cpp | 134 void transDbgInfo(Value *V, SPIRVValue *BV) { in transDbgInfo() argument 142 if (!BV->hasId()) in transDbgInfo() 144 BM->addLine(BV, File, DL.getLine(), DL.getCol()); in transDbgInfo() 149 BM->addLine(BV, File, DIS->getLine(), 0); in transDbgInfo() 194 bool transAlign(Value *V, SPIRVValue *BV); 202 bool transDecoration(Value *V, SPIRVValue *BV); 240 SPIRVValue *mapValue(Value *V, SPIRVValue *BV) { in mapValue() argument 243 if (Loc->second == BV) in mapValue() 244 return BV; in mapValue() 248 BV->setId(Forward->getId()); in mapValue() [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | RangeConstraintManager.cpp | 114 void IntersectInRange(BasicValueFactory &BV, Factory &F, in IntersectInRange() argument 138 newRanges = F.add(newRanges, Range(BV.getValue(Lower), in IntersectInRange() 139 BV.getValue(Upper))); in IntersectInRange() 142 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To())); in IntersectInRange() 145 newRanges = F.add(newRanges, Range(i->From(), BV.getValue(Upper))); in IntersectInRange() 247 RangeSet Intersect(BasicValueFactory &BV, Factory &F, in Intersect() argument 256 IntersectInRange(BV, F, Lower, Upper, newRanges, i, e); in Intersect() 261 IntersectInRange(BV, F, BV.getMinValue(Upper), Upper, newRanges, i, e); in Intersect() 262 IntersectInRange(BV, F, Lower, BV.getMaxValue(Lower), newRanges, i, e); in Intersect() 385 BasicValueFactory &BV = getBasicVals(); in checkNull() local [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | SmallBitVector.h | 98 void switchToLarge(BitVector *BV) { in switchToLarge() argument 99 X = reinterpret_cast<uintptr_t>(BV); in switchToLarge() 254 BitVector *BV = new BitVector(N, t); 257 (*BV)[i] = (OldBits >> i) & 1; 258 switchToLarge(BV); 267 BitVector *BV = new BitVector(SmallSize); in reserve() local 270 BV->set(i); in reserve() 271 BV->reserve(N); in reserve() 272 switchToLarge(BV); in reserve()
|
/external/llvm/include/llvm/ADT/ |
D | SmallBitVector.h | 102 void switchToLarge(BitVector *BV) { in switchToLarge() argument 103 X = reinterpret_cast<uintptr_t>(BV); in switchToLarge() 249 BitVector *BV = new BitVector(N, t); 252 (*BV)[i] = (OldBits >> i) & 1; 253 switchToLarge(BV); 262 BitVector *BV = new BitVector(SmallSize); in reserve() local 265 BV->set(i); in reserve() 266 BV->reserve(N); in reserve() 267 switchToLarge(BV); in reserve()
|
/external/clang/test/Sema/ |
D | ms_class_layout.cpp | 132 struct BV : AV { struct 134 struct CV : virtual BV { 138 struct DV : BV {
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | RegisterScavenging.cpp | 111 void RegScavenger::addRegWithSubRegs(BitVector &BV, unsigned Reg) { in addRegWithSubRegs() argument 112 BV.set(Reg); in addRegWithSubRegs() 114 BV.set(*R); in addRegWithSubRegs() 117 void RegScavenger::addRegWithAliases(BitVector &BV, unsigned Reg) { in addRegWithAliases() argument 118 BV.set(Reg); in addRegWithAliases() 120 BV.set(*R); in addRegWithAliases()
|
D | MachineFunction.cpp | 460 BitVector BV(TRI->getNumRegs()); in getPristineRegs() local 465 return BV; in getPristineRegs() 468 BV.set(*CSR); in getPristineRegs() 472 return BV; in getPristineRegs() 478 BV.reset(I->getReg()); in getPristineRegs() 480 return BV; in getPristineRegs() 672 if (const ConstantVector *BV = dyn_cast<ConstantVector>(B)) { in CanShareConstantPoolEntry() local 673 if (AV->getType()->getNumElements() != BV->getType()->getNumElements()) in CanShareConstantPoolEntry() 677 BV->getOperand(i), TD)) in CanShareConstantPoolEntry()
|
D | AggressiveAntiDepBreaker.cpp | 515 BitVector BV(TRI->getNumRegs(), false); in GetRenameRegisters() local 534 BV |= RCBV; in GetRenameRegisters() 537 BV &= RCBV; in GetRenameRegisters() 543 return BV; in GetRenameRegisters() 580 BitVector BV = GetRenameRegisters(Reg); in FindSuitableFreeRegisters() local 581 RenameRegisterMap.insert(std::pair<unsigned, BitVector>(Reg, BV)); in FindSuitableFreeRegisters() 584 DEBUG(for (int r = BV.find_first(); r != -1; r = BV.find_next(r)) in FindSuitableFreeRegisters() 666 BitVector BV = RenameRegisterMap[Reg]; in FindSuitableFreeRegisters() local 667 if (!BV.test(NewReg)) { in FindSuitableFreeRegisters()
|
/external/autotest/server/site_tests/bluetooth_SDP_ServiceSearchRequestBasic/ |
D | control | 28 TP/SERVER/SS/BV-01-C 29 TP/SERVER/SS/BV-03-C 30 TP/SERVER/SS/BV-04-C
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | 2006-10-07-ScalarSSEMiscompile.ll | 9 %BV = load <4 x float>* %B ; <<4 x float>> [#uses=1] 10 …%tmp28 = tail call <4 x float> @llvm.x86.sse.sub.ss( <4 x float> %A, <4 x float> %BV ) ; <<4…
|
/external/deqp/modules/gles3/performance/ |
D | es3pShaderOperatorTests.cpp | 1967 BV = VALUE_BOOL_VEC, in init() enumerator 2146 …{ floatCompareGroup, "lessThan", "lessThan", { BV, FV, FV, N }, attrNegPos, -1, false, fal… in init() 2147 …{ floatCompareGroup, "lessThanEqual", "lessThanEqual", { BV, FV, FV, N }, attrNegPos, -1, fals… in init() 2148 …{ floatCompareGroup, "greaterThan", "greaterThan", { BV, FV, FV, N }, attrNegPos, -1, false,… in init() 2149 …{ floatCompareGroup, "greaterThanEqual", "greaterThanEqual", { BV, FV, FV, N }, attrNegPos, -1… in init() 2150 …{ floatCompareGroup, "equal", "equal", { BV, FV, FV, N }, attrNegPos, -1, false, false, PR… in init() 2151 …{ floatCompareGroup, "notEqual", "notEqual", { BV, FV, FV, N }, attrNegPos, -1, false, fal… in init() 2153 …{ intCompareGroup, "lessThan", "lessThan", { BV, IV, IV, N }, attrNegPos, -1, false, fals… in init() 2154 …{ intCompareGroup, "lessThanEqual", "lessThanEqual", { BV, IV, IV, N }, attrNegPos, -1, false… in init() 2155 …{ intCompareGroup, "greaterThan", "greaterThan", { BV, IV, IV, N }, attrNegPos, -1, false, … in init() [all …]
|
/external/deqp/modules/gles2/performance/ |
D | es2pShaderOperatorTests.cpp | 1957 BV = VALUE_BOOL_VEC, in init() enumerator 2103 …{ floatCompareGroup, "lessThan", "lessThan", { BV, FV, FV, N }, attrNegPos, -1, false, fal… in init() 2104 …{ floatCompareGroup, "lessThanEqual", "lessThanEqual", { BV, FV, FV, N }, attrNegPos, -1, fals… in init() 2105 …{ floatCompareGroup, "greaterThan", "greaterThan", { BV, FV, FV, N }, attrNegPos, -1, false,… in init() 2106 …{ floatCompareGroup, "greaterThanEqual", "greaterThanEqual", { BV, FV, FV, N }, attrNegPos, -1… in init() 2107 …{ floatCompareGroup, "equal", "equal", { BV, FV, FV, N }, attrNegPos, -1, false, false, PR… in init() 2108 …{ floatCompareGroup, "notEqual", "notEqual", { BV, FV, FV, N }, attrNegPos, -1, false, fal… in init() 2110 …{ intCompareGroup, "lessThan", "lessThan", { BV, IV, IV, N }, attrNegPos, -1, false, fals… in init() 2111 …{ intCompareGroup, "lessThanEqual", "lessThanEqual", { BV, IV, IV, N }, attrNegPos, -1, false… in init() 2112 …{ intCompareGroup, "greaterThan", "greaterThan", { BV, IV, IV, N }, attrNegPos, -1, false, … in init() [all …]
|
/external/autotest/server/site_tests/bluetooth_SDP_ServiceBrowse/ |
D | control | 21 TP/SERVER/BRW/BV-01-C 22 TP/SERVER/BRW/BV-02-C
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | RegisterScavenging.h | 149 void addRegWithSubRegs(BitVector &BV, unsigned Reg); 152 void addRegWithAliases(BitVector &BV, unsigned Reg);
|