Home
last modified time | relevance | path

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

/titanic_41/usr/src/cmd/picl/plugins/sun4v/lib/snmp/
H A Dasn1.c57 buf[1] = (uchar_t)(ASN_LONG_LEN | 0x02); /* following 2 octets */ in asn_build_sequence()
101 buf[0] = (uchar_t)(ASN_LONG_LEN | 0x01); in asn_build_length()
113 buf[0] = (uchar_t)(ASN_LONG_LEN | 0x02); in asn_build_length()
411 if ((buf[0] & ASN_LONG_LEN) == 0) { in asn_parse_length()
421 if (buf[0] == (uchar_t)ASN_LONG_LEN) in asn_parse_length()
428 n_length_octets = buf[0] & ~ASN_LONG_LEN; in asn_parse_length()
H A Dasn1.h118 #define ASN_LONG_LEN ((uchar_t)0x80) macro