Home
last modified time | relevance | path

Searched refs:blen (Results 1 – 6 of 6) sorted by relevance

/haiku/src/system/libnetwork/netresolv/nameser/
H A Dns_name.c997 int b, blen, plen, i; in decode_bitstring() local
999 if ((blen = (*cp & 0xff)) == 0) in decode_bitstring()
1000 blen = 256; in decode_bitstring()
1001 plen = (blen + 3) / 4; in decode_bitstring()
1002 plen += (int)sizeof("\\[x/]") + (blen > 99 ? 3 : (blen > 9) ? 2 : 1); in decode_bitstring()
1011 for (b = blen; b > 7; b -= 8, cp++) { in decode_bitstring()
1031 i = SPRINTF((dn, "/%d]", blen)); in decode_bitstring()
1051 int value = 0, count = 0, tbcount = 0, blen = 0; in encode_bitsring() local
1071 blen = (int)strtol(beg_blen, &end_blen, 10); in encode_bitsring()
1123 if (blen > 0) { in encode_bitsring()
[all …]
/haiku/src/tests/add-ons/translators/
H A DTranslatorTestAddOn.cpp37 off_t alen = 0, blen = 0; in CompareStreams() local
44 blen = b.Position(); in CompareStreams()
45 if (alen != blen) in CompareStreams()
/haiku/src/bin/unzip/
H A Dfileio.c268 int blen, flen, tlen; in open_outfile() local
270 blen = strlen(BackupSuffix); in open_outfile()
272 tlen = flen + blen + 6; /* includes space for 5 digits */ in open_outfile()
277 tlen = FILNAMSIZ - 1 - blen; in open_outfile()
302 char *numtail = tname + flen + blen; in open_outfile()
305 switch (tlen - flen - blen - 1) { in open_outfile()
/haiku/src/system/libnetwork/netresolv/net/
H A Dgethnamaddr.c1013 size_t blen; in _dns_gethtbyaddr() local
1081 blen = (size_t)(bf - info->buf); in _dns_gethtbyaddr()
1082 if (blen + info->hp->h_length > info->buflen) in _dns_gethtbyaddr()
1088 if (blen + NS_IN6ADDRSZ > info->buflen) { in _dns_gethtbyaddr()
/haiku/src/system/libroot/posix/glibc/libio/
H A Dstrops.c165 memset (new_buf + pos, 0, blen() - pos);
/haiku/headers/cpp/
H A Dstreambuf.h309 int blen() const { return _IO_buf_end - _IO_buf_base; } in blen() function