Searched refs:nc (Results 1 - 21 of 21) sorted by last modified time

/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DMatrix3f.java129 float nc = 1.0f - c;
136 mMat[0] = x*x*nc + c;
137 mMat[3] = xy*nc - zs;
138 mMat[6] = zx*nc + ys;
139 mMat[1] = xy*nc + zs;
140 mMat[4] = y*y*nc + c;
141 mMat[9] = yz*nc - xs;
142 mMat[2] = zx*nc - ys;
143 mMat[6] = yz*nc + xs;
144 mMat[8] = z*z*nc
[all...]
H A DMatrix4f.java172 float nc = 1.0f - c;
179 mMat[ 0] = x*x*nc + c;
180 mMat[ 4] = xy*nc - zs;
181 mMat[ 8] = zx*nc + ys;
182 mMat[ 1] = xy*nc + zs;
183 mMat[ 5] = y*y*nc + c;
184 mMat[ 9] = yz*nc - xs;
185 mMat[ 2] = zx*nc - ys;
186 mMat[ 6] = yz*nc + xs;
187 mMat[10] = z*z*nc
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsMatrix4x4.cpp220 const float nc = 1.0f - c; local
227 m[ 0] = x*x*nc + c;
228 m[ 4] = xy*nc - zs;
229 m[ 8] = zx*nc + ys;
230 m[ 1] = xy*nc + zs;
231 m[ 5] = y*y*nc + c;
232 m[ 9] = yz*nc - xs;
233 m[ 2] = zx*nc - ys;
234 m[ 6] = yz*nc + xs;
235 m[10] = z*z*nc
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentActivity.java201 NonConfigurationInstances nc = (NonConfigurationInstances)
203 if (nc != null) {
204 mAllLoaderManagers = nc.loaders;
208 mFragments.restoreAllState(p, nc != null ? nc.fragments : null);
612 NonConfigurationInstances nc = (NonConfigurationInstances)
614 return nc != null ? nc.custom : null;
/frameworks/rs/
H A DrsMatrix4x4.cpp220 const float nc = 1.0f - c; local
227 m[ 0] = x*x*nc + c;
228 m[ 4] = xy*nc - zs;
229 m[ 8] = zx*nc + ys;
230 m[ 1] = xy*nc + zs;
231 m[ 5] = y*y*nc + c;
232 m[ 9] = yz*nc - xs;
233 m[ 2] = zx*nc - ys;
234 m[ 6] = yz*nc + xs;
235 m[10] = z*z*nc
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DNeighboringCellInfoTest.java32 NeighboringCellInfo nc;
34 nc = new NeighboringCellInfo(rssi, "FFFFFFF", NETWORK_TYPE_EDGE);
35 assertEquals(NETWORK_TYPE_EDGE, nc.getNetworkType());
36 assertEquals(rssi, nc.getRssi());
37 assertEquals(0xfff, nc.getLac());
38 assertEquals(0xffff, nc.getCid());
39 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nc.getPsc());
41 nc = new NeighboringCellInfo(rssi, "1FF", NETWORK_TYPE_UMTS);
42 assertEquals(NETWORK_TYPE_UMTS, nc.getNetworkType());
43 assertEquals(rssi, nc
[all...]
/frameworks/native/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...]
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java591 float nc = 1.0f - c;
598 rm[rmOffset + 0] = x*x*nc + c;
599 rm[rmOffset + 4] = xy*nc - zs;
600 rm[rmOffset + 8] = zx*nc + ys;
601 rm[rmOffset + 1] = xy*nc + zs;
602 rm[rmOffset + 5] = y*y*nc + c;
603 rm[rmOffset + 9] = yz*nc - xs;
604 rm[rmOffset + 2] = zx*nc - ys;
605 rm[rmOffset + 6] = yz*nc + xs;
606 rm[rmOffset + 10] = z*z*nc
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java66 public void setNetworkController(NetworkController nc) { argument
67 if (DEBUG) Slog.d(TAG, "NetworkController=" + nc);
68 mNC = nc;
/frameworks/base/media/tests/contents/media_api/music/
H A Dtest_amr_ietf.amr600 ���5���`���tF�C�3�1�< r�ר>!���Sڭ��s �� ��^I��W��<�nc���A��.�+c�#e7%���
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix3f.java129 float nc = 1.0f - c;
136 mMat[0] = x*x*nc + c;
137 mMat[3] = xy*nc - zs;
138 mMat[6] = zx*nc + ys;
139 mMat[1] = xy*nc + zs;
140 mMat[4] = y*y*nc + c;
141 mMat[9] = yz*nc - xs;
142 mMat[2] = zx*nc - ys;
143 mMat[6] = yz*nc + xs;
144 mMat[8] = z*z*nc
[all...]
H A DMatrix4f.java172 float nc = 1.0f - c;
179 mMat[ 0] = x*x*nc + c;
180 mMat[ 4] = xy*nc - zs;
181 mMat[ 8] = zx*nc + ys;
182 mMat[ 1] = xy*nc + zs;
183 mMat[ 5] = y*y*nc + c;
184 mMat[ 9] = yz*nc - xs;
185 mMat[ 2] = zx*nc - ys;
186 mMat[ 6] = yz*nc + xs;
187 mMat[10] = z*z*nc
[all...]
/frameworks/base/libs/hwui/
H A DMatrix.cpp242 const float nc = 1.0f - c; local
250 data[kScaleX] = x * x * nc + c;
251 data[kSkewX] = xy * nc - zs;
252 data[8] = zx * nc + ys;
253 data[kSkewY] = xy * nc + zs;
254 data[kScaleY] = y * y * nc + c;
255 data[9] = yz * nc - xs;
256 data[2] = zx * nc - ys;
257 data[6] = yz * nc + xs;
258 data[kScaleZ] = z * z * nc
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_cavlc.c371 static u32 DecodeCoeffToken(u32 bits, u32 nc);
388 u32 nc nC, see standard for details
395 u32 DecodeCoeffToken(u32 bits, u32 nc) argument
404 /* standard defines that nc for decoding of chroma dc coefficients is -1,
406 ASSERT(nc <= 16 || nc == (u32)(-1));
408 if (nc < 2)
423 else if (nc < 4)
436 else if (nc < 8)
442 else if (nc <
748 h264bsdDecodeResidualBlockCavlc( strmData_t *pStrmData, i32 *coeffLevel, i32 nc, u32 maxNumCoeff) argument
[all...]
H A Dh264bsd_cavlc.h54 i32 nc,
H A Dh264bsd_macroblock_layer.c518 OMX_INT nc; local
533 nc = (OMX_INT)DetermineNc(pMb, 0, pResidual->totalCoeff);
540 nc,
548 nc,
567 nc = (OMX_INT)DetermineNc(pMb,blockIndex,pResidual->totalCoeff);
576 nc,
584 nc,
596 nc,
604 nc,
662 nc
706 i32 nc; local
[all...]
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java311 // because we do not preemptively send authorization headers, nc is always 1
312 String nc = "00000001";
314 String digest = computeDigest(A1, A2, nonce, QOP, nc, cnonce);
332 response += ", qop=" + QOP + ", nc=" + nc + ", cnonce=" + doubleQuote(cnonce);
353 String A1, String A2, String nonce, String QOP, String nc, String cnonce) {
362 return KD(H(A1), nonce + ":" + nc + ":" + cnonce + ":" + QOP + ":" + H(A2));
352 computeDigest( String A1, String A2, String nonce, String QOP, String nc, String cnonce) argument
/frameworks/av/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/av/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/av/media/libstagefright/codecs/m4v_h263/enc/src/
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);
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...]

Completed in 819 milliseconds