Lines Matching refs:hs
3941 JPEG_HuffTbl *hs = &_Huff_tbls[index]; in JPEG_make_huff_table() local
4011 JPEG_memset((void *)(hs->s16Look_up), 0, sizeof( hs->s16Look_up ) ); in JPEG_make_huff_table()
4012 JPEG_memset((void *)(hs->s16Tree), 0, sizeof( hs->s16Tree ) ); in JPEG_make_huff_table()
4013 JPEG_memset((void *)(hs->u8Code_size), 0, sizeof( hs->u8Code_size ) ); in JPEG_make_huff_table()
4025 hs->u8Code_size[i] = code_size; in JPEG_make_huff_table()
4033 hs->s16Look_up[_code] = i; in JPEG_make_huff_table()
4041 currententry = hs->s16Look_up[subtree]; in JPEG_make_huff_table()
4045 hs->s16Look_up[subtree] = currententry = nextfreeentry; in JPEG_make_huff_table()
4059 if ( hs->s16Tree[-currententry - 1] == 0 ) in JPEG_make_huff_table()
4061 hs->s16Tree[-currententry - 1] = nextfreeentry; in JPEG_make_huff_table()
4069 currententry = hs->s16Tree[-currententry - 1]; in JPEG_make_huff_table()
4080 hs->s16Tree[-currententry - 1] = i; in JPEG_make_huff_table()