Searched defs:nc (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/media/libstagefright/codecs/amrwb/src/
H A Disp_az.cpp143 int16 nc; local
149 nc = m >> 1;
152 if (nc > 8)
154 Get_isp_pol_16kHz(&isp[0], f1, nc);
155 for (i = 0; i <= nc; i++)
159 Get_isp_pol_16kHz(&isp[1], f2, nc - 1);
160 for (i = 0; i <= nc - 1; i++)
167 Get_isp_pol(&isp[0], f1, nc);
168 Get_isp_pol(&isp[1], f2, nc - 1);
175 for (i = nc
[all...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode_inline.h23 __inline Int zero_run_search(UInt *bitmapzz, Short *dataBlock, RunLevelBlock *RLB, Int nc) argument
32 if (nc > 32)
35 end = 1 << (32 - nc);
69 nc -= 32;
70 if (nc > 0)
73 end = 1 << (32 - nc);
113 __inline Int zero_run_search(UInt *bitmapzz, Short *dataBlock, RunLevelBlock *RLB, Int nc) argument
115 OSCL_UNUSED_ARG(nc);
227 __inline Int zero_run_search(UInt *bitmapzz, Short *dataBlock, RunLevelBlock *RLB, Int nc) argument
229 OSCL_UNUSED_ARG(nc);
[all...]
H A Dvlc_encode.cpp1795 Int *zz, nc, zzorder; local
1851 nc = ncoefblck[i];
1852 for (j = intra, zz += intra; j < nc; j++, zz++)
1907 nc = ncoefblck[i];
1909 idx = zero_run_search(bitmapzz, dataBlock, RLB, nc);
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A Disp_az.c48 Word16 nc; local
53 nc = (m >> 1);
54 if(nc > 8)
56 Get_isp_pol_16kHz(&isp[0], f1, nc);
57 for (i = 0; i <= nc; i++)
62 Get_isp_pol(&isp[0], f1, nc);
64 if (nc > 8)
66 Get_isp_pol_16kHz(&isp[1], f2, (nc - 1));
67 for (i = 0; i <= nc - 1; i++)
72 Get_isp_pol(&isp[1], f2, (nc
[all...]
/frameworks/base/libs/rs/
H A DrsMatrix.cpp82 const float nc = 1.0f - c; local
89 m[ 0] = x*x*nc + c;
90 m[ 4] = xy*nc - zs;
91 m[ 8] = zx*nc + ys;
92 m[ 1] = xy*nc + zs;
93 m[ 5] = y*y*nc + c;
94 m[ 9] = yz*nc - xs;
95 m[ 2] = zx*nc - ys;
96 m[ 6] = yz*nc + xs;
97 m[10] = z*z*nc
[all...]
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java310 // because we do not preemptively send authorization headers, nc is always 1
311 String nc = "000001";
313 String digest = computeDigest(A1, A2, nonce, QOP, nc, cnonce);
331 response += ", qop=" + QOP + ", nc=" + nc + ", cnonce=" + doubleQuote(cnonce);
352 String A1, String A2, String nonce, String QOP, String nc, String cnonce) {
361 return KD(H(A1), nonce + ":" + nc + ":" + cnonce + ":" + QOP + ":" + H(A2));
351 computeDigest( String A1, String A2, String nonce, String QOP, String nc, String cnonce) argument
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp366 const GLfloat nc = 1.0f - c; local
373 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys;
374 r[ 1] = xy*nc + zs; r[ 5] = y*y*nc + c; r[ 9] = yz*nc - xs;
375 r[ 2] = zx*nc - ys; r[ 6] = yz*nc + xs; r[10] = z*z*nc
[all...]

Completed in 1085 milliseconds