Home
last modified time | relevance | path

Searched refs:InputLength (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DBase64.cpp43 const uint64_t InputLength = Input.size(); in decodeBase64() local
44 if (InputLength == 0) in decodeBase64()
48 if ((InputLength % 4) != 0) in decodeBase64()
52 const uint64_t FirstValidEqualIdx = InputLength - 2; in decodeBase64()
54 for (uint64_t Idx = 0; Idx < InputLength; Idx += 4) { in decodeBase64()
88 if (Input[InputLength - 2] == '=') in decodeBase64()