Searched refs:bitPos (Results 1 – 7 of 7) sorted by relevance
/third_party/libsnd/src/ALAC/ |
D | ag_enc.c | 173 static inline void ALWAYS_INLINE dyn_jam_noDeref (unsigned char *out, uint32_t bitPos, uint32_t num… in dyn_jam_noDeref() argument 181 curr = psf_get_be32 (out, bitPos >> 3) ; in dyn_jam_noDeref() 183 shift = 32 - (bitPos & 7) - numBits ; in dyn_jam_noDeref() 191 psf_put_be32 (out, bitPos >> 3, value) ; in dyn_jam_noDeref() 195 static inline void ALWAYS_INLINE dyn_jam_noDeref_large (unsigned char *out, uint32_t bitPos, uint32… in dyn_jam_noDeref_large() argument 200 int32_t shiftvalue = (32 - (bitPos & 7) - numBits) ; in dyn_jam_noDeref_large() 204 curr = psf_get_be32 (out, bitPos >> 3) ; in dyn_jam_noDeref_large() 215 tailptr = out + (bitPos >> 3) + 4 ; in dyn_jam_noDeref_large() 228 psf_put_be32 (out, bitPos >> 3, w) ; in dyn_jam_noDeref_large() 235 uint32_t bitPos, startPos ; in dyn_comp() local [all …]
|
D | ag_dec.c | 166 static inline int32_t dyn_get (unsigned char *in, uint32_t *bitPos, uint32_t m, uint32_t k) in dyn_get() argument 168 uint32_t tempbits = *bitPos ; in dyn_get() 211 *bitPos = tempbits ; in dyn_get() 216 static inline int32_t dyn_get_32bit (uint8_t * in, uint32_t * bitPos, int32_t m, int32_t k, int32_t… in dyn_get_32bit() argument 218 uint32_t tempbits = *bitPos ; in dyn_get_32bit() 263 *bitPos = tempbits ; in dyn_get_32bit() 272 uint32_t bitPos, startPos, maxPos ; in dyn_decomp() local 287 bitPos = startPos ; in dyn_decomp() 298 RequireAction (bitPos < maxPos, status = kALAC_ParamError ; goto Exit ;) ; in dyn_decomp() 306 n = dyn_get_32bit (in, &bitPos, m, k, maxSize) ; in dyn_decomp() [all …]
|
/third_party/mesa3d/src/nouveau/codegen/ |
D | nv50_ir_target.cpp | 421 relocInfo->entry[n].bitPos = s; in addReloc() 463 value = (bitPos < 0) ? (value >> -bitPos) : (value << bitPos); in apply()
|
D | nv50_ir_target.h | 44 int8_t bitPos; member
|
D | nv50_ir_print.cpp | 927 …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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APFloat.cpp | 2334 unsigned bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString() local 2364 if (bitPos) { in convertFromHexadecimalString() 2365 bitPos -= 4; in convertFromHexadecimalString() 2366 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString() 2367 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.cpp | 1820 const unsigned bitPos = halfBitWidth - i - 1; in LowerUDIVREM64() local 1821 SDValue POS = DAG.getConstant(bitPos, DL, HalfVT); in LowerUDIVREM64() 1832 SDValue BIT = DAG.getConstant(1ULL << bitPos, DL, HalfVT); in LowerUDIVREM64()
|