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

/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dbase64.c51 static const char base64tab[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
69 six-bit units which are treated as lookups into base64tab for the
82 calculating the addresses within base64tab. */
83 out[0] = base64tab[part0 >> 2];
84 out[1] = base64tab[((part0 & 3) << 4) | (part1 >> 4)];
85 out[2] = base64tab[((part1 & 0xf) << 2) | (part2 >> 6)];
86 out[3] = base64tab[part2 & 0x3f];
307 been decoded from base64tab into the range 0..63. The four
50 static const char base64tab[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \\ variable

Completed in 69 milliseconds