/external/qemu/distrib/jpeg-6b/ |
jquant1.c | 191 int nc = cinfo->out_color_components; /* number of color components */ local 198 /* We can allocate at least the nc'th root of max_colors per component. */ 199 /* Compute floor(nc'th root of max_colors). */ 203 temp = iroot; /* set temp = iroot ** nc */ 204 for (i = 1; i < nc; i++) 215 for (i = 0; i < nc; i++) { 227 for (i = 0; i < nc; i++) { 470 register int nc = cinfo->out_color_components; local 477 for (ci = 0; ci < nc; ci++) { 525 int nc = cinfo->out_color_components local 626 int nc = cinfo->out_color_components; local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
AuthenticationHeader.java | 70 public static final String NC = ParameterNames.NC; 437 return this.getParameterAsHexInt(ParameterNames.NC); 449 String nc = Integer.toHexString(param); local 452 nc = base.substring(0, 8 - nc.length()) + nc; 453 this.setParameter(ParameterNames.NC, nc);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_macroblock_layer.c | 518 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 = (OMX_INT)DetermineNc(pMb, blockIndex, pResidual->totalCoeff) 706 i32 nc; local [all...] |
h264bsd_cavlc.c | 77 /* VLC lengths up to 6 bits, 0 <= nC < 2 */ 84 /* VLC lengths up to 10 bits, 0 <= nC < 2 */ 93 /* VLC lengths up to 14 bits, 0 <= nC < 2 */ 103 /* VLC lengths up to 16 bits, 0 <= nC < 2 */ 110 /* VLC lengths up to 6 bits, 2 <= nC < 4 */ 117 /* VLC lengths up to 9 bits, 2 <= nC < 4 */ 124 /* VLC lengths up to 14 bits, 2 <= nC < 4 */ 143 /* VLC lengths up to 6 bits, 4 <= nC < 8 */ 154 /* VLC lengths up to 10 bits, 4 <= nC < 8 */ 173 /* fixed 6 bit length VLC, nC <= 8 * [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
BaseTreeAdaptor.js | 107 var nc = newRootTree.getChildCount(); 108 if (nc===1) { 110 } else if ( nc>1 ) {
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherOutputStream1Test.java | 151 NullCipher nc = new NullCipher(); local 152 CipherOutputStream stream1 = new CipherOutputStream(new BufferedOutputStream((OutputStream) null), nc); 154 CipherOutputStream stream3 = new CipherOutputStream(stream2, nc);
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
templates.cpp | 108 void double_capture(T &nc) { 111 T nc2(nc);
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
NetworkAgentInfo.java | 87 LinkProperties lp, NetworkCapabilities nc, int score, Context context, Handler handler, 94 networkCapabilities = nc; 152 linkProperties + "} nc{" +
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
DctController.java | 500 NetworkCapabilities nc = nr.networkCapabilities; local 502 if (nc.getTransportTypes().length > 0 && 503 nc.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR) == false) { 513 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)) { 518 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_MMS)) { 523 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_SUPL)) { 528 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_DUN)) { 533 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_FOTA)) { 538 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_IMS)) { 543 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_CBS)) [all...] |
/external/chromium_org/v8/tools/ |
draw_instruction_graph.sh | 64 nc=`grep -m1 '# counters=' $file | cut -d= -f2` 89 MAXCOL=$nc
|
/external/oprofile/libpp/ |
xml_utils.h | 27 symbol_collection const & s, size_t nc,
|
/packages/apps/Email/provider_src/com/android/email/ |
SecurityPolicy.java | 464 final NotificationController nc = local 466 nc.showSecurityNeededNotification(account); 513 final NotificationController nc = local 516 nc.showSecurityNeededNotification(account); 518 nc.showSecurityUnsupportedNotification(account); 627 final NotificationController nc = local 635 nc.showSecurityUnsupportedNotification(account); 646 nc.showSecurityChangedNotification(account); 657 nc.showSecurityNeededNotification(account); 669 final NotificationController nc local [all...] |
/frameworks/base/libs/hwui/ |
Matrix.cpp | 330 const float nc = 1.0f - c; local 338 data[kScaleX] = x * x * nc + c; 339 data[kSkewX] = xy * nc - zs; 340 data[8] = zx * nc + ys; 341 data[kSkewY] = xy * nc + zs; 342 data[kScaleY] = y * y * nc + c; 343 data[9] = yz * nc - xs; 344 data[2] = zx * nc - ys; 345 data[6] = yz * nc + xs; 346 data[kScaleZ] = z * z * nc + c [all...] |
/frameworks/native/include/ui/ |
mat4.h | 314 T nc = 1 - c; local 321 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys; 322 r[ 1] = xy*nc + zs; r[ 5] = y*y*nc + c; r[ 9] = yz*nc - xs; 323 r[ 2] = zx*nc - ys; r[ 6] = yz*nc + xs; r[10] = z*z*nc + c [all...] |
/external/chromium_org/net/http/ |
http_auth_handler_digest.cc | 35 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) | 323 const std::string& nc) const { 338 nc_part = nc + ":" + cnonce + ":" + QopToString(qop_) + ":"; 351 std::string nc = base::StringPrintf("%08x", nonce_count); local 365 cnonce, nc); 376 authorization += ", nc=" + nc;
|
/frameworks/base/core/java/android/net/http/ |
RequestHandle.java | 311 // because we do not preemptively send authorization headers, nc is always 1 312 String nc = "00000001"; local 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));
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
TrustAnchorTest.java | 105 byte[] nc = getEncodingPSOnly(); 106 byte[] ncCopy = nc.clone(); 113 assertTrue(Arrays.equals(nc, ta.getNameConstraints())); 219 byte[] nc = getEncodingPSOnly(); 220 byte[] ncCopy = nc.clone(); 228 assertTrue(Arrays.equals(nc, ta.getNameConstraints()));
|
/frameworks/support/v4/java/android/support/v4/app/ |
FragmentActivity.java | 257 NonConfigurationInstances nc = (NonConfigurationInstances) local 259 if (nc != null) { 260 mAllLoaderManagers = nc.loaders; 264 mFragments.restoreAllState(p, nc != null ? nc.fragments : null); 610 NonConfigurationInstances nc = (NonConfigurationInstances) local 612 return nc != null ? nc.custom : null;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
BaseTreeAdaptor.cs | 162 int nc = newRootTree.ChildCount; 163 if (nc == 1) 165 else if (nc > 1) {
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
BaseTreeAdaptor.java | 146 int nc = newRootTree.getChildCount(); local 147 if ( nc==1 ) newRootTree = (Tree)newRootTree.getChild(0); 148 else if ( nc >1 ) {
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
NameConstraints.java | 277 NameConstraints nc = (NameConstraints) object; 278 values[0] = nc.permittedSubtrees; 279 values[1] = nc.excludedSubtrees;
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/ |
socket.rb | 341 nc = @buffer.getc 343 if nc.between?( ?0, ?9 ) # octal integer 344 @buffer.ungetc( nc ) 346 elsif nc == ?x 349 ESCAPE_MAP[ nc ]
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texcompress_fxt1.c | 252 #define MAKEIVEC(NV, NC, IV, B, V0, V1) \ 258 for (i = 0; i < NC; i++) { \ 264 for (i = 0; i < NC; i++) { \ 272 #define CALCCDOT(TEXEL, NV, NC, IV, B, V)\ 275 for (i = 0; i < NC; i++) { \ 291 GLubyte input[MAX_COMP], GLint nc) 298 for (i = 0; i < nc; i++) { 313 GLubyte input[N_TEXELS][MAX_COMP], GLint nc, GLint n) 320 for (i = 0; i < nc; i++) { 335 GLubyte input[N_TEXELS][MAX_COMP], GLint nc, GLint n [all...] |
/external/mesa3d/src/mesa/main/ |
texcompress_fxt1.c | 252 #define MAKEIVEC(NV, NC, IV, B, V0, V1) \ 258 for (i = 0; i < NC; i++) { \ 264 for (i = 0; i < NC; i++) { \ 272 #define CALCCDOT(TEXEL, NV, NC, IV, B, V)\ 275 for (i = 0; i < NC; i++) { \ 291 GLubyte input[MAX_COMP], GLint nc) 298 for (i = 0; i < nc; i++) { 313 GLubyte input[N_TEXELS][MAX_COMP], GLint nc, GLint n) 320 for (i = 0; i < nc; i++) { 335 GLubyte input[N_TEXELS][MAX_COMP], GLint nc, GLint n [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/ |
TrustAnchor_ImplTest.java | 118 byte[] nc = getEncodingPSOnly(); 119 byte[] ncCopy = nc.clone(); 128 assertTrue(Arrays.equals(nc, ta.getNameConstraints())); 411 byte[] nc = getFullEncoding(); 414 (X509Certificate) ks.getCertificate(certAlias), nc); 417 assertTrue(Arrays.equals(nc, ncRet)); 418 assertNotSame(nc, ncRet);
|