Home | History | Annotate | Download | only in celt

Lines Matching defs:N0

274       int N0;
282 N0 = m->eBands[i+1]-m->eBands[i];
292 t = N0<<LM;
299 sqrt_1 = celt_rsqrt(N0<<LM);
348 for (j=0;j<N0;j++)
358 renormalise_vector(X, N0<<LM, Q15ONE, arch);
458 int i, c, N0;
466 N0 = M*m->shortMdctSize;
475 const celt_norm * OPUS_RESTRICT x = X+M*eBands[i]+c*N0;
558 static void deinterleave_hadamard(celt_norm *X, int N0, int stride, int hadamard)
564 N = N0*stride;
572 for (j=0;j<N0;j++)
573 tmp[ordery[i]*N0+j] = X[j*stride+i];
577 for (j=0;j<N0;j++)
578 tmp[i*N0+j] = X[j*stride+i];
584 static void interleave_hadamard(celt_norm *X, int N0, int stride, int hadamard)
590 N = N0*stride;
596 for (j=0;j<N0;j++)
597 tmp[j*stride+i] = X[ordery[i]*N0+j];
600 for (j=0;j<N0;j++)
601 tmp[j*stride+i] = X[i*N0+j];
607 void haar1(celt_norm *X, int N0, int stride)
610 N0 >>= 1;
612 for (j=0;j<N0;j++)
1075 int N0=N;
1182 haar1(X, N0>>k, 1<<k);
1191 n = celt_sqrt(SHL32(EXTEND32(N0),22));
1192 for (j=0;j<N0;j++)