Searched refs:conv_bin2ascii (Results 1 – 1 of 1) sorted by relevance
25 # define conv_bin2ascii(a, table) ((table)[(a)&0x3f]) macro33 # define conv_bin2ascii(a, table) ((table)[(a)&0x3f]) macro247 *(t++) = conv_bin2ascii(l >> 18L, table); in evp_encodeblock_int()248 *(t++) = conv_bin2ascii(l >> 12L, table); in evp_encodeblock_int()249 *(t++) = conv_bin2ascii(l >> 6L, table); in evp_encodeblock_int()250 *(t++) = conv_bin2ascii(l, table); in evp_encodeblock_int()256 *(t++) = conv_bin2ascii(l >> 18L, table); in evp_encodeblock_int()257 *(t++) = conv_bin2ascii(l >> 12L, table); in evp_encodeblock_int()258 *(t++) = (i == 1) ? '=' : conv_bin2ascii(l >> 6L, table); in evp_encodeblock_int()