Home
last modified time | relevance | path

Searched refs:nc (Results 1 – 25 of 197) sorted by relevance

12345678

/external/clang/include/clang/Basic/
DBuiltinsMips.def30 BUILTIN(__builtin_mips_madd, "LLiLLiii", "nc")
31 BUILTIN(__builtin_mips_maddu, "LLiLLiUiUi", "nc")
32 BUILTIN(__builtin_mips_msub, "LLiLLiii", "nc")
33 BUILTIN(__builtin_mips_msubu, "LLiLLiUiUi", "nc")
41 BUILTIN(__builtin_mips_modsub, "iii", "nc")
43 BUILTIN(__builtin_mips_raddu_w_qb, "iV4Sc", "nc")
48 BUILTIN(__builtin_mips_precrq_qb_ph, "V4ScV2sV2s", "nc")
50 BUILTIN(__builtin_mips_precrq_ph_w, "V2sii", "nc")
52 BUILTIN(__builtin_mips_preceq_w_phl, "iV2s", "nc")
53 BUILTIN(__builtin_mips_preceq_w_phr, "iV2s", "nc")
[all …]
DBuiltinsARM.def22 BUILTIN(__builtin_arm_qadd, "iii", "nc")
23 BUILTIN(__builtin_arm_qsub, "iii", "nc")
24 BUILTIN(__builtin_arm_ssat, "iiUi", "nc")
25 BUILTIN(__builtin_arm_usat, "UiUiUi", "nc")
36 BUILTIN(__builtin_arm_get_fpscr, "Ui", "nc")
37 BUILTIN(__builtin_arm_set_fpscr, "vUi", "nc")
38 BUILTIN(__builtin_arm_vcvtr_f, "ffi", "nc")
39 BUILTIN(__builtin_arm_vcvtr_d, "fdi", "nc")
DBuiltinsNVPTX.def18 BUILTIN(__builtin_ptx_read_tid_x, "i", "nc")
19 BUILTIN(__builtin_ptx_read_tid_y, "i", "nc")
20 BUILTIN(__builtin_ptx_read_tid_z, "i", "nc")
21 BUILTIN(__builtin_ptx_read_tid_w, "i", "nc")
23 BUILTIN(__builtin_ptx_read_ntid_x, "i", "nc")
24 BUILTIN(__builtin_ptx_read_ntid_y, "i", "nc")
25 BUILTIN(__builtin_ptx_read_ntid_z, "i", "nc")
26 BUILTIN(__builtin_ptx_read_ntid_w, "i", "nc")
28 BUILTIN(__builtin_ptx_read_ctaid_x, "i", "nc")
29 BUILTIN(__builtin_ptx_read_ctaid_y, "i", "nc")
[all …]
DBuiltins.def111 BUILTIN(__builtin_huge_val, "d", "nc")
112 BUILTIN(__builtin_huge_valf, "f", "nc")
113 BUILTIN(__builtin_huge_vall, "Ld", "nc")
114 BUILTIN(__builtin_inf , "d" , "nc")
115 BUILTIN(__builtin_inff , "f" , "nc")
116 BUILTIN(__builtin_infl , "Ld" , "nc")
353 BUILTIN(__builtin_isgreater , "i.", "nc")
354 BUILTIN(__builtin_isgreaterequal, "i.", "nc")
355 BUILTIN(__builtin_isless , "i.", "nc")
356 BUILTIN(__builtin_islessequal , "i.", "nc")
[all …]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
DNameCallbackTest.java34 NameCallback nc; field in NameCallbackTest
40 nc = new NameCallback("prompt", "defaultName"); in testNameCallback_01()
41 assertEquals("prompt", nc.getPrompt()); in testNameCallback_01()
42 assertEquals("defaultName", nc.getDefaultName()); in testNameCallback_01()
43 nc.setName("Name"); in testNameCallback_01()
44 assertEquals("Name", nc.getName()); in testNameCallback_01()
53 nc = new NameCallback("", "DefaultName"); in testNameCallback_02()
58 nc = new NameCallback(null, "DefaultName"); in testNameCallback_02()
63 nc = new NameCallback("Prompt", ""); in testNameCallback_02()
68 nc = new NameCallback("Prompt", null); in testNameCallback_02()
DUnsupportedCallbackExceptionTest.java36 NameCallback nc = new NameCallback("prompt"); field in UnsupportedCallbackExceptionTest
42 UnsupportedCallbackException ce = new UnsupportedCallbackException(nc); in testUnsupportedCallbackException_01()
43 assertEquals(nc, ce.getCallback()); in testUnsupportedCallbackException_01()
48 assertEquals(nc, ce.getCallback()); in testUnsupportedCallbackException_01()
57 UnsupportedCallbackException ce = new UnsupportedCallbackException(nc, "message"); in testUnsupportedCallbackException_02()
59 assertEquals(nc, ce.getCallback()); in testUnsupportedCallbackException_02()
64 assertEquals(nc, ce.getCallback()); in testUnsupportedCallbackException_02()
/external/eigen/bench/
DbenchmarkSlice.cpp26 int r, c, nr, nc; in main() local
30 nc = Eigen::internal::random<int>(50,80); in main()
31 m.block(r,c,nr,nc) += Mat::Ones(nr,nc); in main()
32 m.block(r,c,nr,nc) *= SCALAR(10); in main()
33 m.block(r,c,nr,nc) -= Mat::constant(nr,nc,10); in main()
34 m.block(r,c,nr,nc) /= SCALAR(10); in main()
/external/clang/test/SemaCXX/
Dcopy-assignment.cpp61 C c, nc; in test() local
82 nc = c; in test()
83 nc = constC; in test()
84 nc = 1; in test()
85 nc = 1L; in test()
86 nc = 1.0; // expected-error{{use of overloaded operator '=' is ambiguous}} in test()
87 nc += 1; in test()
88 nc += 1L; in test()
89 nc += 1.0; // expected-error{{use of overloaded operator '+=' is ambiguous}} in test()
Dcxx0x-cursory-default-delete.cpp20 non_copiable nc; in fn1() local
21 non_copiable nc2 = nc; // expected-error {{deleted constructor}} in fn1()
22 nc = nc; // expected-error {{deleted operator}} in fn1()
/external/webrtc/src/modules/audio_processing/utility/
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; in WebRtc_rdft() local
334 nc = ip[1]; in WebRtc_rdft()
335 if (n > (nc << 2)) { in WebRtc_rdft()
336 nc = n >> 2; in WebRtc_rdft()
337 makect(nc, ip, w + nw); in WebRtc_rdft()
[all …]
/external/chromium_org/third_party/opus/src/celt/tests/
Dtest_unit_cwrs32.c102 opus_uint32 nc; in main() local
108 nc=ncwrs_urow(n,k,uu); in main()
110 nc=CELT_PVQ_V(n,k); in main()
112 inc=nc/20000; in main()
114 for(i=0;i<nc;i+=inc){ in main()
150 if(v!=nc){ in main()
152 (long)v,(long)nc); in main()
/external/blktrace/
Dblktrace.c248 struct cl_conn *nc; /* Server network connection */ member
924 static int net_get_header(struct cl_conn *nc, struct blktrace_net_hdr *bnh) in net_get_header() argument
927 int fl = fcntl(nc->fd, F_GETFL); in net_get_header()
929 fcntl(nc->fd, F_SETFL, fl | O_NONBLOCK); in net_get_header()
930 bytes_read = __net_recv_data(nc->fd, bnh, sizeof(*bnh)); in net_get_header()
931 fcntl(nc->fd, F_SETFL, fl & ~O_NONBLOCK); in net_get_header()
1477 struct cl_conn *nc = iop->nc; in fill_ofname() local
1479 len += sprintf(dst + len, "%s-", nc->ch->hostname); in fill_ofname()
2168 struct cl_conn *nc; in ch_add_connection() local
2170 nc = malloc(sizeof(*nc)); in ch_add_connection()
[all …]
/external/chromium_org/base/power_monitor/
Dpower_monitor_device_source_ios.mm12 NSNotificationCenter* nc = [NSNotificationCenter defaultCenter];
14 [nc addObserverForName:UIApplicationWillEnterForegroundNotification
21 [nc addObserverForName:UIApplicationDidEnterBackgroundNotification
32 NSNotificationCenter* nc = [NSNotificationCenter defaultCenter];
35 [nc removeObserver:*it];
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dscanresults.cpp133 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
134 if (nc == NULL) in bssSelected()
136 nc->setWpaGui(wpagui); in bssSelected()
137 nc->paramsFromScanResults(sel); in bssSelected()
138 nc->show(); in bssSelected()
139 nc->exec(); in bssSelected()
/external/chromium_org/build/
Dnocompile.gypi17 # 'nc_testset_1.nc',
18 # 'nc_testset_2.nc',
23 # The .nc files are C++ files that contain code we wish to assert will not
30 # Example .nc file:
52 # The .nc files are actually processed by a python script which executes the
61 'sources/': [['exclude', '\\.nc$']],
72 'extension': 'nc',
92 'sources/': [['exclude', '\\.nc$']]
/external/nist-sip/java/gov/nist/javax/sip/header/
DAuthenticationInfo.java174 String nc = Integer.toHexString(nonceCount); in setNonceCount() local
177 nc = base.substring(0, 8 - nc.length()) + nc; in setNonceCount()
178 this.setParameter(ParameterNames.NC, nc); in setNonceCount()
/external/chromium_org/content/browser/
Ddevice_monitor_mac.mm142 NSNotificationCenter* nc = [NSNotificationCenter defaultCenter];
144 [nc addObserverForName:QTCaptureDeviceWasConnectedNotification
150 [nc addObserverForName:QTCaptureDeviceWasDisconnectedNotification
156 [nc addObserverForName:QTCaptureDeviceAttributeDidChangeNotification
164 NSNotificationCenter* nc = [NSNotificationCenter defaultCenter];
165 [nc removeObserver:device_arrival_];
166 [nc removeObserver:device_removal_];
167 [nc removeObserver:device_change_];
217 NSNotificationCenter* nc = [NSNotificationCenter defaultCenter];
219 [nc addObserverForName:AVFoundationGlue::
[all …]
/external/openssl/crypto/x509v3/
Dv3_ncons.c75 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
239 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc) in NAME_CONSTRAINTS_check() argument
252 r = nc_match(&gntmp, nc); in NAME_CONSTRAINTS_check()
275 r = nc_match(&gntmp, nc); in NAME_CONSTRAINTS_check()
286 r = nc_match(gen, nc); in NAME_CONSTRAINTS_check()
295 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc) in nc_match() argument
304 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++) in nc_match()
306 sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i); in nc_match()
328 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++) in nc_match()
330 sub = sk_GENERAL_SUBTREE_value(nc->excludedSubtrees, i); in nc_match()
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
Dv3_ncons.c75 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
239 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc) in NAME_CONSTRAINTS_check() argument
252 r = nc_match(&gntmp, nc); in NAME_CONSTRAINTS_check()
275 r = nc_match(&gntmp, nc); in NAME_CONSTRAINTS_check()
286 r = nc_match(gen, nc); in NAME_CONSTRAINTS_check()
295 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc) in nc_match() argument
304 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++) in nc_match()
306 sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i); in nc_match()
328 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++) in nc_match()
330 sub = sk_GENERAL_SUBTREE_value(nc->excludedSubtrees, i); in nc_match()
/external/hyphenation/
Dcsutil.c19 int nc; in mystrsep() local
21 nc = (int)((unsigned long)dp - (unsigned long)mp); in mystrsep()
22 rv = (char *) malloc(nc+1); in mystrsep()
23 memcpy(rv,mp,nc); in mystrsep()
24 *(rv+nc) = '\0'; in mystrsep()
/external/chromium/chrome/browser/sync/
DREADME.js1 Overview of chrome://sync-internals
4 This note explains how chrome://sync-internals (also known as
7 Basically, chrome://sync-internals sends asynchronous messages to the
9 chrome://sync-internals, either when replying to messages or when
21 chrome://sync-internals is represented by SyncInternalsUI
/external/jpeg/
Djquant1.c191 int nc = cinfo->out_color_components; /* number of color components */ in select_ncolors() local
204 for (i = 1; i < nc; i++) in select_ncolors()
215 for (i = 0; i < nc; i++) { in select_ncolors()
227 for (i = 0; i < nc; i++) { in select_ncolors()
470 register int nc = cinfo->out_color_components; in color_quantize() local
477 for (ci = 0; ci < nc; ci++) { in color_quantize()
525 int nc = cinfo->out_color_components; in quantize_ord_dither() local
536 for (ci = 0; ci < nc; ci++) { in quantize_ord_dither()
552 input_ptr += nc; in quantize_ord_dither()
626 int nc = cinfo->out_color_components; in quantize_fs_dither() local
[all …]
/external/qemu/distrib/jpeg-6b/
Djquant1.c191 int nc = cinfo->out_color_components; /* number of color components */ in select_ncolors() local
204 for (i = 1; i < nc; i++) in select_ncolors()
215 for (i = 0; i < nc; i++) { in select_ncolors()
227 for (i = 0; i < nc; i++) { in select_ncolors()
470 register int nc = cinfo->out_color_components; in color_quantize() local
477 for (ci = 0; ci < nc; ci++) { in color_quantize()
525 int nc = cinfo->out_color_components; in quantize_ord_dither() local
536 for (ci = 0; ci < nc; ci++) { in quantize_ord_dither()
552 input_ptr += nc; in quantize_ord_dither()
626 int nc = cinfo->out_color_components; in quantize_fs_dither() local
[all …]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/serialization/
DNameCallbackTest.java39 NameCallback nc = new NameCallback("prmpt", "defName"); in getData() local
40 nc.setName("Name"); in getData()
41 return new Object[] { new NameCallback("prompt", "defaultName"), nc }; in getData()
/external/chromium_org/sync/js/
DREADME.js1 Overview of chrome://sync-internals
4 This note explains how chrome://sync-internals (also known as
7 Basically, chrome://sync-internals sends messages to the sync backend
9 also asynchronously raises events which chrome://sync-internals listen
22 chrome://sync-internals is represented by SyncInternalsUI

12345678