Lines Matching refs:hs
3896 JPEG_HuffTbl *hs = &_Huff_tbls[indextmp]; in JPEG_make_huff_table() local
3966 JPEG_memset((void *)(hs->s16Look_up), 0, sizeof( hs->s16Look_up ) ); in JPEG_make_huff_table()
3967 JPEG_memset((void *)(hs->s16Tree), 0, sizeof( hs->s16Tree ) ); in JPEG_make_huff_table()
3968 JPEG_memset((void *)(hs->u8Code_size), 0, sizeof( hs->u8Code_size ) ); in JPEG_make_huff_table()
3980 hs->u8Code_size[i] = code_size; in JPEG_make_huff_table()
3988 hs->s16Look_up[_code] = i; in JPEG_make_huff_table()
3996 currententry = hs->s16Look_up[subtree]; in JPEG_make_huff_table()
4000 hs->s16Look_up[subtree] = currententry = nextfreeentry; in JPEG_make_huff_table()
4014 if ( hs->s16Tree[-currententry - 1] == 0 ) in JPEG_make_huff_table()
4016 hs->s16Tree[-currententry - 1] = nextfreeentry; in JPEG_make_huff_table()
4024 currententry = hs->s16Tree[-currententry - 1]; in JPEG_make_huff_table()
4035 hs->s16Tree[-currententry - 1] = i; in JPEG_make_huff_table()