Searched refs:bitPos (Results 1 – 7 of 7) sorted by relevance
/third_party/libsnd/src/ALAC/ |
D | ag_enc.c | 171 static inline void ALWAYS_INLINE dyn_jam_noDeref (unsigned char *out, uint32_t bitPos, uint32_t num… in dyn_jam_noDeref() argument 179 curr = psf_get_be32 (out, bitPos >> 3) ; in dyn_jam_noDeref() 181 shift = 32 - (bitPos & 7) - numBits ; in dyn_jam_noDeref() 189 psf_put_be32 (out, bitPos >> 3, value) ; in dyn_jam_noDeref() 193 static inline void ALWAYS_INLINE dyn_jam_noDeref_large (unsigned char *out, uint32_t bitPos, uint32… in dyn_jam_noDeref_large() argument 198 int32_t shiftvalue = (32 - (bitPos & 7) - numBits) ; in dyn_jam_noDeref_large() 202 curr = psf_get_be32 (out, bitPos >> 3) ; in dyn_jam_noDeref_large() 213 tailptr = out + (bitPos >> 3) + 4 ; in dyn_jam_noDeref_large() 226 psf_put_be32 (out, bitPos >> 3, w) ; in dyn_jam_noDeref_large() 233 uint32_t bitPos, startPos ; in dyn_comp() local [all …]
|
D | ag_dec.c | 164 static inline int32_t dyn_get (unsigned char *in, uint32_t *bitPos, uint32_t m, uint32_t k) in dyn_get() argument 166 uint32_t tempbits = *bitPos ; in dyn_get() 209 *bitPos = tempbits ; in dyn_get() 214 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 216 uint32_t tempbits = *bitPos ; in dyn_get_32bit() 261 *bitPos = tempbits ; in dyn_get_32bit() 270 uint32_t bitPos, startPos, maxPos ; in dyn_decomp() local 285 bitPos = startPos ; in dyn_decomp() 296 RequireAction (bitPos < maxPos, status = kALAC_ParamError ; goto Exit ;) ; in dyn_decomp() 304 n = dyn_get_32bit (in, &bitPos, m, k, maxSize) ; in dyn_decomp() [all …]
|
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_target.cpp | 420 relocInfo->entry[n].bitPos = s; in addReloc() 462 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()
|