Lines Matching refs:dequant
1772 stbi__uint16 dequant[4][64]; member
2021 …t data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant) in stbi__jpeg_decode_block() argument
2036 data[0] = (short) (dc * dequant[0]); in stbi__jpeg_decode_block()
2053 data[zig] = (short) ((r >> 8) * dequant[zig]); in stbi__jpeg_decode_block()
2066 data[zig] = (short) (stbi__extend_receive(j,s) * dequant[zig]); in stbi__jpeg_decode_block()
2770 …data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq… in stbi__parse_entropy_coded_data()
2798 …data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq… in stbi__parse_entropy_coded_data()
2877 static void stbi__jpeg_dequantize(short *data, stbi__uint16 *dequant) in stbi__jpeg_dequantize() argument
2881 data[i] *= dequant[i]; in stbi__jpeg_dequantize()
2895 stbi__jpeg_dequantize(data, z->dequant[z->img_comp[n].tq]); in stbi__jpeg_finish()
2925 …z->dequant[t][stbi__jpeg_dezigzag[i]] = (stbi__uint16)(sixteen ? stbi__get16be(z->s) : stbi__get8(… in stbi__process_marker()