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

1 2 3 4

  /external/dropbear/libtomcrypt/src/pk/asn1/der/bit/
der_decode_bit_string.c 32 unsigned long dlen, blen, x, y; local
77 blen = ((dlen - 1) << 3) - (in[x++] & 7);
80 if (blen > *outlen) {
81 *outlen = blen;
86 for (y = 0; y < blen; y++) {
94 *outlen = blen;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
perfect.c 27 0..*blen*-1. A fast hash function determines both a and b
156 ub4 blen, /* length of tabb */
164 memset((void *)tabb, 0, (size_t)(sizeof(bstuff)*blen));
197 ub4 blen, /* (a,b) has b in 0..blen-1, a power of 2 */
203 if (phash_log2(alen)+phash_log2(blen) > UB4BITS)
213 mykey->b_k = state[1]&(blen-1);
224 alen-1, blen-1);
228 ub4 loga = phash_log2(alen); /* log based 2 of blen */
235 mykey->b_k = (blen > 1) ? hash&(blen-1) : 0
    [all...]
genperf.c 79 ub4 blen, /* b in 0..blen-1, power of 2 */
84 if (blen >= USE_SCRAMBLE) {
103 if (blen > 0) {
105 if (smax <= UB1MAXVAL+1 || blen >= USE_SCRAMBLE)
111 if (blen < 16) {
112 for (i=0; i<blen; ++i)
114 } else if (blen <= 1024) {
115 for (i=0; i<blen; i+=16)
125 } else if (blen < USE_SCRAMBLE)
161 ub4 blen; \/* b in 0..blen-1, a power of 2 *\/ local
    [all...]
perfect.h 19 #define USE_SCRAMBLE 4096 /* use scramble if blen >= USE_SCRAMBLE */
124 void findhash(bstuff **tabb, hstuff **tabh, ub4 *alen, ub4 *blen, ub4 *salt,
129 int inithex(key *keys, ub4 nkeys, ub4 alen, ub4 blen, ub4 smax, ub4 salt,
  /external/iproute2/lib/
ll_addr.c 32 const char *ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen)
39 return inet_ntop(AF_INET, addr, buf, blen);
42 return inet_ntop(AF_INET6, addr, buf, blen);
47 snprintf(buf+l, blen, "%02x", addr[i]);
48 blen -= 2;
51 snprintf(buf+l, blen, ":%02x", addr[i]);
52 blen -= 3;
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 401 size_t blen; local
404 blen = sizeof(buf);
405 if (scard_select_file(scard, SCARD_FILE_EF_DIR, buf, &blen)) {
409 wpa_hexdump(MSG_DEBUG, "SCARD: EF_DIR select", buf, blen);
419 blen = sizeof(buf);
420 if (rlen > (int) blen) {
509 size_t blen; local
613 blen = sizeof(buf);
618 if (_scard_select_file(scard, SCARD_FILE_MF, buf, &blen,
632 blen = sizeof(buf)
883 size_t blen; local
918 size_t blen = len + 3; local
964 size_t blen = len + 3; local
1093 size_t blen, imsilen, i; local
1167 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);
wpabuf.c 271 size_t blen; local
276 blen = wpabuf_len(buf);
277 if (blen >= len)
282 os_memset(wpabuf_put(ret, len - blen), 0, len - blen);
  /external/svox/pico/lib/
picodata.c 53 picoos_uint16 *blen);
57 picoos_uint16 *blen, const picoos_uint8 issd);
83 picoos_uint16 *blen);
87 picoos_uint16 *blen, const picoos_uint8 issd);
178 picoos_uint16 *blen, const picoos_uint8 issd)
183 *blen = 0;
192 *blen = PICODATA_ITEM_HEADSIZE + (picoos_uint8)(this->buf[((this->front) +
201 for (i=0; i<*blen; i++) {
206 *blen = 0;
211 if (*blen > this->len) { /* item in cb not complete? *
    [all...]
  /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/grub/netboot/
sk_g16.h 146 volatile short blen; /* Buffer Length (two's complement) */ member in struct:rmd
164 unsigned short blen; /* Buffer Length (two's complement) */ member in struct:tmd
  /bionic/libc/netbsd/nameser/
ns_name.c 801 int b, blen, plen, i; local
803 if ((blen = (*cp & 0xff)) == 0)
804 blen = 256;
805 plen = (blen + 3) / 4;
806 plen += sizeof("\\[x/]") + (blen > 99 ? 3 : (blen > 9) ? 2 : 1);
815 for (b = blen; b > 7; b -= 8, cp++) {
835 i = SPRINTF((dn, "/%d]", blen));
854 int value = 0, count = 0, tbcount = 0, blen = 0; local
865 if (!isxdigit((*cp) & 0xff)) /* reject '\[x/BLEN]' */
    [all...]
  /external/iproute2/include/
rt_names.h 24 const char *ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen);
  /external/openssh/
auth2-hostbased.c 63 u_int alen, blen, slen; local
72 pkblob = packet_get_string(&blen);
93 key = key_from_blob(pkblob, blen);
113 buffer_put_string(&b, pkblob, blen);
ssh-pkcs11-client.c 109 u_int blen, slen = 0; local
117 if (key_to_blob(&key, &blob, &blen) == 0)
121 buffer_put_string(&msg, blob, blen);
188 u_int blen; local
205 blob = buffer_get_string(&msg, &blen);
207 k = key_from_blob(blob, blen);
auth2-pubkey.c 74 u_int alen, blen, slen; local
86 pkblob = packet_get_string(&blen);
88 buffer_append(&b, pkblob, blen);
94 pkblob = packet_get_string(&blen);
103 key = key_from_blob(pkblob, blen);
136 buffer_put_string(&b, pkblob, blen);
163 packet_put_string(pkblob, blen);
ssh-pkcs11-helper.c 120 u_int blen; local
130 key_to_blob(keys[i], &blob, &blen);
131 buffer_put_string(&msg, blob, blen);
170 u_int blen, dlen, slen = 0; local
175 blob = get_string(&blen);
179 if ((key = key_from_blob(blob, blen)) != NULL) {
  /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/chromium_org/third_party/libxml/src/
nanohttp.c 1345 int blen, ret; local
    [all...]
  /external/libxml2/
nanohttp.c 1343 int blen; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bss_mem.c 172 int blen; local
188 blen=bm->length;
189 if (BUF_MEM_grow_clean(bm,blen+inl) != (blen+inl))
191 memcpy(&(bm->data[blen]),in,inl);
  /external/openssl/crypto/bio/
bss_mem.c 172 int blen; local
188 blen=bm->length;
189 if (BUF_MEM_grow_clean(bm,blen+inl) != (blen+inl))
191 memcpy(&(bm->data[blen]),in,inl);
  /bionic/libc/stdio/
fvwrite.c 111 size_t blen = fp->_p - fp->_bf._base; local
119 } while (_size < (int)(blen + len));
126 fp->_p = _base + blen;
  /external/chromium_org/third_party/openssl/openssl/crypto/dh/
dhtest.c 103 int i,alen,blen,aout,bout,ret=1; local
178 blen=DH_size(b);
179 bbuf=(unsigned char *)OPENSSL_malloc(blen);
  /external/openssl/crypto/dh/
dhtest.c 103 int i,alen,blen,aout,bout,ret=1; local
178 blen=DH_size(b);
179 bbuf=(unsigned char *)OPENSSL_malloc(blen);

Completed in 1866 milliseconds

1 2 3 4