Searched refs:bit_length (Results 1 - 4 of 4) sorted by relevance

/freebsd-10-stable/contrib/tcpdump/
H A Dprint-eigrp.c219 u_int tlen,eigrp_tlv_len,eigrp_tlv_type,tlv_tlen, byte_length, bit_length; local
327 bit_length = tlv_ptr.eigrp_tlv_ip_int->plen;
328 if (bit_length > 32) {
329 printf("\n\t illegal prefix length %u",bit_length);
332 byte_length = (bit_length + 7) / 8; /* variable length encoding */
338 bit_length);
356 bit_length = tlv_ptr.eigrp_tlv_ip_ext->plen;
357 if (bit_length > 32) {
358 printf("\n\t illegal prefix length %u",bit_length);
361 byte_length = (bit_length
[all...]
H A Dprint-isoclns.c1971 u_int metric, status_byte, bit_length, byte_length, sublen, processed, subtlvtype, subtlvlen; local
1983 bit_length = status_byte&0x3f;
1984 if (bit_length > 32) {
1987 bit_length);
1996 bit_length=*(tptr++);
1997 if (bit_length > 128) {
2000 bit_length);
2008 byte_length = (bit_length + 7) / 8; /* prefix has variable length encoding */
2021 bit_length);
2027 bit_length);
[all...]
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c2358 static int create_decode_tables(uint8_t* bit_length, argument
2371 lc[bit_length[i] & 15]++;
2390 uint8_t clen = bit_length[i] & 15;
2473 uint8_t bit_length[HUFF_BC], local
2512 bit_length[w++] = ESCAPE;
2519 bit_length[w++] = 0;
2523 bit_length[w++] = value;
2530 ret = create_decode_tables(bit_length, &rar->cstate.bd, HUFF_BC);
/freebsd-10-stable/contrib/gdb/gdb/
H A Dgdbtypes.c791 LONGEST low_bound, high_bound, bit_length; local
806 bit_length = high_bound - low_bound + 1;
808 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;

Completed in 462 milliseconds