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

/freebsd-9.3-release/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-9.3-release/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 146 milliseconds