HomeSort by relevance Sort by last modified time
    Searched refs:nc (Results 26 - 50 of 257) sorted by null

12 3 4 5 6 7 8 91011

  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p14.cpp 16 void capture_by_copy(NonCopyable nc, NonCopyable &ncr, const NonConstCopy nco) {
17 (void)[nc] { }; // expected-error{{capture of variable 'nc' as type 'NonCopyable' calls private copy constructor}}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 101 nc = entry.callcount # ncalls column of pstats (before '/')
102 cc = nc - entry.reccallcount # ncalls column of pstats (after '/')
107 self.stats[func] = cc, nc, tt, ct, callers
117 nc = subentry.callcount
118 cc = nc - subentry.reccallcount
123 nc += prev[0]
127 callers[func] = nc, cc, tt, ct
pstats.py 128 for func, (cc, nc, tt, ct, callers) in self.stats.items():
129 self.total_calls += nc
230 for func, (cc, nc, tt, ct, callers) in self.stats.iteritems():
231 stats_list.append((cc, nc, tt, ct) + func +
250 for func, (cc, nc, tt, ct, callers) in oldstats.iteritems():
261 (cc, nc, tt, ct, newcallers))
263 newstats[newfunc] = (cc, nc, tt, ct, newcallers)
278 for func, (cc, nc, tt, ct, callers) in self.stats.iteritems():
385 cc, nc, tt, ct, callers = self.stats[func]
395 for cc, nc, tt, ct, callers in self.stats.itervalues()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 101 nc = entry.callcount # ncalls column of pstats (before '/')
102 cc = nc - entry.reccallcount # ncalls column of pstats (after '/')
107 self.stats[func] = cc, nc, tt, ct, callers
117 nc = subentry.callcount
118 cc = nc - subentry.reccallcount
123 nc += prev[0]
127 callers[func] = nc, cc, tt, ct
pstats.py 128 for func, (cc, nc, tt, ct, callers) in self.stats.items():
129 self.total_calls += nc
230 for func, (cc, nc, tt, ct, callers) in self.stats.iteritems():
231 stats_list.append((cc, nc, tt, ct) + func +
250 for func, (cc, nc, tt, ct, callers) in oldstats.iteritems():
261 (cc, nc, tt, ct, newcallers))
263 newstats[newfunc] = (cc, nc, tt, ct, newcallers)
278 for func, (cc, nc, tt, ct, callers) in self.stats.iteritems():
385 cc, nc, tt, ct, callers = self.stats[func]
395 for cc, nc, tt, ct, callers in self.stats.itervalues()
    [all...]
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherOutputStreamTest.java 134 NullCipher nc = new NullCipher(); local
135 CipherOutputStream stream1 = new CipherOutputStream(new BufferedOutputStream((OutputStream) null), nc);
137 CipherOutputStream stream3 = new CipherOutputStream(stream2, nc);
  /external/srec/srec/cfront/
chelmel4.c 63 //static void lpc_to_cepstral_recursion(cepdata *c, cepdata *a, int nc, int n);
64 static void icostrans(cepdata *cs, cepdata fb[], cepdata cep[], int nf, int nc);
93 static void icostrans(cepdata *cs, cepdata fb[], cepdata cep[], int nf, int nc)
102 for (i = 0; i <= nc; i++)
202 // int nc, /* order of cepstra */
208 // ASSERT(nc < LPCMAX);
210 // for (i = n + 1; i <= nc; i++)
218 // for (i = 1; i <= nc; i++)
226 // /* to <=nc in icostrans */
  /external/blktrace/
blktrace.c 248 struct cl_conn *nc; /* Server network connection */ member in struct:io_info
924 static int net_get_header(struct cl_conn *nc, struct blktrace_net_hdr *bnh)
927 int fl = fcntl(nc->fd, F_GETFL);
929 fcntl(nc->fd, F_SETFL, fl | O_NONBLOCK);
930 bytes_read = __net_recv_data(nc->fd, bnh, sizeof(*bnh));
931 fcntl(nc->fd, F_SETFL, fl & ~O_NONBLOCK);
1477 struct cl_conn *nc = iop->nc; local
1479 len += sprintf(dst + len, "%s-", nc->ch->hostname);
2168 struct cl_conn *nc; local
2261 struct cl_conn *nc = list_entry(p, struct cl_conn, ch_head); local
2461 struct cl_conn *nc; local
2487 struct cl_conn *nc = list_entry(p, struct cl_conn, ns_head); local
    [all...]
  /external/openssh/regress/
dynamic-forward.sh 10 if have_prog nc && nc -h 2>&1 | grep "proxy address" >/dev/null; then
11 proxycmd="nc -x 127.0.0.1:$FWDPORT -X"
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
debug.cpp 145 size_t nc = __next_prime(2*static_cast<size_t>(__cend_ - __cbeg_) + 1); local
146 __c_node** cbeg = static_cast<__c_node**>(calloc(nc, sizeof(void*)));
158 size_t h = hash<void*>()(q->__c_) % nc;
167 __cend_ = __cbeg_ + nc;
408 size_t nc = 2*static_cast<size_t>(cap_ - beg_); local
409 if (nc == 0)
410 nc = 1;
412 static_cast<__i_node**>(malloc(nc * sizeof(__i_node*)));
419 if (nc > 1)
420 memcpy(beg, beg_, nc/2*sizeof(__i_node*))
437 size_t nc = __next_prime(2*static_cast<size_t>(__iend_ - __ibeg_) + 1); local
    [all...]
  /packages/apps/Email/src/com/android/email/service/
AccountService.java 45 NotificationController nc = NotificationController.getInstance(mContext);
46 nc.showLoginFailedNotification(accountId, reason);
  /cts/suite/pts/deviceTests/opengl/jni/graphics/
Matrix.cpp 296 float nc = 1.0f - c; local
303 d[0] = x * x * nc + c;
304 d[4] = xy * nc - zs;
305 d[8] = zx * nc + ys;
306 d[1] = xy * nc + zs;
307 d[5] = y * y * nc + c;
308 d[9] = yz * nc - xs;
309 d[2] = zx * nc - ys;
310 d[6] = yz * nc + xs;
311 d[10] = z * z * nc + c
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_ncons.c 75 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
239 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc)
252 r = nc_match(&gntmp, nc);
275 r = nc_match(&gntmp, nc);
286 r = nc_match(gen, nc);
295 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc)
304 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++)
306 sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i);
328 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++)
330 sub = sk_GENERAL_SUBTREE_value(nc->excludedSubtrees, i)
    [all...]
  /external/openssl/crypto/x509v3/
v3_ncons.c 75 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
239 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc)
252 r = nc_match(&gntmp, nc);
275 r = nc_match(&gntmp, nc);
286 r = nc_match(gen, nc);
295 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc)
304 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++)
306 sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i);
328 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++)
330 sub = sk_GENERAL_SUBTREE_value(nc->excludedSubtrees, i)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Matrix4f.java 172 float nc = 1.0f - c; local
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 + c
    [all...]
  /frameworks/rs/
rsMatrix4x4.cpp 220 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 + c
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix4f.java 172 float nc = 1.0f - c; local
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 + c
    [all...]
  /external/jpeg/
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/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...]
  /dalvik/vm/compiler/codegen/mips/
ArchUtility.cpp 41 char nc; local
47 nc = *fmt++;
48 if (nc=='!') {
52 assert((unsigned)(nc-'0') < 4);
53 operand = lir->operands[nc-'0'];
  /external/chromium/net/http/
http_auth_handler_digest.cc 32 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) |
321 const std::string& nc) const {
335 nc_part = nc + ":" + cnonce + ":" + QopToString(qop_) + ":";
349 std::string nc = base::StringPrintf("%08x", nonce_count); local
362 password, cnonce, nc);
373 authorization += ", nc=" + nc;
  /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...]
  /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);

Completed in 3863 milliseconds

12 3 4 5 6 7 8 91011