Searched refs:InputLength (Results 1 – 2 of 2) sorted by relevance
43 const uint64_t InputLength = Input.size(); in decodeBase64() local44 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()
144 size_t InputLength = Source.size(); in convertString() local145 const char *In = InputLength ? const_cast<char *>(Source.data()) : ""; in convertString()164 Output = InputLength ? static_cast<char *>(Result.data()) : nullptr; in convertString()166 In + InputLength, /*pivotStart=*/NULL, in convertString()273 size_t InputLength = Source.size(); in convertString() local274 char *Input = const_cast<char *>(InputLength ? Source.data() : ""); in convertString()275 Ret = iconv(ConvDesc, &Input, &InputLength, &Output, &OutputLength); in convertString()