Home
last modified time | relevance | path

Searched refs:nl (Results 1 - 25 of 161) sorted by relevance

1234567

/third_party/elfutils/tests/
H A Dtest-nlist.c37 struct nlist nl[6] = in main() local
49 if (nlist (".libs/test-nlist", nl) != 0 in main()
50 && nlist ("./test-nlist", nl) != 0) in main()
56 for (cnt = 0; nl[cnt].n_name != NULL; ++cnt) in main()
60 printf ("nl[%d].n_name = \"%s\"\n" in main()
61 "nl[%d].n_value = %ld\n" in main()
62 "nl[%d].n_scnum = %d\n" in main()
63 "nl[%d].n_type = %u\n" in main()
64 "nl[%d].n_sclass = %d\n" in main()
65 "nl[ in main()
[all...]
/third_party/elfutils/libelf/
H A Dnlist.c59 nlist (const char *filename, struct nlist *nl) in nlist() argument
175 while (nl->n_name != NULL && nl->n_name[0] != '\0') in nlist()
181 search.str = nl->n_name; in nlist()
182 found = nlist_fshash_find (table, nl->n_name, 0, &search); in nlist()
187 nl->n_value = found->sym.st_value; in nlist()
188 nl->n_scnum = found->sym.st_shndx; in nlist()
189 nl->n_type = GELF_ST_TYPE (found->sym.st_info); in nlist()
191 nl->n_sclass = 0; in nlist()
192 nl in nlist()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_xbr.c222 const int nl = output->linesize[0] >> 2; in xbr_filter() local
223 const int nl1 = nl + nl; in xbr_filter()
224 const int nl2 = nl1 + nl; in xbr_filter()
282 E[nl] = E[nl + 1] = PE; // 2, 3 in xbr_filter()
284 FILT2(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, 0, 1, nl, nl+1); in xbr_filter()
285 FILT2(PE, PC, PF, PB, PI, PA, PH, PD, PG, I4, A1, I5, H5, A0, D0, B1, C1, F4, C4, G5, G0, nl, 0, nl in xbr_filter()
[all...]
/third_party/musl/src/network/
H A Dres_querydomain.c7 size_t nl = strnlen(name, 255); in res_querydomain() local
9 if (nl+dl+1 > 254) return -1; in res_querydomain()
10 memcpy(tmp, name, nl); in res_querydomain()
11 tmp[nl] = '.'; in res_querydomain()
12 memcpy(tmp+nl+1, domain, dl+1); in res_querydomain()
/third_party/icu/tools/colprobe/
H A Duprinter.cpp54 UPrinter::log(const UnicodeString &string, UBool nl) { in log() argument
56 log(((UnicodeString)string).getTerminatedBuffer(), nl); in log()
61 UPrinter::log(const UChar *string, UBool nl) { in log() argument
64 if(nl) { in log()
72 UPrinter::log(const char *string, UBool nl) {
75 if(nl) {
82 UPrinter::log(const Line *line, UBool nl) { in log() argument
89 if(nl) { in log()
H A Duprinter.h39 void log(const UnicodeString &string, UBool nl = false);
40 void log(const UChar *string, UBool nl = false);
41 //void log(const char *string, UBool nl = false);
42 void log(const Line *line, UBool nl = false);
/third_party/ltp/testcases/network/stress/route/
H A Droute-change-netlink.c32 static struct mnl_socket *nl; variable
172 if (nl) in cleanup()
173 mnl_socket_close(nl); in cleanup()
193 struct mnl_socket *nl; in rtnl_route() local
242 nl = mnl_socket_open(NETLINK_ROUTE); in rtnl_route()
243 if (nl == NULL) in rtnl_route()
247 if (mnl_socket_bind(nl, 0, MNL_SOCKET_AUTOPID) < 0) in rtnl_route()
251 portid = mnl_socket_get_portid(nl); in rtnl_route()
253 if (mnl_socket_sendto(nl, nlh, nlh->nlmsg_len) < 0) in rtnl_route()
257 ret = mnl_socket_recvfrom(nl, bu in rtnl_route()
[all...]
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_mont.c92 int nl, max, i; in bn_from_montgomery_word() local
96 nl = n->top; in bn_from_montgomery_word()
97 if (nl == 0) { in bn_from_montgomery_word()
102 max = (2 * nl); /* carry is stored separately */ in bn_from_montgomery_word()
121 * Add multiples of |n| to |r| until R = 2^(nl * BN_BITS2) divides it. On in bn_from_montgomery_word()
125 for (carry = 0, i = 0; i < nl; i++, rp++) { in bn_from_montgomery_word()
126 v = bn_mul_add_words(rp, np, nl, (rp[0] * n0) & BN_MASK2); in bn_from_montgomery_word()
127 v = (v + carry + rp[nl]) & BN_MASK2; in bn_from_montgomery_word()
128 carry |= (v != rp[nl]); in bn_from_montgomery_word()
129 carry &= (v <= rp[nl]); in bn_from_montgomery_word()
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_mont.c92 int nl, max, i; in bn_from_montgomery_word() local
96 nl = n->top; in bn_from_montgomery_word()
97 if (nl == 0) { in bn_from_montgomery_word()
102 max = (2 * nl); /* carry is stored separately */ in bn_from_montgomery_word()
121 * Add multiples of |n| to |r| until R = 2^(nl * BN_BITS2) divides it. On in bn_from_montgomery_word()
125 for (carry = 0, i = 0; i < nl; i++, rp++) { in bn_from_montgomery_word()
126 v = bn_mul_add_words(rp, np, nl, (rp[0] * n0) & BN_MASK2); in bn_from_montgomery_word()
127 v = (v + carry + rp[nl]) & BN_MASK2; in bn_from_montgomery_word()
128 carry |= (v != rp[nl]); in bn_from_montgomery_word()
129 carry &= (v <= rp[nl]); in bn_from_montgomery_word()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DjsdocTypeTag.js38 var nl; variable
82 var nl: null; variable
119 var nl; variable
152 var nl; variable
/third_party/eudev/src/libudev/
H A Dlibudev-monitor.c122 udev_monitor->snl.nl.nl_pid = snl.nl.nl_pid; in monitor_set_nl_address()
175 udev_monitor->snl.nl.nl_family = AF_NETLINK; in udev_monitor_new_from_netlink_fd()
176 udev_monitor->snl.nl.nl_groups = group; in udev_monitor_new_from_netlink_fd()
179 udev_monitor->snl_destination.nl.nl_family = AF_NETLINK; in udev_monitor_new_from_netlink_fd()
180 udev_monitor->snl_destination.nl.nl_groups = UDEV_MONITOR_UDEV; in udev_monitor_new_from_netlink_fd()
345 udev_monitor->snl_trusted_sender.nl.nl_pid = sender->snl.nl.nl_pid; in udev_monitor_allow_unicast_sender()
582 if (snl.nl.nl_groups == 0) { in udev_monitor_receive_device()
584 if (udev_monitor->snl_trusted_sender.nl in udev_monitor_receive_device()
[all...]
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/
H A Dmain.c16 static lws_state_notify_link_t nl; variable
340 &nl, NULL
393 nl.name = "app"; in main()
394 nl.notify_cb = app_system_state_nf; in main()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-avs/
H A Dmain.c18 static lws_state_notify_link_t nl; variable
302 &nl, NULL
345 nl.name = "app"; in main()
346 nl.notify_cb = app_system_state_nf; in main()
H A Dmain-client.c16 static lws_state_notify_link_t nl; variable
83 &nl, NULL
104 nl.name = "app"; in main()
105 nl.notify_cb = app_system_state_nf; in main()
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-state.h58 * \param nl: the handler to add to the notifier linked-list
66 lws_state_reg_notifier(lws_state_manager_t *mgr, lws_state_notify_link_t *nl);
71 * \param nl: notification hardler to deregister
77 lws_state_reg_deregister(lws_state_notify_link_t *nl);
83 * \param nl: list of notification handlers
91 lws_state_notify_link_t * const *nl);
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dasn1_parse.c100 int nl, hl, j, r; in asn1_parse2() local
171 nl = 0; in asn1_parse2()
245 if (!nl) { in asn1_parse2()
256 nl = 1; in asn1_parse2()
314 if (!nl) { in asn1_parse2()
322 nl = 1; in asn1_parse2()
338 if (!nl) { in asn1_parse2()
/third_party/openssl/crypto/asn1/
H A Dasn1_parse.c100 int nl, hl, j, r; in asn1_parse2() local
171 nl = 0; in asn1_parse2()
245 if (!nl) { in asn1_parse2()
256 nl = 1; in asn1_parse2()
314 if (!nl) { in asn1_parse2()
322 nl = 1; in asn1_parse2()
338 if (!nl) { in asn1_parse2()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-metadata/
H A Dminimal-secure-streams.c42 static lws_state_notify_link_t nl; variable
258 &nl, NULL
320 nl.name = "app"; in main()
321 nl.notify_cb = app_system_state_nf; in main()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-proxy/
H A Dmain.c36 static lws_state_notify_link_t nl; variable
218 &nl, NULL
283 nl.name = "app"; in main()
284 nl.notify_cb = app_system_state_nf; in main()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-sigv4/
H A Dss-s3-main.c23 static lws_state_notify_link_t nl; variable
207 &nl, NULL
267 nl.name = "app"; in main()
268 nl.notify_cb = app_system_state_nf; in main()
/third_party/backends/backend/
H A Dhp.c633 int nl, nargs; in hp_read_config() local
658 nl = strlen (buf); in hp_read_config()
659 while (nl > 0) in hp_read_config()
661 nl--; in hp_read_config()
662 if ( (buf[nl] == ' ') || (buf[nl] == '\t') in hp_read_config()
663 || (buf[nl] == '\r') || (buf[nl] == '\n')) in hp_read_config()
664 buf[nl] = '\0'; in hp_read_config()
/third_party/libuv/src/unix/
H A Dos390-syscalls.c38 struct dirent** nl; in scandir() local
45 nl = NULL; in scandir()
63 nl_copy = uv__realloc(nl, sizeof(*copy) * (count + 1)); in scandir()
69 nl = nl_copy; in scandir()
70 nl[count++] = copy; in scandir()
74 qsort(nl, count, sizeof(struct dirent *), in scandir()
79 *namelist = nl; in scandir()
84 dirent = nl[--count]; in scandir()
87 uv__free(nl); in scandir()
/third_party/node/deps/uv/src/unix/
H A Dos390-syscalls.c38 struct dirent** nl; in scandir() local
45 nl = NULL; in scandir()
63 nl_copy = uv__realloc(nl, sizeof(*copy) * (count + 1)); in scandir()
69 nl = nl_copy; in scandir()
70 nl[count++] = copy; in scandir()
74 qsort(nl, count, sizeof(struct dirent *), in scandir()
79 *namelist = nl; in scandir()
84 dirent = nl[--count]; in scandir()
87 uv__free(nl); in scandir()
/third_party/curl/tests/unit/
H A Dunit1652.c89 char *nl = strchr(info, '\n'); in verify() local
90 if(!nl) in verify()
92 return strncmp(info, two, nl - info); in verify()
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-captive-portal/
H A Dminimal-http-client-captive-portal.c24 static lws_state_notify_link_t nl; variable
271 &nl, NULL
302 nl.name = "app"; in main()
303 nl.notify_cb = app_system_state_nf; in main()

Completed in 12 milliseconds

1234567