Searched defs:toBase64Table (Results 1 - 1 of 1) sorted by relevance

/external/libvncserver/webclients/novnc/include/
H A Dbase64.js12 toBase64Table : 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='.split(''),
18 var toBase64Table = Base64.toBase64Table;
24 result += toBase64Table[data[i] >> 2];
25 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i + 1] >> 4)];
26 result += toBase64Table[((data[i + 1] & 0x0f) << 2) + (data[i + 2] >> 6)];
27 result += toBase64Table[data[i + 2] & 0x3f];
34 result += toBase64Table[data[j] >> 2];
35 result += toBase64Table[((data[j] & 0x03) << 4) + (data[j + 1] >> 4)];
36 result += toBase64Table[(dat
[all...]

Completed in 144 milliseconds