Lines Matching refs:xbyte
558 unsigned char xbyte; in get_tag() local
563 if ( (i = BerRead( sb, (char *) &xbyte, 1 )) != 1 ) { in get_tag()
567 if ( (xbyte & LBER_BIG_TAG_MASK) != LBER_BIG_TAG_MASK ) { in get_tag()
568 return( (ber_uint_t) xbyte ); in get_tag()
572 tagp[0] = xbyte; in get_tag()
574 if ( BerRead( sb, (char *) &xbyte, 1 ) != 1 ) in get_tag()
577 tagp[i] = xbyte; in get_tag()
579 if ( ! (xbyte & LBER_MORE_TAG_MASK) ) in get_tag()
1048 unsigned char xbyte; in get_buffer_tag() local
1053 if ( (i = read_bytes( sb, &xbyte, 1 )) != 1 ) { in get_buffer_tag()
1057 if ( (xbyte & LBER_BIG_TAG_MASK) != LBER_BIG_TAG_MASK ) { in get_buffer_tag()
1058 return( (ber_uint_t) xbyte ); in get_buffer_tag()
1062 tagp[0] = xbyte; in get_buffer_tag()
1064 if ( read_bytes( sb, &xbyte, 1 ) != 1 ) in get_buffer_tag()
1067 tagp[i] = xbyte; in get_buffer_tag()
1069 if ( ! (xbyte & LBER_MORE_TAG_MASK) ) in get_buffer_tag()