Home
last modified time | relevance | path

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

/openssl/crypto/evp/
H A Dencode.c25 # define conv_bin2ascii(a, table) ((table)[(a)&0x3f]) macro
33 # define conv_bin2ascii(a, table) ((table)[(a)&0x3f]) macro
247 *(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()

Completed in 10 milliseconds