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

  /external/llvm/include/llvm/ADT/
APInt.h 108 static unsigned whichWord(unsigned bitPosition) {
109 return bitPosition / APINT_BITS_PER_WORD;
116 static unsigned whichBit(unsigned bitPosition) {
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) {
127 return 1ULL << whichBit(bitPosition);
156 uint64_t getWord(unsigned bitPosition) const {
157 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
AudioHalService.java 490 public final int bitPosition;
497 public ExtRoutingSourceInfo(int bitPosition, int physycalStreamNumber) {
498 this.bitPosition = bitPosition;
504 return "[bitPosition=" + bitPosition + ", physicalStreamNumber="
537 int bitPosition = 0;
541 bitPosition = Integer.parseInt(tokens[0]);
544 bitPosition = Integer.parseInt(tokens[0]);
552 routingTypes.put(name, new ExtRoutingSourceInfo(bitPosition, physicalStreamNumber))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APInt.h 105 static unsigned whichWord(unsigned bitPosition) {
106 return bitPosition / APINT_BITS_PER_WORD;
112 static unsigned whichBit(unsigned bitPosition) {
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) {
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...]
  /libcore/ojluni/src/main/java/java/util/stream/
StreamOpFlag.java 429 private final int bitPosition;
450 this.bitPosition = position;
554 mask |= flag.maskTable.get(t) << flag.bitPosition;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 120 var bitPosition:int = bitNumber & MOD_MASK; // bitNumber mod BITS
121 return 1 << bitPosition;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 168 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS
169 return 1UL << bitPosition;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 190 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS
191 return 1UL << bitPosition;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BitSet.java 162 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS
163 return 1L << bitPosition;
  /external/webrtc/webrtc/modules/rtp_rtcp/test/testFec/
test_fec.cc 191 const uint32_t bitPosition = (7 - j % 8);
193 (byteMask & (1 << bitPosition)) >> bitPosition;
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 496 bool APInt::operator[](unsigned bitPosition) const {
497 assert(bitPosition < getBitWidth() && "Bit position out of bounds!");
498 return (maskBit(bitPosition) &
499 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) != 0;
598 void APInt::setBit(unsigned bitPosition) {
600 VAL |= maskBit(bitPosition);
602 pVal[whichWord(bitPosition)] |= maskBit(bitPosition);
605 /// Set the given bit to 0 whose position is given as "bitPosition".
607 void APInt::clearBit(unsigned bitPosition) {
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 575 void APInt::setBit(unsigned bitPosition) {
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) {
586 VAL &= ~maskBit(bitPosition);
588 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition);
594 /// as "bitPosition"
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BitSet.js 66 var bitPosition = bitNumber & org.antlr.runtime.BitSet.MOD_MASK;
67 return 1 << bitPosition;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
BitSet.java 169 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS
170 return 1L << bitPosition;
  /packages/services/Car/service/src/com/android/car/
CarAudioService.java     [all...]
  /prebuilts/tools/common/m2/repository/com/sun/xml/fastinfoset/FastInfoset/1.2.13/
FastInfoset-1.2.13.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /prebuilts/checkstyle/
checkstyle.jar 
  /prebuilts/sdk/tools/jacks/
jack-4.31.CANDIDATE.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 

Completed in 650 milliseconds