Home
last modified time | relevance | path

Searched refs:llen (Results 1 – 25 of 42) sorted by relevance

12

/third_party/toybox/toys/posix/
Dcpio.c227 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 …]
Dcksum.c55 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/
Dwpa_debug.c520 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/
Dwpa_debug.c518 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/
Dghostutils.c474 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/
Dlistxattr01.c36 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/
Dflistxattr01.c37 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/
Dllistxattr01.c39 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/
Dctrl_iface_udp.c510 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,
Dctrl_iface_named_pipe.c483 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/
Dctrl_iface_udp.c530 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,
Dctrl_iface_named_pipe.c486 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/
DSSL_export_keying_material.pod14 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/
Ddot.mkshrc47 llen=${%line}
48 (( llen == -1 )) && llen=${#line}
49 (( llen = llen ? (llen + COLUMNS - 1) / COLUMNS : 1 ))
50 if (( (curlin += llen) >= LINES )); then
54 curlin=$llen
Dmisc.c1707 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/
Dt1_enc.c524 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()
Dtls13_enc.c781 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/
Drsa.h153 # define EVP_PKEY_CTX_set0_rsa_oaep_label(ctx, l, llen) \ argument
155 EVP_PKEY_CTRL_RSA_OAEP_LABEL, llen, (void *)(l))
Dtls1.h226 const char *label, size_t llen,
239 size_t llen,
/third_party/icu/icu4j/perf-tests/data/collation/
DTestRandomWordsUDHR_de.txt254 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/
Dpop3.c713 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()
Dsmtp.c902 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()
Dimap.c923 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/
Dlz4hc.c1356 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/
Dsphinx.po158 #~ msgstr "Gratis dokumentations hysning erhållen av"

12