HomeSort by relevance Sort by last modified time
    Searched defs:llen (Results 1 - 19 of 19) sorted by null

  /external/toybox/toys/posix/
cksum.c 55 uint64_t llen = 0, llen2; local
67 llen += len;
73 llen2 = llen;
75 while (llen) {
76 crc = cksum(crc, llen);
77 llen >>= 8;
cpio.c 227 ssize_t llen; local
243 llen = sprintf(toybuf,
249 xwrite(afd, toybuf, llen);
253 llen = (llen + nlen) & 3;
254 if (llen) xwrite(afd, &zero, 4-llen);
257 llen = st.st_size;
259 if (readlink(name, toybuf, sizeof(toybuf)-1) == llen)
260 xwrite(afd, toybuf, llen);
    [all...]
  /external/iputils/ninfod/
ninfod_name.c 172 int llen, ii; local
177 llen = e - &name[i];
178 if (llen == 0) {
186 if (llen >= 0x40)
188 buf[i] = llen;
189 for (ii = 0; ii < llen; ii++) {
192 if (ii == 0 || ii == llen-1) {
199 i += llen + 1;
  /external/libcap-ng/libcap-ng-0.7/utils/
netcap.c 165 int llen; local
170 if ((llen = readlink(ln, line, sizeof(line)-1)) < 0)
172 line[llen] = 0;
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_udp.c 509 int llen; local
524 llen = os_strlen(levelstr);
525 sbuf = os_malloc(llen + len);
529 os_memcpy(sbuf, levelstr, llen);
530 os_memcpy(sbuf + llen, buf, len);
546 if (sendto(sock, sbuf, llen + len, 0,
ctrl_iface_named_pipe.c 483 int llen; local
492 llen = os_strlen(levelstr);
493 sbuf = os_malloc(llen + len);
497 os_memcpy(sbuf, levelstr, llen);
498 os_memcpy(sbuf + llen, buf, len);
506 if (!WriteFile(dst->pipe, sbuf, llen + len, &written,
  /external/curl/lib/
pop3.c 698 size_t llen; local
720 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen);
721 if(mechbit && llen == wordlen)
    [all...]
smtp.c 744 size_t llen; local
766 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen);
767 if(mechbit && llen == wordlen)
    [all...]
imap.c 910 size_t llen; local
917 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen);
918 if(mechbit && llen == wordlen)
    [all...]
  /external/wpa_supplicant_8/src/utils/
wpa_debug.c 397 size_t i, llen; local
449 llen = len > line_len ? line_len : len;
451 for (i = 0; i < llen; i++)
453 for (i = llen; i < line_len; i++)
456 for (i = 0; i < llen; i++) {
462 for (i = llen; i < line_len; i++)
465 pos += llen;
466 len -= llen;
482 llen = len > line_len ? line_len : len;
484 for (i = 0; i < llen; i++
    [all...]
  /external/pdfium/third_party/libtiff/
tif_pixarlog.c 760 int llen; local
783 llen = sp->stride * td->td_imagewidth;
845 * if llen is not an exact multiple of nsamples, the decode operation
849 if (nsamples % llen) {
852 "%lu, data truncated.", (unsigned long) llen, (unsigned long) nsamples);
853 nsamples -= nsamples % llen;
856 for (i = 0; i < nsamples; i += llen, up += llen) {
859 horizontalAccumulateF(up, llen, sp->stride,
861 op += llen * sizeof(float)
1126 int llen; local
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-omap3/
dss.h 97 u32 llen; /* 0x1C */ member in struct:venc_regs
  /external/lz4/lib/
lz4hc.c 1186 int const llen = (int)(ip - anchor); local
    [all...]
  /external/mksh/src/
misc.c 1655 int llen; local
    [all...]
  /external/openssh/
sftp.c 1685 u_int y, m = 0, width = 80, columns = 1, colspace = 0, llen; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
stringobject.c 4015 Py_ssize_t llen; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
stringobject.c 3995 Py_ssize_t llen; local
    [all...]
  /external/python/cpython2/Objects/
stringobject.c 4012 Py_ssize_t llen; local
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 14153 Py_ssize_t llen; local
    [all...]

Completed in 1056 milliseconds