Searched refs:xbyte (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/lib/libldap4/ber/
H A Ddecode.c68 unsigned char xbyte; local
73 if ( ber_read( ber, (char *) &xbyte, 1 ) != 1 )
76 if ( (xbyte & LBER_BIG_TAG_MASK) != LBER_BIG_TAG_MASK )
77 return( (unsigned int) xbyte );
80 tagp[0] = xbyte;
82 if ( ber_read( ber, (char *) &xbyte, 1 ) != 1 )
85 tagp[i] = xbyte;
87 if ( ! (xbyte & LBER_MORE_TAG_MASK) )
H A Dio.c535 unsigned char xbyte; local
540 if ( BerRead( sb, (char *) &xbyte, 1 ) != 1 )
543 if ( (xbyte & LBER_BIG_TAG_MASK) != LBER_BIG_TAG_MASK )
544 return( (unsigned int) xbyte );
547 tagp[0] = xbyte;
549 if ( BerRead( sb, (char *) &xbyte, 1 ) != 1 )
552 tagp[i] = xbyte;
554 if ( ! (xbyte & LBER_MORE_TAG_MASK) )
/osnet-11/usr/src/lib/libldap5/sources/ldap/ber/
H A Dio.c558 unsigned char xbyte; local
563 if ( (i = BerRead( sb, (char *) &xbyte, 1 )) != 1 ) {
567 if ( (xbyte & LBER_BIG_TAG_MASK) != LBER_BIG_TAG_MASK ) {
568 return( (ber_uint_t) xbyte );
572 tagp[0] = xbyte;
574 if ( BerRead( sb, (char *) &xbyte, 1 ) != 1 )
577 tagp[i] = xbyte;
579 if ( ! (xbyte & LBER_MORE_TAG_MASK) )
1048 unsigned char xbyte; local
1053 if ( (i = read_bytes( sb, &xbyte,
[all...]
H A Ddecode.c55 unsigned char xbyte; local
60 if ( ber_read( ber, (char *) &xbyte, 1 ) != 1 )
63 if ( (xbyte & LBER_BIG_TAG_MASK) != LBER_BIG_TAG_MASK )
64 return( (ber_uint_t) xbyte );
67 tagp[0] = xbyte;
69 if ( ber_read( ber, (char *) &xbyte, 1 ) != 1 )
72 tagp[i] = xbyte;
74 if ( ! (xbyte & LBER_MORE_TAG_MASK) )
/osnet-11/usr/src/lib/libkmf/ber_der/common/
H A Ddecode.c67 unsigned char xbyte; local
72 if (kmfber_read(ber, (char *)&xbyte, 1) != 1)
75 if ((xbyte & KMFBER_BIG_TAG_MASK) != KMFBER_BIG_TAG_MASK)
76 return ((ber_uint_t)xbyte);
79 tagp[0] = xbyte;
81 if (kmfber_read(ber, (char *)&xbyte, 1) != 1)
84 tagp[i] = xbyte;
86 if (! (xbyte & KMFBER_MORE_TAG_MASK))

Completed in 276 milliseconds