Home
last modified time | relevance | path

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

123456

/external/bluetooth/bluez/network/
Dconnection.c101 struct network_conn *nc = list->data; in find_connection() local
103 if (nc->id == id) in find_connection()
104 return nc; in find_connection()
113 struct network_conn *nc = data; in bnep_watchdog_cb() local
118 emit_property_changed(connection, nc->peer->path, in bnep_watchdog_cb()
121 emit_property_changed(connection, nc->peer->path, in bnep_watchdog_cb()
124 emit_property_changed(connection, nc->peer->path, in bnep_watchdog_cb()
127 device_remove_disconnect_watch(nc->peer->device, nc->dc_id); in bnep_watchdog_cb()
128 nc->dc_id = 0; in bnep_watchdog_cb()
129 if (nc->watch) { in bnep_watchdog_cb()
[all …]
/external/clang/include/clang/Basic/
DBuiltinsPTX.def17 BUILTIN(__builtin_ptx_read_tid_x, "i", "nc")
18 BUILTIN(__builtin_ptx_read_tid_y, "i", "nc")
19 BUILTIN(__builtin_ptx_read_tid_z, "i", "nc")
20 BUILTIN(__builtin_ptx_read_tid_w, "i", "nc")
22 BUILTIN(__builtin_ptx_read_ntid_x, "i", "nc")
23 BUILTIN(__builtin_ptx_read_ntid_y, "i", "nc")
24 BUILTIN(__builtin_ptx_read_ntid_z, "i", "nc")
25 BUILTIN(__builtin_ptx_read_ntid_w, "i", "nc")
27 BUILTIN(__builtin_ptx_read_ctaid_x, "i", "nc")
28 BUILTIN(__builtin_ptx_read_ctaid_y, "i", "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")
32 BUILTIN(__builtin_arm_get_fpscr, "Ui", "nc")
33 BUILTIN(__builtin_arm_set_fpscr, "vUi", "nc")
34 BUILTIN(__builtin_arm_vcvtr_f, "ffi", "nc")
35 BUILTIN(__builtin_arm_vcvtr_d, "fdi", "nc")
DBuiltins.def105 BUILTIN(__builtin_huge_val, "d", "nc")
106 BUILTIN(__builtin_huge_valf, "f", "nc")
107 BUILTIN(__builtin_huge_vall, "Ld", "nc")
108 BUILTIN(__builtin_inf , "d" , "nc")
109 BUILTIN(__builtin_inff , "f" , "nc")
110 BUILTIN(__builtin_infl , "Ld" , "nc")
347 BUILTIN(__builtin_isgreater , "i.", "nc")
348 BUILTIN(__builtin_isgreaterequal, "i.", "nc")
349 BUILTIN(__builtin_isless , "i.", "nc")
350 BUILTIN(__builtin_islessequal , "i.", "nc")
[all …]
DBuiltinsX86.def30 BUILTIN(__builtin_ia32_pavgusb, "V8cV8cV8c", "nc")
31 BUILTIN(__builtin_ia32_pf2id, "V2iV2f", "nc")
32 BUILTIN(__builtin_ia32_pfacc, "V2fV2fV2f", "nc")
33 BUILTIN(__builtin_ia32_pfadd, "V2fV2fV2f", "nc")
34 BUILTIN(__builtin_ia32_pfcmpeq, "V2iV2fV2f", "nc")
35 BUILTIN(__builtin_ia32_pfcmpge, "V2iV2fV2f", "nc")
36 BUILTIN(__builtin_ia32_pfcmpgt, "V2iV2fV2f", "nc")
37 BUILTIN(__builtin_ia32_pfmax, "V2fV2fV2f", "nc")
38 BUILTIN(__builtin_ia32_pfmin, "V2fV2fV2f", "nc")
39 BUILTIN(__builtin_ia32_pfmul, "V2fV2fV2f", "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/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.cpp17 non_copiable nc; in fn1() local
18 non_copiable nc2 = nc; // expected-error {{deleted constructor}} in fn1()
19 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/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/wpa_supplicant_6/wpa_supplicant/wpa_gui/
Dscanresults.ui.h94 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
95 if (nc == NULL) in bssSelected()
97 nc->setWpaGui(wpagui); in bssSelected()
98 nc->paramsFromScanResults(sel); in bssSelected()
99 nc->show(); in bssSelected()
100 nc->exec(); in bssSelected()
Dwpagui.ui.h693 NetworkConfig *nc = new NetworkConfig(); in editNetwork() local
694 if (nc == NULL) in editNetwork()
696 nc->setWpaGui(this); in editNetwork()
698 nc->paramsFromConfig(sel.toInt()); in editNetwork()
699 nc->show(); in editNetwork()
700 nc->exec(); in editNetwork()
714 NetworkConfig *nc = new NetworkConfig(); in addNetwork() local
715 if (nc == NULL) in addNetwork()
717 nc->setWpaGui(this); in addNetwork()
718 nc->newNetwork(); in addNetwork()
[all …]
/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/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
Dscanresults.cpp137 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
138 if (nc == NULL) in bssSelected()
140 nc->setWpaGui(wpagui); in bssSelected()
141 nc->paramsFromScanResults(sel); in bssSelected()
142 nc->show(); in bssSelected()
143 nc->exec(); in bssSelected()
/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/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/astl/tests/
Dcommon.h57 NoCopy(const NoCopy& nc) {} in NoCopy()
66 CopyCounter(const CopyCounter& nc) {++mCount;} in CopyCounter()
78 CtorDtorCounter(const CtorDtorCounter& nc) {++mCopyCtorCount;} in CtorDtorCounter() argument
79 CtorDtorCounter& operator=(const CtorDtorCounter& nc) {++mAssignCount; return *this;}
/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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
DTrustAnchorTest.java102 byte[] nc = getEncodingPSOnly(); in testTrustAnchorStringPublicKeybyteArray03()
103 byte[] ncCopy = nc.clone(); in testTrustAnchorStringPublicKeybyteArray03()
110 assertTrue(Arrays.equals(nc, ta.getNameConstraints())); in testTrustAnchorStringPublicKeybyteArray03()
213 byte[] nc = getEncodingPSOnly(); in testTrustAnchorX500PrincipalPublicKeybyteArray03()
214 byte[] ncCopy = nc.clone(); in testTrustAnchorX500PrincipalPublicKeybyteArray03()
222 assertTrue(Arrays.equals(nc, ta.getNameConstraints())); in testTrustAnchorX500PrincipalPublicKeybyteArray03()
/external/openssl/crypto/bn/asm/
Dppc64-mont.pl149 $na="f4"; $nb="f5"; $nc="f6"; $nd="f7";
320 lfd $nc,`$FRAME+48`($sp)
336 fcfid $nc,$nc
393 fmadd $T1a,$N0,$nc,$T1a
395 fmadd $T2a,$N1,$nc,$T2a
397 fmadd $T3a,$N2,$nc,$T3a
399 fmadd $dota,$N3,$nc,$dota
524 fmadd $T1a,$N0,$nc,$T1a
527 fmadd $T2a,$N1,$nc,$T2a
530 fmadd $T3a,$N2,$nc,$T3a
[all …]

123456