Lines Matching refs:code
668 UINT code; in _gx_image_reader_png_dynamic_huffman_code_find() local
678 code = (scan_buffer) << (32 - i_bit); in _gx_image_reader_png_dynamic_huffman_code_find()
679 code = (code) >> (32 - i_bit); in _gx_image_reader_png_dynamic_huffman_code_find()
681 _gx_image_reader_png_bits_revert(&code, i_bit); in _gx_image_reader_png_dynamic_huffman_code_find()
683 if (code <= code_cal + bit_count - 1) in _gx_image_reader_png_dynamic_huffman_code_find()
686 *code_value = (UINT)huffman_table[code_index + code - code_cal]; in _gx_image_reader_png_dynamic_huffman_code_find()
752 UINT code; in _gx_image_reader_png_fixed_ll_huffman_code_find() local
756 code = scan_buffer << (32 - i_bit); in _gx_image_reader_png_fixed_ll_huffman_code_find()
757 code = code >> (32 - i_bit); in _gx_image_reader_png_fixed_ll_huffman_code_find()
759 _gx_image_reader_png_bits_revert(&code, i_bit); in _gx_image_reader_png_fixed_ll_huffman_code_find()
763 if (code <= 0x17) in _gx_image_reader_png_fixed_ll_huffman_code_find()
766 *code_value = 256 + code; in _gx_image_reader_png_fixed_ll_huffman_code_find()
772 if (code <= 0xbf) in _gx_image_reader_png_fixed_ll_huffman_code_find()
776 *code_value = code - 0x30; in _gx_image_reader_png_fixed_ll_huffman_code_find()
779 else if (code <= 0xc7) in _gx_image_reader_png_fixed_ll_huffman_code_find()
783 *code_value = 280 + code - 0xc0; in _gx_image_reader_png_fixed_ll_huffman_code_find()
791 *code_value = 144 + code - 0x190; in _gx_image_reader_png_fixed_ll_huffman_code_find()