Home
last modified time | relevance | path

Searched refs:nl (Results 1 – 25 of 1045) sorted by relevance

12345678910>>...42

/third_party/elfutils/tests/
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()
66 cnt, nl[cnt].n_name, in main()
67 cnt, nl[cnt].n_value, in main()
68 cnt, nl[cnt].n_scnum, in main()
69 cnt, nl[cnt].n_type, in main()
70 cnt, nl[cnt].n_sclass, in main()
71 cnt, nl[cnt].n_numaux); in main()
[all …]
Drun-addr2line-test.sh21 tempfiles good.out stdin.nl stdin.nl.out stdin.nonl stdin.nonl.out foo.out
46 cat > stdin.nl <<\EOF
58 cat stdin.nl | testrun ${abs_top_builddir}/src/addr2line -f -e testfile > stdin.nl.out || exit 1
59 cmp good.out stdin.nl.out || exit 1
71 echo -n "foo" | testrun ${abs_top_builddir}/src/addr2line -f -e testfile > stdin.nl.out || exit 1
107 cat stdin.nl | testrun ${abs_top_builddir}/src/addr2line -a -f -e testfile > stdin.nl.out || exit 1
108 cmp good.addr.out stdin.nl.out || exit 1
/third_party/elfutils/libelf/
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->n_numaux = 0; in nlist()
197 nl->n_value = 0; in nlist()
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_xbr.c223 const int nl = output->linesize[0] >> 2; in xbr_filter() local
224 const int nl1 = nl + nl; in xbr_filter()
225 const int nl2 = nl1 + nl; in xbr_filter()
283 E[nl] = E[nl + 1] = PE; // 2, 3 in xbr_filter()
285 …E, 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()
286 …E, PC, PF, PB, PI, PA, PH, PD, PG, I4, A1, I5, H5, A0, D0, B1, C1, F4, C4, G5, G0, nl, 0, nl+1, 1); in xbr_filter()
287 …E, PA, PB, PD, PC, PG, PF, PH, PI, C1, G0, C4, F4, G5, H5, D0, A0, B1, A1, I4, I5, nl+1, nl, 1, 0); in xbr_filter()
288 …E, PG, PD, PH, PA, PI, PB, PF, PC, A0, I5, A1, B1, I4, F4, H5, G5, D0, G0, C1, C4, 1, nl+1, 0, nl); in xbr_filter()
291 E[nl] = E[nl+1] = E[nl+2] = // 3, 4, 5 in xbr_filter()
294 … PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, 0, 1, 2, nl, nl+1, nl+2, nl1, nl1+1, … in xbr_filter()
[all …]
/third_party/musl/src/network/
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/typescript/tests/baselines/reference/
DliteralTypeWidening.types402 >code : "fr" | "en" | "es" | "it" | "nl"
404 const langCodeSet = Set('fr', 'en', 'es', 'it', 'nl')
405 >langCodeSet : Record<"fr" | "en" | "es" | "it" | "nl", true>
406 >Set('fr', 'en', 'es', 'it', 'nl') : Record<"fr" | "en" | "es" | "it" | "nl", true>
412 >'nl' : "nl"
415 >LangCode : "fr" | "en" | "es" | "it" | "nl"
416 >langCodeSet : Record<"fr" | "en" | "es" | "it" | "nl", true>
419 >langCodes : ("fr" | "en" | "es" | "it" | "nl")[]
420 >keys(langCodeSet) : ("fr" | "en" | "es" | "it" | "nl")[]
422 >langCodeSet : Record<"fr" | "en" | "es" | "it" | "nl", true>
[all …]
DjsdocTypeTag.js38 var nl; variable
82 var nl: null; variable
119 var nl; variable
152 var nl; variable
/third_party/freetype/docs/reference/assets/javascripts/lunr/min/
Dlunr.nl.min.js18nl=function(){this.pipeline.reset(),this.pipeline.add(r.nl.trimmer,r.nl.stopWordFilter,r.nl.stemme… function
/third_party/openssl/crypto/bn/
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()
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()
130 rp[nl] = v; in bn_from_montgomery_word()
[all …]
/third_party/icu/tools/colprobe/
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()
82 UPrinter::log(const Line *line, UBool nl) { in log() argument
89 if(nl) { in log()
Duprinter.h39 void log(const UnicodeString &string, UBool nl = FALSE);
40 void log(const UChar *string, UBool nl = FALSE);
42 void log(const Line *line, UBool nl = FALSE);
/third_party/ltp/testcases/network/stress/route/
Droute-change-netlink.c34 static struct mnl_socket *nl; variable
174 if (nl) in cleanup()
175 mnl_socket_close(nl); in cleanup()
195 struct mnl_socket *nl; in rtnl_route() local
244 nl = mnl_socket_open(NETLINK_ROUTE); in rtnl_route()
245 if (nl == NULL) in rtnl_route()
249 if (mnl_socket_bind(nl, 0, MNL_SOCKET_AUTOPID) < 0) in rtnl_route()
253 portid = mnl_socket_get_portid(nl); in rtnl_route()
255 if (mnl_socket_sendto(nl, nlh, nlh->nlmsg_len) < 0) in rtnl_route()
259 ret = mnl_socket_recvfrom(nl, buf, sizeof(buf)); in rtnl_route()
[all …]
/third_party/libnl/
Dbackport-lib-add-include-netlink-private-nl-auto-h-header.patch4 Subject: [PATCH] lib: add "include/netlink-private/nl-auto.h" header
11 include/netlink-private/nl-auto.h | 60 +++++++++++++++++++++++++++++++
14 create mode 100644 include/netlink-private/nl-auto.h
24 + include/netlink-private/nl-auto.h \
28 diff --git a/include/netlink-private/nl-auto.h b/include/netlink-private/nl-auto.h
32 +++ b/include/netlink-private/nl-auto.h
121 +#include "nl-auto.h"
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-avs/
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()
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()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/
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-sigv4/
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/libuv/src/unix/
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/libwebsockets/include/libwebsockets/
Dlws-state.h66 lws_state_reg_notifier(lws_state_manager_t *mgr, lws_state_notify_link_t *nl);
77 lws_state_reg_deregister(lws_state_notify_link_t *nl);
91 lws_state_notify_link_t * const *nl);
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-proxy/
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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/data/
DlocaleMatcherTest.txt421 @supported=mul, nl
422 af >> nl # af => nl
424 nl >> mul # but nl !=> af
427 @supported=mul, nl
428 af >> nl
430 nl >> mul
451 en-US, ar, nl, de, ja >> en
455 en-US, ar, nl, de, ja >> en
529 …t, iw, ja, ka, kk, km, kn, ko, ky, lo, lt, lv, mk, ml, mn, mr, ms, my, ne, nl, no, pa, pl, pt, pt-…
532 …-NA, nb, nb-NO, nb-SJ, nd, nd-ZW, ne, ne-IN, ne-NP, nl, nl-AW, nl-BE, nl-BQ, nl-CW, nl-NL, nl-SR,
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/util/data/
DlocaleMatcherTest.txt421 @supported=mul, nl
422 af >> nl # af => nl
424 nl >> mul # but nl !=> af
427 @supported=mul, nl
428 af >> nl
430 nl >> mul
451 en-US, ar, nl, de, ja >> en
455 en-US, ar, nl, de, ja >> en
529 …t, iw, ja, ka, kk, km, kn, ko, ky, lo, lt, lv, mk, ml, mn, mr, ms, my, ne, nl, no, pa, pl, pt, pt-…
532 …-NA, nb, nb-NO, nb-SJ, nd, nd-ZW, ne, ne-IN, ne-NP, nl, nl-AW, nl-BE, nl-BQ, nl-CW, nl-NL, nl-SR,
[all …]
/third_party/icu/icu4c/source/test/testdata/
DlocaleMatcherTest.txt421 @supported=mul, nl
422 af >> nl # af => nl
424 nl >> mul # but nl !=> af
427 @supported=mul, nl
428 af >> nl
430 nl >> mul
451 en-US, ar, nl, de, ja >> en
455 en-US, ar, nl, de, ja >> en
529 …t, iw, ja, ka, kk, km, kn, ko, ky, lo, lt, lv, mk, ml, mn, mr, ms, my, ne, nl, no, pa, pl, pt, pt-…
532 …-NA, nb, nb-NO, nb-SJ, nd, nd-ZW, ne, ne-IN, ne-NP, nl, nl-AW, nl-BE, nl-BQ, nl-CW, nl-NL, nl-SR,
[all …]
/third_party/gstreamer/gstplugins_base/tests/files/
Dlicense-uris3 http://creativecommons.org/licenses/by/1.0/nl/
18 http://creativecommons.org/licenses/by/2.0/nl/
46 http://creativecommons.org/licenses/by/2.5/nl/
60 http://creativecommons.org/licenses/by-nc/1.0/nl/
75 http://creativecommons.org/licenses/by-nc/2.0/nl/
103 http://creativecommons.org/licenses/by-nc/2.5/nl/
128 http://creativecommons.org/licenses/by-nc-nd/2.0/nl/
156 http://creativecommons.org/licenses/by-nc-nd/2.5/nl/
170 http://creativecommons.org/licenses/by-nc-sa/1.0/nl/
185 http://creativecommons.org/licenses/by-nc-sa/2.0/nl/
[all …]
/third_party/libffi/
Ddepcomp110 nl='
241 tr ' ' "$nl" < "$tmpdepfile" \
275 tr ' ' "$nl" < "$tmpdepfile" \
277 | tr "$nl" ' ' >> "$depfile"
280 tr ' ' "$nl" < "$tmpdepfile" \
612 tr ' ' "$nl" < "$tmpdepfile" \
670 | tr ' ' "$nl" \

12345678910>>...42