Lines Matching refs:hs
3949 JPEG_HuffTbl *hs = &_Huff_tbls[indextmp]; in JPEG_make_huff_table() local
4019 JPEG_memset((void *)(hs->s16Look_up), 0, sizeof( hs->s16Look_up ) ); in JPEG_make_huff_table()
4020 JPEG_memset((void *)(hs->s16Tree), 0, sizeof( hs->s16Tree ) ); in JPEG_make_huff_table()
4021 JPEG_memset((void *)(hs->u8Code_size), 0, sizeof( hs->u8Code_size ) ); in JPEG_make_huff_table()
4033 hs->u8Code_size[i] = code_size; in JPEG_make_huff_table()
4041 hs->s16Look_up[_code] = i; in JPEG_make_huff_table()
4049 currententry = hs->s16Look_up[subtree]; in JPEG_make_huff_table()
4053 hs->s16Look_up[subtree] = currententry = nextfreeentry; in JPEG_make_huff_table()
4067 if ( hs->s16Tree[-currententry - 1] == 0 ) in JPEG_make_huff_table()
4069 hs->s16Tree[-currententry - 1] = nextfreeentry; in JPEG_make_huff_table()
4077 currententry = hs->s16Tree[-currententry - 1]; in JPEG_make_huff_table()
4088 hs->s16Tree[-currententry - 1] = i; in JPEG_make_huff_table()