Searched refs:toBase64 (Results 1 – 1 of 1) sorted by relevance
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
D | gbemu.js | 218 var toBase64 = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q"… variable 242 …4 += toBase64[bytes[0] >> 2] + toBase64[((bytes[0] & 0x3) << 4) | (bytes[1] >> 4)] + toBase64[((by… 249 base64[base64.length - 3] = toBase64[(bytes[0] & 0x3) << 4]; 252 base64[base64.length - 2] = toBase64[(bytes[1] & 0xF) << 2];
|