Lines Matching refs:smp
44 s = smp[i-(x)+1]; \
49 const int32_t *smp, int len, int order, in FUNC()
54 int s = smp[i-order]; in FUNC()
103 res[i ] = smp[i ] - CLIP(p0 >> shift); in FUNC()
104 res[i+1] = smp[i+1] - CLIP(p1 >> shift); in FUNC()
108 static void FUNC(flac_lpc_encode_c)(int32_t *res, const int32_t *smp, int len, in FUNC()
113 res[i] = smp[i]; in FUNC()
117 int s = smp[i]; in FUNC()
122 s = smp[i-j-1]; in FUNC()
125 res[i ] = smp[i ] - CLIP(p0 >> shift); in FUNC()
126 res[i+1] = smp[i+1] - CLIP(p1 >> shift); in FUNC()
130 case 1: FUNC(lpc_encode_unrolled)(res, smp, len, 1, coefs, shift, 0); break; in FUNC()
131 case 2: FUNC(lpc_encode_unrolled)(res, smp, len, 2, coefs, shift, 0); break; in FUNC()
132 case 3: FUNC(lpc_encode_unrolled)(res, smp, len, 3, coefs, shift, 0); break; in FUNC()
133 case 4: FUNC(lpc_encode_unrolled)(res, smp, len, 4, coefs, shift, 0); break; in FUNC()
134 case 5: FUNC(lpc_encode_unrolled)(res, smp, len, 5, coefs, shift, 0); break; in FUNC()
135 case 6: FUNC(lpc_encode_unrolled)(res, smp, len, 6, coefs, shift, 0); break; in FUNC()
136 case 7: FUNC(lpc_encode_unrolled)(res, smp, len, 7, coefs, shift, 0); break; in FUNC()
137 case 8: FUNC(lpc_encode_unrolled)(res, smp, len, 8, coefs, shift, 0); break; in FUNC()
138 default: FUNC(lpc_encode_unrolled)(res, smp, len, order, coefs, shift, 1); break; in FUNC()