Lines Matching full:1
33 …encodedRes[i + 1] = base64CharSet[(inputString[j] & 0x03) << 4 | (inputString[j + 1] & 0xf0) >> 4]; in Base64Encode()
35 …encodedRes[i + 2] = base64CharSet[(inputString[j + 1] & 0x0f) << 2 | (inputString[j + 2] & 0xc0) >… in Base64Encode()
40 case 1: in Base64Encode()
42 encodedRes[encodedRes.length() - 1] = '='; in Base64Encode()
45 encodedRes[encodedRes.length() - 1] = '='; in Base64Encode()
56 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, in Base64Decode()
57 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, in Base64Decode()
58 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, in Base64Decode()
59 -1, -1, -1, -1, -1, -1, -1, in Base64Decode()
61 -1, -1, -1, in Base64Decode()
64 -1, -1, -1, -1, -1, -1, -1, in Base64Decode()
65 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, in Base64Decode()
67 -1, -1, -1, -1, -1, -1, in Base64Decode()
86 secondChar = decodeTable[static_cast<unsigned char>(base64String[i + 1])]; in Base64Decode()
90 if (firstChar == -1 || secondChar == -1) { in Base64Decode()
95 if (j == decodedStrLen - 1) { in Base64Decode()
98 if (thirdChar == -1) { in Base64Decode()
102 decodedRes[j + 1] = (secondChar << 4) | (thirdChar >> 2); in Base64Decode()
103 if (j + 1 == decodedStrLen - 1) { in Base64Decode()
106 if (fourthChar == -1) { in Base64Decode()