Lines Matching full:id
174 i = d & 3; /* Get table ID */ in create_qt_tbl()
284 unsigned int id, /* Table ID (0:Y, 1:C) */ in huffext() argument
294 const uint8_t *hb = jd->huffbits[id][cls]; /* Bit distribution table */ in huffext()
295 const uint16_t *hc = jd->huffcode[id][cls]; /* Code word table */ in huffext()
296 const uint8_t *hd = jd->huffdata[id][cls]; /* Data table */ in huffext()
373 d = jd->hufflut_ac[id][d]; /* Table decode */ in huffext()
379 d = jd->hufflut_dc[id][d]; /* Table decode */ in huffext()
387 hb = jd->huffbits[id][cls] + HUFF_BIT; /* Bit distribution table */ in huffext()
388 hc = jd->huffcode[id][cls] + jd->longofs[id][cls]; /* Code word table */ in huffext()
389 hd = jd->huffdata[id][cls] + jd->longofs[id][cls]; /* Data table */ in huffext()
393 hb = jd->huffbits[id][cls]; /* Bit distribution table */ in huffext()
394 hc = jd->huffcode[id][cls]; /* Code word table */ in huffext()
395 hd = jd->huffdata[id][cls]; /* Data table */ in huffext()
708 unsigned int blk, nby, i, bc, z, id, cmp; in mcu_load() local
723 id = cmp ? 1 : 0; /* Huffman table ID of this component */ in mcu_load()
726 d = huffext(jd, id, 0); /* Extract a huffman coded data (bit length) */ in mcu_load()
738 dqf = jd->qttbl[jd->qtid[cmp]]; /* De-quantizer table ID for this component */ in mcu_load()
745 d = huffext(jd, id, 1); /* Extract a huffman coded value (zero runs and bit length) */ in mcu_load()
1023 jd->qtid[i] = seg[8 + 3 * i]; /* Get dequantizer table ID for this component */ in jd_prepare()
1024 if (jd->qtid[i] > 3) return JDR_FMT3; /* Err: Invalid ID */ in jd_prepare()
1060 b = seg[2 + 2 * i]; /* Get huffman table ID */ in jd_prepare()