Lines Matching refs:nc
79 // nc is the number of bits to store the coefficients
80 const int nc = 32;
95 // 2^nz >= 2^(nc/2)
217 printf("const int32_t RESAMPLE_FIR_COEF_BITS = %d;\n", nc);
237 int64_t yi = floor(y * ((1ULL<<(nc-1))) + 0.5);
238 if (yi >= (1LL<<(nc-1))) yi = (1LL<<(nc-1))-1;
257 int64_t yi = floor(y * ((1ULL<<(nc-1))) + 0.5);
258 if (yi >= (1LL<<(nc-1))) yi = (1LL<<(nc-1))-1;