Searched refs:bitPos (Results 1 – 11 of 11) sorted by relevance
/external/u-boot/lib/zstd/ |
D | bitstream.h | 42 int bitPos; member 135 bitC->bitPos = 0; in BIT_initCStream() 149 bitC->bitContainer |= (value & BIT_mask[nbBits]) << bitC->bitPos; in BIT_addBits() 150 bitC->bitPos += nbBits; in BIT_addBits() 157 bitC->bitContainer |= value << bitC->bitPos; in BIT_addBitsFast() 158 bitC->bitPos += nbBits; in BIT_addBitsFast() 165 size_t const nbBytes = bitC->bitPos >> 3; in BIT_flushBitsFast() 168 bitC->bitPos &= 7; in BIT_flushBitsFast() 177 size_t const nbBytes = bitC->bitPos >> 3; in BIT_flushBits() 182 bitC->bitPos &= 7; in BIT_flushBits() [all …]
|
/external/xz-java/src/org/tukaani/xz/simple/ |
D | IA64.java | 36 for (int slot = 0, bitPos = 5; slot < 3; ++slot, bitPos += 41) { in code() 40 int bytePos = bitPos >>> 3; in code() 41 int bitRes = bitPos & 7; in code()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_target.cpp | 424 relocInfo->entry[n].bitPos = s; in addReloc() 466 value = (bitPos < 0) ? (value >> -bitPos) : (value << bitPos); in apply()
|
D | nv50_ir_target.h | 44 int8_t bitPos; member
|
D | nv50_ir_print.cpp | 898 …y[i].data, reloc->entry[i].mask, reloc->entry[i].offset, reloc->entry[i].bitPos, reloc->entry[i].t… in nv50_ir_prog_info_out_print()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonISelDAGToDAG.cpp | 114 int32_t bitPos; in XformMskToBitPosU5Imm() local 115 bitPos = Log2_32(Imm); in XformMskToBitPosU5Imm() 116 assert(bitPos >= 0 && bitPos < 32 && in XformMskToBitPosU5Imm() 118 return CurDAG->getTargetConstant(bitPos, DL, MVT::i32); in XformMskToBitPosU5Imm()
|
/external/aac/libSBRenc/src/ |
D | bit_sbr.cpp | 239 INT bitPos = FDKgetValidBits(&cmonData->sbrBitbuf); in FDKsbrEnc_CountSbrChannelPairElement() local 246 (FDKgetValidBits(&cmonData->sbrBitbuf) - bitPos)); in FDKsbrEnc_CountSbrChannelPairElement()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 2368 unsigned bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString() local 2394 if (bitPos) { in convertFromHexadecimalString() 2395 bitPos -= 4; in convertFromHexadecimalString() 2396 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString() 2397 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | APFloat.cpp | 2278 unsigned bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString() local 2304 if (bitPos) { in convertFromHexadecimalString() 2305 bitPos -= 4; in convertFromHexadecimalString() 2306 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString() 2307 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.cpp | 1384 const unsigned bitPos = halfBitWidth - i - 1; in LowerUDIVREM64() local 1385 SDValue POS = DAG.getConstant(bitPos, DL, HalfVT); in LowerUDIVREM64() 1396 SDValue BIT = DAG.getConstant(1ULL << bitPos, DL, HalfVT); in LowerUDIVREM64()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.cpp | 1734 const unsigned bitPos = halfBitWidth - i - 1; in LowerUDIVREM64() local 1735 SDValue POS = DAG.getConstant(bitPos, DL, HalfVT); in LowerUDIVREM64() 1746 SDValue BIT = DAG.getConstant(1ULL << bitPos, DL, HalfVT); in LowerUDIVREM64()
|