Home
last modified time | relevance | path

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

/openbsd/usr.sbin/tcpdump/
H A Dprint-snmp.c361 #define ASN_BIT8 0x80 macro
426 for (id = 0; *p & ASN_BIT8 && len > 0; len--, hdr++, p++) { in asn1_parse()
429 id = (id << 7) | (*p & ~ASN_BIT8); in asn1_parse()
431 if (len == 0 && *p & ASN_BIT8) { in asn1_parse()
454 if (elem->asnlen & ASN_BIT8) { in asn1_parse()
455 int noct = elem->asnlen % ASN_BIT8; in asn1_parse()
516 if (*p & ASN_BIT8) /* negative */ in asn1_parse()
682 o = (o << ASN_SHIFT7) + (*p & ~ASN_BIT8); in asn1_print()