Lines Matching defs:xbyte
558 unsigned char xbyte;
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;
1053 if ( (i = read_bytes( sb, &xbyte, 1 )) != 1 ) {
1057 if ( (xbyte & LBER_BIG_TAG_MASK) != LBER_BIG_TAG_MASK ) {
1058 return( (ber_uint_t) xbyte );
1062 tagp[0] = xbyte;
1064 if ( read_bytes( sb, &xbyte, 1 ) != 1 )
1067 tagp[i] = xbyte;
1069 if ( ! (xbyte & LBER_MORE_TAG_MASK) )