Searched refs:bitPos (Results 1 - 7 of 7) sorted by relevance
/third_party/libsnd/src/ALAC/ |
H A D | ag_enc.c | 173 static inline void ALWAYS_INLINE dyn_jam_noDeref (unsigned char *out, uint32_t bitPos, uint32_t numBits, uint32_t value) 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_t numBits, uint32_t value) 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, startPo in dyn_comp() local [all...] |
H A 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 maxbits) 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, in dyn_decomp() [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_target.cpp | 421 relocInfo->entry[n].bitPos = s; in addReloc() 463 value = (bitPos < 0) ? (value >> -bitPos) : (value << bitPos); in apply()
|
H A D | nv50_ir_target.h | 44 int8_t bitPos; member
|
H A D | nv50_ir_print.cpp | 926 INFO(" {\"data\":\"%d\",\t\"mask\":\"%d\",\t\"offset\":\"%d\",\t\"bitPos\":\"%d\",\t\"type\":\"%d\"}", in nv50_ir_prog_info_out_print() 927 reloc->entry[i].data, reloc->entry[i].mask, reloc->entry[i].offset, reloc->entry[i].bitPos, reloc->entry[i].type in nv50_ir_prog_info_out_print()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | APFloat.cpp | 2334 unsigned bitPos = partsCount * integerPartWidth; 2364 if (bitPos) { 2365 bitPos -= 4; 2366 hex_value <<= bitPos % integerPartWidth; 2367 significand[bitPos / integerPartWidth] |= hex_value;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A 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()
|
Completed in 16 milliseconds