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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/GeoIP-1.5.1/libGeoIP/
H A Dbase64.c61 to_uchar (char ch) function
79 *out++ = b64str[(to_uchar (in[0]) >> 2) & 0x3f];
82 *out++ = b64str[((to_uchar (in[0]) << 4)
83 + (--inlen ? to_uchar (in[1]) >> 4 : 0))
89 ? b64str[((to_uchar (in[1]) << 2)
90 + (--inlen ? to_uchar (in[2]) >> 6 : 0))
95 *out++ = inlen ? b64str[to_uchar (in[2]) & 0x3f] : '=';
304 return uchar_in_range (to_uchar (ch)) && 0 <= b64[to_uchar (ch)];
388 *out++ = ((b64[to_uchar (i
[all...]

Completed in 56 milliseconds