/third_party/elfutils/tests/ |
H A D | test-nlist.c | 37 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 D | nlist.c | 59 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 D | vf_xbr.c | 222 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 D | res_querydomain.c | 7 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 D | uprinter.cpp | 54 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 D | uprinter.h | 39 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 D | route-change-netlink.c | 32 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 D | bn_mont.c | 92 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 D | bn_mont.c | 92 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 D | jsdocTypeTag.js | 38 var nl; variable 82 var nl: null; variable 119 var nl;
variable 152 var nl;
variable
|
/third_party/eudev/src/libudev/ |
H A D | libudev-monitor.c | 122 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 D | main.c | 16 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 D | main.c | 18 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 D | main-client.c | 16 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 D | lws-state.h | 58 * \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 D | asn1_parse.c | 100 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 D | asn1_parse.c | 100 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 D | minimal-secure-streams.c | 42 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 D | main.c | 36 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 D | ss-s3-main.c | 23 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 D | hp.c | 633 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 D | os390-syscalls.c | 38 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 D | os390-syscalls.c | 38 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 D | unit1652.c | 89 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 D | minimal-http-client-captive-portal.c | 24 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()
|