Searched refs:nc (Results 1 - 25 of 148) sorted by relevance

123456

/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp15.cpp8 void capture_by_ref(NonCopyable nc, NonCopyable &ncr) { argument
10 (void)[&nc] () -> void {};
H A Dp14.cpp16 void capture_by_copy(NonCopyable nc, NonCopyable &ncr, const NonConstCopy nco) { argument
17 (void)[nc] { }; // expected-error{{capture of variable 'nc' as type 'NonCopyable' calls private copy constructor}}
/external/clang/test/SemaCXX/
H A Dcopy-assignment.cpp61 C c, nc; local
82 nc = c;
83 nc = constC;
84 nc = 1;
85 nc = 1L;
86 nc = 1.0; // expected-error{{use of overloaded operator '=' is ambiguous}}
87 nc += 1;
88 nc += 1L;
89 nc += 1.0; // expected-error{{use of overloaded operator '+=' is ambiguous}}
H A Dmicrosoft-new-delete.cpp13 class noncopyable { noncopyable(const noncopyable&); } extern nc; // expected-note {{here}}
16 void *q = new (nc) int[4]; // expected-error {{calling a private constructor}}
H A Dcxx0x-cursory-default-delete.cpp20 non_copiable nc; local
21 non_copiable nc2 = nc; // expected-error {{deleted constructor}}
22 nc = nc; // expected-error {{deleted operator}}
/external/eigen/bench/
H A DbenchmarkSlice.cpp26 int r, c, nr, nc; local
30 nc = Eigen::internal::random<int>(50,80);
31 m.block(r,c,nr,nc) += Mat::Ones(nr,nc);
32 m.block(r,c,nr,nc) *= SCALAR(10);
33 m.block(r,c,nr,nc) -= Mat::constant(nr,nc,10);
34 m.block(r,c,nr,nc) /= SCALAR(10);
/external/chromium_org/third_party/opus/src/celt/tests/
H A Dtest_unit_cwrs32.c102 opus_uint32 nc; local
108 nc=ncwrs_urow(n,k,uu);
110 nc=CELT_PVQ_V(n,k);
112 inc=nc/20000;
114 for(i=0;i<nc;i+=inc){
136 /*printf("%6u of %u:",i,nc);
150 if(v!=nc){
152 (long)v,(long)nc);
/external/libopus/celt/tests/
H A Dtest_unit_cwrs32.c102 opus_uint32 nc; local
108 nc=ncwrs_urow(n,k,uu);
110 nc=CELT_PVQ_V(n,k);
112 inc=nc/20000;
114 for(i=0;i<nc;i+=inc){
136 /*printf("%6u of %u:",i,nc);
150 if(v!=nc){
152 (long)v,(long)nc);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dmake_shared.pass.cpp55 int nc = new_count; local
60 assert(new_count == nc+1);
66 nc = new_count;
70 assert(new_count == nc+1);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dscanresults.cpp133 NetworkConfig *nc = new NetworkConfig(); local
134 if (nc == NULL)
136 nc->setWpaGui(wpagui);
137 nc->paramsFromScanResults(sel);
138 nc->show();
139 nc->exec();
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp2.cpp55 NonConst nc; member in struct:copy::NonConst3
61 NonConst nc; // makes implicit copy non-const member in struct:copy::BadConst
/external/eigen/Eigen/src/SparseCore/
H A DSparseColEtree.h64 Index nc = mat.cols(); // Number of columns local
66 Index diagSize = (std::min)(nc,m);
67 IndexVector root(nc); // root of subtree of etree
69 IndexVector pp(nc); // disjoint sets
75 firstRowElt.setConstant(nc);
78 for (col = 0; col < nc; col++)
93 for (col = 0; col < nc; col++)
99 parent(col) = nc;
/external/netcat/
H A DAndroid.mk16 LOCAL_MODULE:=nc
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAuthenticationInfo.java174 String nc = Integer.toHexString(nonceCount);
177 nc = base.substring(0, 8 - nc.length()) + nc;
178 this.setParameter(ParameterNames.NC, nc);
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Dfft4g.c290 static void makect(int nc, int *ip, float *c);
297 static void rftfsub(int n, float *a, int nc, float *c);
298 static void rftbsub(int n, float *a, int nc, float *c);
300 static void dctsub(int n, float *a, int nc, float *c)
301 static void dstsub(int n, float *a, int nc, float *c)
326 int nw, nc; local
334 nc = ip[1];
335 if (n > (nc << 2)) {
336 nc = n >> 2;
337 makect(nc, i
671 makect(int nc, int *ip, float *c) argument
1234 rftfsub(int n, float *a, int nc, float *c) argument
1259 rftbsub(int n, float *a, int nc, float *c) argument
[all...]
/external/webrtc/src/modules/audio_processing/utility/
H A Dfft4g.c290 static void makect(int nc, int *ip, float *c);
297 static void rftfsub(int n, float *a, int nc, float *c);
298 static void rftbsub(int n, float *a, int nc, float *c);
300 static void dctsub(int n, float *a, int nc, float *c)
301 static void dstsub(int n, float *a, int nc, float *c)
326 int nw, nc; local
334 nc = ip[1];
335 if (n > (nc << 2)) {
336 nc = n >> 2;
337 makect(nc, i
671 makect(int nc, int *ip, float *c) argument
1234 rftfsub(int n, float *a, int nc, float *c) argument
1259 rftbsub(int n, float *a, int nc, float *c) argument
[all...]
/external/clang/test/CXX/dcl.decl/dcl.init/
H A Dp14-0x.cpp34 NoCopy nc = NoCopy(); // expected-error {{call to deleted}} member in class:S
/external/libnl/tests/
H A Dtest-cache-mngr.c32 struct nl_cache *lc, *nc, *ac, *rc; local
48 if ((err = nl_cache_mngr_add(mngr, "route/neigh", &change_cb, &nc)) < 0)
/external/chromium_org/v8/src/base/
H A Ddivision-by-constant.cc31 const T anc = t - 1 - t % ad; // Absolute value of nc
33 T q1 = min / anc; // Init. q1 = 2**p/|nc|.
34 T r1 = min - q1 * anc; // Init. r1 = rem(2**p, |nc|).
40 q1 = 2 * q1; // Update q1 = 2**p/|nc|.
41 r1 = 2 * r1; // Update r1 = rem(2**p, |nc|).
68 const T nc = ones - (ones - d) % d; local
71 T q1 = min / nc; // Init. q1 = 2**p/nc
72 T r1 = min - q1 * nc; // Init. r1 = rem(2**p,nc)
[all...]
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DCipherOutputStreamTest.java134 NullCipher nc = new NullCipher();
135 CipherOutputStream stream1 = new CipherOutputStream(new BufferedOutputStream((OutputStream) null), nc);
137 CipherOutputStream stream3 = new CipherOutputStream(stream2, nc);
/external/srec/srec/cfront/
H A Dchelmel4.c63 //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) argument
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/
H A Dblktrace.c248 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) argument
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
2186 ch_rem_connection(struct net_server_s *ns, struct cl_host *ch, struct cl_conn *nc) argument
2261 struct cl_conn *nc = list_entry(p, struct cl_conn, ch_head); local
2296 nc_add_dpp(struct cl_conn *nc, struct blktrace_net_hdr *bnh, time_t connect_time) argument
2345 nc_find_dpp(struct cl_conn *nc, struct blktrace_net_hdr *bnh) argument
2364 net_client_read_data(struct cl_conn *nc, struct devpath *dpp, struct blktrace_net_hdr *bnh) argument
2390 net_client_data(struct cl_conn *nc) argument
2461 struct cl_conn *nc; local
2487 struct cl_conn *nc = list_entry(p, struct cl_conn, ns_head); local
[all...]
/external/libcxx/src/
H A Ddebug.cpp144 size_t nc = __next_prime(2*static_cast<size_t>(__cend_ - __cbeg_) + 1); local
145 __c_node** cbeg = static_cast<__c_node**>(calloc(nc, sizeof(void*)));
157 size_t h = hash<void*>()(q->__c_) % nc;
166 __cend_ = __cbeg_ + nc;
432 size_t nc = 2*static_cast<size_t>(cap_ - beg_); local
433 if (nc == 0)
434 nc = 1;
436 static_cast<__i_node**>(malloc(nc * sizeof(__i_node*)));
443 if (nc > 1)
444 memcpy(beg, beg_, nc/
461 size_t nc = __next_prime(2*static_cast<size_t>(__iend_ - __ibeg_) + 1); local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_ncons.c78 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
242 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc)
256 r = nc_match(&gntmp, nc);
279 r = nc_match(&gntmp, nc);
290 r = nc_match(gen, nc);
299 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc)
309 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++)
311 sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i);
333 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++)
335 sub = sk_GENERAL_SUBTREE_value(nc
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_ncons.c75 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
[all...]

Completed in 3380 milliseconds

123456