HomeSort by relevance Sort by last modified time
    Searched full:bitposition (Results 1 - 22 of 22) sorted by null

  /art/tools/cpp-define-generator/
constant_class.def 29 // TODO: We should really have a BitPosition which also checks it's a power of 2.
  /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...]
  /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/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...]
  /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/webrtc/webrtc/modules/rtp_rtcp/test/testFec/
test_fec.cc 191 const uint32_t bitPosition = (7 - j % 8);
193 (byteMask & (1 << bitPosition)) >> 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/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/tool/src/main/java/org/antlr/misc/
BitSet.java 169 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS
170 return 1L << bitPosition;
  /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;
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
Cper.h 815 UINT16 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;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
mce.h 795 ULONGLONG BitPosition:1;
819 USHORT BitPosition;
wdm.h     [all...]
  /packages/services/Car/service/src/com/android/car/
CarAudioService.java     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /external/aac/libAACdec/src/
aacdec_hcrs.cpp 284 /* transfare carry bit 0 from current word into bitposition 31 from next word and rotate current word */
    [all...]
  /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 

Completed in 1036 milliseconds