/third_party/toybox/toys/posix/ |
D | cpio.c | 227 ssize_t llen; in cpio_main() local 243 llen = sprintf(toybuf, in cpio_main() 249 xwrite(afd, toybuf, llen); in cpio_main() 253 llen = (llen + nlen) & 3; in cpio_main() 254 if (llen) xwrite(afd, &zero, 4-llen); in cpio_main() 257 llen = st.st_size; in cpio_main() 259 if (readlink(name, toybuf, sizeof(toybuf)-1) == llen) in cpio_main() 260 xwrite(afd, toybuf, llen); in cpio_main() 262 } else while (llen) { in cpio_main() 263 nlen = llen > sizeof(toybuf) ? sizeof(toybuf) : llen; in cpio_main() [all …]
|
D | cksum.c | 55 uint64_t llen = 0, llen2; in do_cksum() local 67 llen += len; in do_cksum() 73 llen2 = llen; in do_cksum() 75 while (llen) { in do_cksum() 76 crc = cksum(crc, llen); in do_cksum() 77 llen >>= 8; in do_cksum()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
D | wpa_debug.c | 520 size_t i, llen; in _wpa_hexdump_ascii() 570 llen = len > line_len ? line_len : len; in _wpa_hexdump_ascii() 572 for (i = 0; i < llen; i++) in _wpa_hexdump_ascii() 574 for (i = llen; i < line_len; i++) in _wpa_hexdump_ascii() 577 for (i = 0; i < llen; i++) { in _wpa_hexdump_ascii() 583 for (i = llen; i < line_len; i++) in _wpa_hexdump_ascii() 586 pos += llen; in _wpa_hexdump_ascii() 587 len -= llen; in _wpa_hexdump_ascii() 606 llen = len > line_len ? line_len : len; in _wpa_hexdump_ascii() 608 for (i = 0; i < llen; i++) in _wpa_hexdump_ascii() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
D | wpa_debug.c | 518 size_t i, llen; in _wpa_hexdump_ascii() 570 llen = len > line_len ? line_len : len; in _wpa_hexdump_ascii() 572 for (i = 0; i < llen; i++) in _wpa_hexdump_ascii() 574 for (i = llen; i < line_len; i++) in _wpa_hexdump_ascii() 577 for (i = 0; i < llen; i++) { in _wpa_hexdump_ascii() 583 for (i = llen; i < line_len; i++) in _wpa_hexdump_ascii() 586 pos += llen; in _wpa_hexdump_ascii() 587 len -= llen; in _wpa_hexdump_ascii() 603 llen = len > line_len ? line_len : len; in _wpa_hexdump_ascii() 605 for (i = 0; i < llen; i++) in _wpa_hexdump_ascii() [all …]
|
/third_party/glib/glib/ |
D | ghostutils.c | 474 gssize llen, oldlen; in g_hostname_to_ascii() local 519 llen = p - label; in g_hostname_to_ascii() 526 if (!punycode_encode (label, llen, out)) in g_hostname_to_ascii() 530 g_string_append_len (out, label, llen); in g_hostname_to_ascii() 535 label += llen; in g_hostname_to_ascii() 680 gssize llen; in g_hostname_to_unicode() local 692 llen = idna_end_of_label (hostname) - hostname; in g_hostname_to_unicode() 696 llen -= IDNA_ACE_PREFIX_LEN; in g_hostname_to_unicode() 697 if (!punycode_decode (hostname, llen, out)) in g_hostname_to_unicode() 706 gchar *canonicalized = nameprep (hostname, llen, &unicode); in g_hostname_to_unicode() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/listxattr/ |
D | listxattr01.c | 36 static int has_attribute(const char *list, int llen, const char *attr) in has_attribute() argument 40 for (i = 0; i < llen; i += strlen(list + i) + 1) { in has_attribute()
|
/third_party/ltp/testcases/kernel/syscalls/flistxattr/ |
D | flistxattr01.c | 37 static int has_attribute(const char *list, int llen, const char *attr) in has_attribute() argument 41 for (i = 0; i < llen; i += strlen(list + i) + 1) { in has_attribute()
|
/third_party/ltp/testcases/kernel/syscalls/llistxattr/ |
D | llistxattr01.c | 39 static int has_attribute(const char *list, int llen, const char *attr) in has_attribute() argument 43 for (i = 0; i < llen; i += strlen(list + i) + 1) { in has_attribute()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | ctrl_iface_udp.c | 510 int llen; local 525 llen = os_strlen(levelstr); 526 sbuf = os_malloc(llen + len); 530 os_memcpy(sbuf, levelstr, llen); 531 os_memcpy(sbuf + llen, buf, len); 547 if (sendto(sock, sbuf, llen + len, 0,
|
D | ctrl_iface_named_pipe.c | 483 int llen; in wpa_supplicant_ctrl_iface_send() local 492 llen = os_strlen(levelstr); in wpa_supplicant_ctrl_iface_send() 493 sbuf = os_malloc(llen + len); in wpa_supplicant_ctrl_iface_send() 497 os_memcpy(sbuf, levelstr, llen); in wpa_supplicant_ctrl_iface_send() 498 os_memcpy(sbuf + llen, buf, len); in wpa_supplicant_ctrl_iface_send() 506 if (!WriteFile(dst->pipe, sbuf, llen + len, &written, in wpa_supplicant_ctrl_iface_send()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | ctrl_iface_udp.c | 530 int llen; local 545 llen = os_strlen(levelstr); 546 sbuf = os_malloc(llen + len); 550 os_memcpy(sbuf, levelstr, llen); 551 os_memcpy(sbuf + llen, buf, len); 567 if (sendto(sock, sbuf, llen + len, 0,
|
D | ctrl_iface_named_pipe.c | 486 int llen; in wpa_supplicant_ctrl_iface_send() local 495 llen = os_strlen(levelstr); in wpa_supplicant_ctrl_iface_send() 496 sbuf = os_malloc(llen + len); in wpa_supplicant_ctrl_iface_send() 500 os_memcpy(sbuf, levelstr, llen); in wpa_supplicant_ctrl_iface_send() 501 os_memcpy(sbuf + llen, buf, len); in wpa_supplicant_ctrl_iface_send() 509 if (!WriteFile(dst->pipe, sbuf, llen + len, &written, in wpa_supplicant_ctrl_iface_send()
|
/third_party/openssl/doc/man3/ |
D | SSL_export_keying_material.pod | 14 const char *label, size_t llen, 19 const char *label, size_t llen, 58 B<label> and should be B<llen> bytes long. Typically this will be a value from
|
/third_party/mksh/ |
D | dot.mkshrc | 47 llen=${%line} 48 (( llen == -1 )) && llen=${#line} 49 (( llen = llen ? (llen + COLUMNS - 1) / COLUMNS : 1 )) 50 if (( (curlin += llen) >= LINES )); then 54 curlin=$llen
|
D | misc.c | 1707 int llen; in do_realpath() local 1823 llen = readlink(Xstring(xs, xp), ldest, pathlen); in do_realpath() 1824 if (llen < 0) in do_realpath() 1827 ldest[llen] = '\0'; in do_realpath() 1913 llen = errno; in do_realpath() 1917 errno = llen; in do_realpath()
|
/third_party/openssl/ssl/ |
D | t1_enc.c | 524 const char *label, size_t llen, in tls1_export_keying_material() argument 537 vallen = llen + SSL3_RANDOM_SIZE * 2; in tls1_export_keying_material() 546 memcpy(val + currentvalpos, (unsigned char *)label, llen); in tls1_export_keying_material() 547 currentvalpos += llen; in tls1_export_keying_material()
|
D | tls13_enc.c | 781 const char *label, size_t llen, in tls13_export_keying_material() argument 809 (const unsigned char *)label, llen, in tls13_export_keying_material() 823 const char *label, size_t llen, in tls13_export_keying_material_early() argument 872 (const unsigned char *)label, llen, in tls13_export_keying_material_early()
|
/third_party/openssl/include/openssl/ |
D | rsa.h | 153 # define EVP_PKEY_CTX_set0_rsa_oaep_label(ctx, l, llen) \ argument 155 EVP_PKEY_CTRL_RSA_OAEP_LABEL, llen, (void *)(l))
|
D | tls1.h | 226 const char *label, size_t llen, 239 size_t llen,
|
/third_party/icu/icu4j/perf-tests/data/collation/ |
D | TestRandomWordsUDHR_de.txt | 254 erfüllen ihre schützen 482 Zielen erfüllen 786 Vereinten erfüllen 1290 erniedrigender erfüllen 2139 innerstaatliche Mann erfüllen 2767 erfüllen Persönlichkeit 2776 Eigentum erfüllen sowie 3244 erfüllen Welt 3416 internationalem erfüllen genommen 3464 erfüllen unschuldig verhängt [all …]
|
/third_party/curl/lib/ |
D | pop3.c | 713 size_t llen; in pop3_state_capa_resp() local 735 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen); in pop3_state_capa_resp() 736 if(mechbit && llen == wordlen) in pop3_state_capa_resp()
|
D | smtp.c | 902 size_t llen; in smtp_state_ehlo_resp() local 924 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen); in smtp_state_ehlo_resp() 925 if(mechbit && llen == wordlen) in smtp_state_ehlo_resp()
|
D | imap.c | 923 size_t llen; in imap_state_capability_resp() local 930 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen); in imap_state_capability_resp() 931 if(mechbit && llen == wordlen) in imap_state_capability_resp()
|
/third_party/lz4/lib/ |
D | lz4hc.c | 1356 int const llen = (int)(ip - anchor); in LZ4HC_compress_optimal() local 1379 int const cost = LZ4HC_literalsPrice(llen + rPos); in LZ4HC_compress_optimal() 1382 opt[rPos].litlen = llen + rPos; in LZ4HC_compress_optimal() 1393 int const cost = LZ4HC_sequencePrice(llen, mlen); in LZ4HC_compress_optimal() 1396 opt[mlen].litlen = llen; in LZ4HC_compress_optimal()
|
/third_party/nghttp2/doc/_themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/ |
D | sphinx.po | 158 #~ msgstr "Gratis dokumentations hysning erhållen av"
|