Searched defs:bitPosition (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DAPInt.h108 static unsigned whichWord(unsigned bitPosition) { argument
109 return bitPosition / APINT_BITS_PER_WORD;
116 static unsigned whichBit(unsigned bitPosition) { argument
117 return bitPosition % APINT_BITS_PER_WORD;
122 /// \returns a uint64_t with only bit at "whichBit(bitPosition)" set
126 static uint64_t maskBit(unsigned bitPosition) { argument
127 return 1ULL << whichBit(bitPosition);
156 uint64_t getWord(unsigned bitPosition) const {
157 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
966 /// \returns the bit value at bitPosition
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DAPInt.h105 static unsigned whichWord(unsigned bitPosition) { argument
106 return bitPosition / APINT_BITS_PER_WORD;
112 static unsigned whichBit(unsigned bitPosition) { argument
113 return bitPosition % APINT_BITS_PER_WORD;
119 /// @returns a uint64_t with only bit at "whichBit(bitPosition)" set
121 static uint64_t maskBit(unsigned bitPosition) { argument
122 return 1ULL << whichBit(bitPosition);
150 uint64_t getWord(unsigned bitPosition) const {
151 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
836 /// @returns the bit value at bitPosition
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/test/testFec/
H A Dtest_fec.cc191 const uint32_t bitPosition = (7 - j % 8); local
193 (byteMask & (1 << bitPosition)) >> bitPosition;
/external/llvm/lib/Support/
H A DAPInt.cpp575 void APInt::setBit(unsigned bitPosition) { argument
577 VAL |= maskBit(bitPosition);
579 pVal[whichWord(bitPosition)] |= maskBit(bitPosition);
582 /// Set the given bit to 0 whose position is given as "bitPosition".
584 void APInt::clearBit(unsigned bitPosition) { argument
586 VAL &= ~maskBit(bitPosition);
588 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition);
594 /// as "bitPosition"
596 flipBit(unsigned bitPosition) argument
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 395 milliseconds