Home
last modified time | relevance | path

Searched refs:bitoffset (Results 1 – 6 of 6) sorted by relevance

/third_party/libsnd/src/ALAC/
Dag_dec.c129 getstreambits (uint8_t *in, int32_t bitoffset, int32_t numbits) in getstreambits() argument
132 uint32_t byteoffset = bitoffset / 8 ; in getstreambits()
139 if ((numbits + (bitoffset & 0x7)) > 32) in getstreambits()
143 result = load1 << (bitoffset & 0x7) ; in getstreambits()
145 load2shift = (8 - (numbits + (bitoffset & 0x7) - 32)) ; in getstreambits()
152 result = load1 >> (32 - numbits - (bitoffset & 7)) ; in getstreambits()
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
Dastc_integer_sequence.cpp221 int bitoffset, in read_bits() argument
225 ptr += bitoffset >> 3; in read_bits()
226 bitoffset &= 7; in read_bits()
228 value >>= bitoffset; in read_bits()
Dastc_symbolic_physical.cpp27 int bitoffset, in read_bits() argument
31 ptr += bitoffset >> 3; in read_bits()
32 bitoffset &= 7; in read_bits()
34 value >>= bitoffset; in read_bits()
/third_party/weston/clients/
Dweston-info.c366 bits2graph(uint32_t value, unsigned bitoffset) in bits2graph() argument
368 int c = (value >> bitoffset) & 0xff; in bits2graph()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_llvm.c353 unsigned bitoffset) in si_init_exec_from_input() argument
357 LLVMConstInt(ctx->ac.i32, bitoffset, 0), in si_init_exec_from_input()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicsAMDGPU.td184 // thread_count = (input >> bitoffset) & 0x7f;