HomeSort by relevance Sort by last modified time
    Searched full:blen (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/f2fs-tools/tools/sg_write_buffer/
sg_lib.c 83 /* Want safe, 'n += snprintf(b + n, blen - n, ...)' style sequence of
523 bool only_one, int blen, char * b)
529 if ((NULL == b) || (blen < 1))
531 else if (1 == blen) {
542 n += scnpr(b + n, blen - n, "%sTransport Id short or not "
543 "multiple of 4 [length=%d]:\n", lip, blen);
545 n += scnpr(b + n, blen - n, "%sTransport Id of initiator:\n",
553 n += scnpr(b + n, blen - n, "%s FCP-2 World Wide Name:\n", lip);
555 n += scnpr(b + n, blen - n, "%s [Unexpected TPID format: "
557 n += hex2str(bp + 8, 8, lip, 1, blen - n, b + n)
1615 int len, progress, n, r, pr, rem, blen; local
2696 int i, k, blen; local
2957 int i, k, blen; local
    [all...]
  /external/iproute2/lib/
ll_addr.c 31 const char *ll_addr_n2a(const unsigned char *addr, int alen, int type, char *buf, int blen)
38 return inet_ntop(AF_INET, addr, buf, blen);
41 return inet_ntop(AF_INET6, addr, buf, blen);
43 snprintf(buf, blen, "%02x", addr[0]);
44 for (i = 1, l = 2; i < alen && l < blen; i++, l += 3)
45 snprintf(buf + l, blen - l, ":%02x", addr[i]);
  /external/libcap/libcap/
cap_extint.c 87 int set, blen; local
100 blen = export->length_of_capset;
107 if (bno != blen)
109 if (bno != blen)
111 if (bno != blen)
113 if (bno != blen)
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
comp_corr.c 31 size_t bLen, /* (i) length of buffer */
37 w16ptr=&buffer[bLen-sRange-lag];
40 (*corr)=WebRtcSpl_DotProductWithScale(&buffer[bLen-sRange], w16ptr, sRange, scale);
  /external/icu/icu4c/source/tools/toolutil/
ucm.cpp 54 for(j=0; j<m->bLen; ++j) {
142 if(l->bLen<=r->bLen) {
143 length=l->bLen;
145 length=r->bLen;
149 result=l->bLen-r->bLen;
153 length=l->bLen;
170 return l->bLen-r->bLen;
    [all...]
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 414 size_t blen; local
419 blen = sizeof(buf);
420 if (scard_select_file(scard, SCARD_FILE_EF_DIR, buf, &blen)) {
424 wpa_hexdump(MSG_DEBUG, "SCARD: EF_DIR select", buf, blen);
434 blen = sizeof(buf);
435 if (rlen > (int) blen) {
528 size_t blen; local
632 blen = sizeof(buf);
635 if (_scard_select_file(scard, SCARD_FILE_MF, buf, &blen,
645 blen = sizeof(buf)
900 size_t blen; local
935 size_t blen = len + 3; local
981 size_t blen = len + 3; local
1110 size_t blen, imsilen, i; local
1184 size_t blen; local
    [all...]
edit_readline.c 131 size_t blen = os_strlen(ps) + 3; local
132 char *ps2 = os_malloc(blen);
134 os_snprintf(ps2, blen, "%s> ", ps);
  /external/wpa_supplicant_8/wpa_supplicant/
win_if_list.c 77 size_t blen = sizeof(*b) + 1024; local
84 b = malloc(blen);
89 memset(b, 0, blen);
93 (DWORD) blen, &written, NULL)) {
  /external/toybox/toys/pending/
compress.c 120 int click = bb->bitpos >> 3, blow, blen; local
127 blen = 8-blow;
128 if (blen > bits) blen = bits;
129 result |= ((bb->buf[click] >> blow) & ((1<<blen)-1)) << offset;
130 offset += blen;
131 bits -= blen;
132 bb->bitpos += blen;
150 int click = bb->bitpos >> 3, blow, blen; local
158 blen = 8-blow
162 data >>= blen; local
    [all...]
  /external/scapy/test/
bpf.uts 116 blen = s.get_blen()
117 blen > 0 and type(blen) == int
  /external/icu/icu4c/source/samples/legacy/
newcol.cpp 33 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) {
39 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
oldcol.cpp 34 int32_t getSortKey_legacy(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) {
40 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
  /external/libmicrohttpd/src/microhttpd/
postprocessor.c 201 size_t blen; member in struct:MHD_PostProcessor
279 size_t blen; local
302 blen = strlen (boundary);
303 if ((blen == 0) || (blen * 2 + 2 > buffer_size))
305 if ( (boundary[0] == '"') && (boundary[blen - 1] == '"') )
309 blen -= 2;
313 blen = 0;
326 ret->blen = blen;
    [all...]
  /external/ipsec-tools/src/racoon/
policy.c 444 int blen, i; local
446 blen = sizeof(buf) - 1;
456 i = snprintf(p, blen, "%s/%d[%s ", a, spidx->prefs, b);
457 if (i < 0 || i >= blen)
460 blen -= i;
469 i = snprintf(p, blen, "%s/%d[%s ", a, spidx->prefd, b);
470 if (i < 0 || i >= blen)
473 blen -= i;
475 i = snprintf(p, blen, "proto=%s dir=%s",
481 blen -= i
    [all...]
  /external/libxml2/
nanohttp.c 1361 int blen; local
    [all...]
  /external/iproute2/include/
rt_names.h 26 int type, char *buf, int blen);
  /external/iproute2/ip/
ipila.c 78 size_t blen; local
82 blen = print_addr64(rta_getattr_u32(tb[attr]),
87 blen = 1;
90 for (i = 0; i < space - blen; i++)
  /external/pdfium/third_party/bigint/
NumberlikeArray.hh 76 NumberlikeArray(const Blk *b, Index blen);
158 NumberlikeArray<Blk>::NumberlikeArray(const Blk *b, Index blen)
159 : cap(blen), len(blen) {
  /external/strace/tests/
sendfile.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
107 == (long) blen);
109 sv[1], reg_in, alen, file_size, file_size + 1, blen);
sendfile64.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
100 == (long) blen);
102 sv[1], reg_in, alen, file_size, file_size + 1, blen);
  /external/strace/tests-m32/
sendfile.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
107 == (long) blen);
109 sv[1], reg_in, alen, file_size, file_size + 1, blen);
sendfile64.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
100 == (long) blen);
102 sv[1], reg_in, alen, file_size, file_size + 1, blen);
  /external/strace/tests-mx32/
sendfile.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
107 == (long) blen);
109 sv[1], reg_in, alen, file_size, file_size + 1, blen);
sendfile64.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
100 == (long) blen);
102 sv[1], reg_in, alen, file_size, file_size + 1, blen);
  /external/wpa_supplicant_8/src/crypto/
aes-siv.c 42 static void xorend(u8 *a, int alen, const u8 *b, int blen)
46 if (alen < blen)
49 for (i = 0; i < blen; i++)
50 a[alen - blen + i] ^= b[i];

Completed in 1236 milliseconds

1 2 3 4 5 6