Lines Matching refs:hs
4033 JPEG_HuffTbl *hs = &pNJPEGContext->_Huff_tbls[pNJPEGContext->eNJPDNum][indextmp]; in JPEG_make_huff_table() local
4104 JPEG_memset((void *)(hs->s16Look_up), 0, sizeof( hs->s16Look_up ) ); in JPEG_make_huff_table()
4105 JPEG_memset((void *)(hs->s16Tree), 0, sizeof( hs->s16Tree ) ); in JPEG_make_huff_table()
4106 JPEG_memset((void *)(hs->u8Code_size), 0, sizeof( hs->u8Code_size ) ); in JPEG_make_huff_table()
4118 hs->u8Code_size[i] = code_size; in JPEG_make_huff_table()
4126 hs->s16Look_up[_code] = i; in JPEG_make_huff_table()
4134 currententry = hs->s16Look_up[subtree]; in JPEG_make_huff_table()
4138 hs->s16Look_up[subtree] = currententry = nextfreeentry; in JPEG_make_huff_table()
4152 if ( hs->s16Tree[-currententry - 1] == 0 ) in JPEG_make_huff_table()
4154 hs->s16Tree[-currententry - 1] = nextfreeentry; in JPEG_make_huff_table()
4162 currententry = hs->s16Tree[-currententry - 1]; in JPEG_make_huff_table()
4173 hs->s16Tree[-currententry - 1] = i; in JPEG_make_huff_table()