Searched refs:getBit (Results 1 - 17 of 17) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_bitvector_test.cc84 EXPECT_FALSE(bv.getBit(4));
85 EXPECT_FALSE(bv.getBit(6));
86 EXPECT_TRUE(bv.getBit(5));
88 EXPECT_FALSE(bv.getBit(5));
95 EXPECT_EQ(bv.getBit(bit), s.count(bit) == 1);
106 EXPECT_EQ(bv.getBit(bit), s.count(bit) == 1);
H A Dsanitizer_bvgraph_test.cc100 EXPECT_TRUE(target.getBit(path[len - 1]));
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); }
106 return v[from].getBit(to);
132 if (targets.getBit(from))
H A Dsanitizer_bitvector.h47 bool getBit(uptr idx) const { return (bits_ & mask(idx)) != 0; } function in class:__sanitizer::BasicBitVector
149 if (!l1_[i0].getBit(i1)) {
165 if (l1_[i0].getBit(i1)) {
173 bool getBit(uptr idx) const { function in class:__sanitizer::TwoLevelBitVector
179 return l1_[i0].getBit(i1) && l2_[i0][i1].getBit(i2);
262 if (!v.l1_[i0].getBit(i1)) continue;
H A Dsanitizer_deadlock_detector.h160 if (recycled_nodes_.getBit(edges_[i].from) ||
161 recycled_nodes_.getBit(edges_[i].to)) {
190 CHECK(!available_nodes_.getBit(idx));
316 CHECK(!tmp_bv_.getBit(idx));
345 return dtls->getLocks(current_epoch_).getBit(nodeToIndex(node));
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp341 static inline deUint32 getBit (deUint64 src, int bit) function in namespace:tcu::EtcDecompressInternal
405 const int diffBit = (int)getBit(src, 33);
406 const int flipBit = (int)getBit(src, 32);
462 const deUint32 modifierNdx = (getBit(src, 16+pixelNdx) << 1) | getBit(src, pixelNdx);
485 const int diffOpaqueBit = (int)getBit(src, 33);
521 const int flipBit = (int)getBit(src, 32);
557 const deUint32 modifierNdx = (getBit(src, 16+pixelNdx) << 1) | getBit(src, pixelNdx);
606 const deUint32 distNdx = (getBits(src, 34, 35) << 1) | getBit(sr
1120 static inline deUint32 getBit (deUint32 src, int ndx) function in namespace:tcu::ASTCDecompressInternal
1195 deUint32 getBit (int ndx) const function in class:tcu::ASTCDecompressInternal::Block128
[all...]
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp58 if (VarBitInit *VBI = dyn_cast<VarBitInit>(BI->getBit(bit))) {
62 } else if (VarInit *VI = dyn_cast<VarInit>(BI->getBit(bit))) {
273 if (BitInit *B = dyn_cast<BitInit>(BI->getBit(e-i-1)))
H A DCodeGenTarget.cpp361 Init *OrigBit = BI->getBit(bit);
362 Init *BitSwap = BI->getBit(bitSwapIdx);
368 NewBits[middle] = BI->getBit(middle);
H A DFixedLenDecoderEmitter.cpp144 if (BitInit *bit = dyn_cast<BitInit>(bits.getBit(index)))
1780 VarBitInit *BI = dyn_cast<VarBitInit>(Bits.getBit(bi));
1784 Var = dyn_cast<VarInit>(Bits.getBit(bi));
1802 VarBitInit *BI = dyn_cast<VarBitInit>(Bits.getBit(bi));
1806 Var = dyn_cast<VarInit>(Bits.getBit(bi));
1952 VarBitInit *BI = dyn_cast<VarBitInit>(Bits.getBit(bi));
1956 Var = dyn_cast<VarInit>(Bits.getBit(bi));
H A DInstrInfoEmitter.cpp514 if (BitInit *Bit = dyn_cast<BitInit>(TSF->getBit(i)))
H A DX86RecognizableInstr.cpp154 if (static_cast<BitInit*>(init.getBit(index))->getValue())
H A DRegisterInfoEmitter.cpp919 if (BitInit *B = dyn_cast<BitInit>(BI->getBit(b)))
/external/llvm/include/llvm/TableGen/
H A DRecord.h541 /// getBit - This method is used to return the initializer for the specified
543 virtual Init *getBit(unsigned Bit) const = 0;
613 Init *getBit(unsigned Bit) const override {
643 Init *getBit(unsigned Bit) const override {
681 if (!getBit(i)->isComplete()) return false;
686 if (getBit(i)->isComplete()) return false;
693 Init *getBit(unsigned Bit) const override {
734 Init *getBit(unsigned Bit) const override {
774 Init *getBit(unsigned Bit) const override {
841 Init *getBit(unsigne
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fASTCDecompressionCases.cpp107 static inline deUint32 getBit (deUint32 src, int ndx) function in namespace:deqp::gles3::Functional::ASTCDecompressionCaseInternal::ASTCBlockGeneratorInternal
548 const deUint32 a0 = getBit(a, 0);
549 const deUint32 a1 = getBit(a, 1);
550 const deUint32 b0 = getBit(b, 0);
551 const deUint32 b1 = getBit(b, 1);
552 const deUint32 r0 = getBit(r, 0);
553 const deUint32 r1 = getBit(r, 1);
554 const deUint32 r2 = getBit(r, 2);
611 dst.setBit(lowMBit0Ndx < 4 ? 25+lowMBit0Ndx : extraCemBitsStart+lowMBit0Ndx-4, getBit(m, 0));
612 dst.setBit(lowMBit1Ndx < 4 ? 25+lowMBit1Ndx : extraCemBitsStart+lowMBit1Ndx-4, getBit(
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp105 return BI->getBit(0);
219 if (BitInit *Bit = dyn_cast<BitInit>(BI->getBit(i))) {
486 NewBits[i] = getBit(Bits[i]);
495 if (Init *Bit = getBit(e-i-1))
531 Init *Bit = CachedInit->getBit(CurBit->getBitNum());
549 Init *Bit = CurBitVar->getBit(CurBit->getBitNum());
734 Init *OpInit::getBit(unsigned Bit) const { function in class:OpInit
1326 Init *VarInit::getBit(unsigned Bit) const { function in class:VarInit
1414 return I->getBit(getBitNum());
1445 Init *VarListElementInit::getBit(unsigne function in class:VarListElementInit
1500 Init *FieldInit::getBit(unsigned Bit) const { function in class:FieldInit
[all...]
H A DTGParser.cpp128 NewBits[Bit] = BInit->getBit(i);
133 NewBits[i] = CurVal->getBit(i);
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 4754 milliseconds