Lines Matching defs:coef
803 decode_coeffs_b_generic(VP56RangeCoder *c, int16_t *coef, int n_coeffs,
912 STORE_COEF(coef, rc, (int)((vp8_rac_get(c) ? -val : val) * (unsigned)qmul[!!i]) / 2);
914 STORE_COEF(coef, rc, (vp8_rac_get(c) ? -val : val) * (unsigned)qmul[!!i]);
922 static int decode_coeffs_b_8bpp(VP9TileData *td, int16_t *coef, int n_coeffs,
928 return decode_coeffs_b_generic(td->c, coef, n_coeffs, 0, 1, 8, cnt, eob, p,
932 static int decode_coeffs_b32_8bpp(VP9TileData *td, int16_t *coef, int n_coeffs,
938 return decode_coeffs_b_generic(td->c, coef, n_coeffs, 1, 1, 8, cnt, eob, p,
942 static int decode_coeffs_b_16bpp(VP9TileData *td, int16_t *coef, int n_coeffs,
948 return decode_coeffs_b_generic(td->c, coef, n_coeffs, 0, 0, td->s->s.h.bpp, cnt, eob, p,
952 static int decode_coeffs_b32_16bpp(VP9TileData *td, int16_t *coef, int n_coeffs,
958 return decode_coeffs_b_generic(td->c, coef, n_coeffs, 1, 0, td->s->s.h.bpp, cnt, eob, p,
967 uint8_t (*p)[6][11] = s->prob.coef[b->tx][0 /* y */][!b->intra];
968 unsigned (*c)[6][3] = td->counts.coef[b->tx][0 /* y */][!b->intra];
1094 p = s->prob.coef[b->uvtx][1 /* uv */][!b->intra];
1095 c = td->counts.coef[b->uvtx][1 /* uv */][!b->intra];