HomeSort by relevance Sort by last modified time
    Searched refs:getBit (Results 1 - 25 of 51) sorted by null

1 2 3

  /hardware/bsp/intel/peripheral/libupm/src/lm35/
lm35.cxx 34 m_aRes = m_aio.getBit();
  /hardware/bsp/intel/peripheral/libupm/src/loudness/
loudness.cxx 35 m_aRes = m_aio.getBit();
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
aio.hpp 102 getBit()
  /hardware/bsp/intel/peripheral/libupm/src/ad8232/
ad8232.cxx 39 m_ares = (1 << m_aioOUT.getBit());
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64InsnHelpers.h 53 static unsigned getBit(InsnType insn, int pos) {
64 return (getBit(insn, 22) == 1);
176 if (getBit(insn, 21) == 1) {
200 unsigned v = getBit(insn, 26);
214 is_load = (getBit(insn, 22) != 0);
243 is_load = (getBit(insn, 22) != 0);
AArch64CA53Erratum835769Stub.cpp 58 if (AArch64InsnHelpers::getBit(code.insns[0], 26) != 0) {
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DefaultPlacement.h 19 FX_BOOL getBit(int32_t col, int32_t row);
BC_DataMatrixWriter.cpp 118 matrix->Set(matrixX, matrixY, placement->getBit(x, y));
  /hardware/bsp/intel/peripheral/libupm/src/mg811/
mg811.cxx 42 m_aRes = m_aio.getBit();
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_bitvector_test.cc 84 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);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_bitvector.h 47 bool getBit(uptr idx) const { return (bits_ & mask(idx)) != 0; }
149 if (!l1_[i0].getBit(i1)) {
165 if (l1_[i0].getBit(i1)) {
173 bool getBit(uptr idx) const {
179 return l1_[i0].getBit(i1) && l2_[i0][i1].getBit(i2);
262 if (!v.l1_[i0].getBit(i1)) continue;
sanitizer_bvgraph.h 69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); }
106 return v[from].getBit(to);
132 if (targets.getBit(from))
sanitizer_deadlock_detector.h 163 if (recycled_nodes_.getBit(edges_[i].from) ||
164 recycled_nodes_.getBit(edges_[i].to)) {
194 CHECK(!available_nodes_.getBit(idx));
320 CHECK(!tmp_bv_.getBit(idx));
349 return dtls->getLocks(current_epoch_).getBit(nodeToIndex(node));
  /external/deqp/framework/common/
tcuCompressedTexture.cpp 307 inline deUint32 getBit (deUint64 src, int bit)
374 const int diffBit = (int)getBit(src, 33);
375 const int flipBit = (int)getBit(src, 32);
431 const deUint32 modifierNdx = (getBit(src, 16+pixelNdx) << 1) | getBit(src, pixelNdx);
454 const int diffOpaqueBit = (int)getBit(src, 33);
490 const int flipBit = (int)getBit(src, 32);
526 const deUint32 modifierNdx = (getBit(src, 16+pixelNdx) << 1) | getBit(src, pixelNdx);
575 const deUint32 distNdx = (getBits(src, 34, 35) << 1) | getBit(src, 32)
    [all...]
tcuAstcUtil.cpp 49 inline deUint32 getBit (deUint32 src, int ndx)
69 return getBit(src, ndx) != 0;
215 deUint32 getBit (int ndx) const
249 return getBit(ndx) != 0;
357 const deUint32 r0 = getBit(blockModeData, 4);
358 const deUint32 r1 = getBit(blockModeData, 2);
359 const deUint32 r2 = getBit(blockModeData, 3);
384 const deUint32 r0 = getBit(blockModeData, 4);
385 const deUint32 r1 = getBit(blockModeData, 0);
386 const deUint32 r2 = getBit(blockModeData, 1)
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 341 /// getBit - This method is used to return the initializer for the specified
343 virtual Init *getBit(unsigned Bit) const = 0;
417 Init *getBit(unsigned Bit) const override {
444 Init *getBit(unsigned Bit) const override {
481 if (!getBit(i)->isComplete()) return false;
486 if (getBit(i)->isComplete()) return false;
501 Init *getBit(unsigned Bit) const override {
540 Init *getBit(unsigned Bit) const override {
577 Init *getBit(unsigned Bit) const override {
641 Init *getBit(unsigned Bit) const override
    [all...]
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 50 if (VarBitInit *VBI = dyn_cast<VarBitInit>(BI->getBit(bit))) {
54 } else if (VarInit *VI = dyn_cast<VarInit>(BI->getBit(bit))) {
259 if (BitInit *B = dyn_cast<BitInit>(BI->getBit(e-i-1)))
CodeGenTarget.cpp 365 Init *OrigBit = BI->getBit(bit);
366 Init *BitSwap = BI->getBit(bitSwapIdx);
372 NewBits[middle] = BI->getBit(middle);
  /libcore/ojluni/src/main/java/sun/security/ssl/
X509KeyManagerImpl.java 497 private static boolean getBit(boolean[] keyUsage, int bit) {
525 boolean kuSignature = getBit(ku, 0);
530 if ((this == CLIENT) || (getBit(ku, 2) == false)) {
541 if (getBit(ku, 4) == false) {
555 if ((this == SERVER) && (getBit(ku, 4) == false)) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192R1FieldElement.java 48 return Nat192.getBit(x, 0) == 1;
SecP256R1FieldElement.java 48 return Nat256.getBit(x, 0) == 1;
SecP521R1FieldElement.java 48 return Nat.getBit(x, 0) == 1;
SecP192K1FieldElement.java 48 return Nat192.getBit(x, 0) == 1;
SecP224K1FieldElement.java 52 return Nat224.getBit(x, 0) == 1;
  /external/llvm/lib/TableGen/
Record.cpp 290 return getBit(0);
303 if (auto *Bit = dyn_cast<BitInit>(getBit(i)))
320 NewBits[i] = getBit(Bits[i]);
329 if (Init *Bit = getBit(e-i-1))
365 Init *Bit = CachedInit->getBit(CurBit->getBitNum());
383 Init *Bit = CurBitVar->getBit(CurBit->getBitNum());
600 Init *OpInit::getBit(unsigned Bit) const {
    [all...]

Completed in 361 milliseconds

1 2 3