Searched refs:inputLength (Results 1 - 5 of 5) sorted by relevance

/haiku/src/kits/locale/
H A DTextEncoding.cpp64 BTextEncoding::Decode(const char* input, size_t& inputLength, char* output, argument
73 outputLength = std::min(inputLength, outputLength);
74 inputLength = outputLength;
75 memcpy(output, input, inputLength);
88 &base, input + inputLength, NULL, NULL, NULL, NULL, FALSE, TRUE,
91 // inputLength is set to the number of bytes consumed. We may not use all of
93 inputLength = base - input;
104 BTextEncoding::Encode(const char* input, size_t& inputLength, char* output, argument
113 outputLength = std::min(inputLength, outputLength);
114 inputLength
[all...]
/haiku/headers/os/locale/
H A DTextEncoding.h32 status_t Encode(const char* input, size_t& inputLength,
34 status_t Decode(const char* input, size_t& inputLength,
/haiku/src/add-ons/kernel/debugger/qrencode/
H A Dmodule.cpp87 int inputLength)
100 while (inputLength > 0 && position < encodeLength) {
133 inputLength--;
160 int inputLength = strlen(source); local
162 while (inputLength > 0) {
166 source, encodeLength, inputLength);
173 copyCount = inputLength < encodeLength ? inputLength : encodeLength;
187 inputLength -= copyCount;
189 bool doContinue = print_qrcode(qrCode, inputLength >
86 encode_url(const char* query, const char* data, int encodeLength, int inputLength) argument
[all...]
/haiku/src/bin/
H A Dfstrim.cpp107 ssize_t inputLength; local
117 inputLength = getline(&buffer, &bufferSize, stdin);
121 if (inputLength == -1) {
/haiku/src/kits/mail/
H A Dmail_util.cpp754 int inputLength = string.Length(); local
765 if (lineStartIndex + maxLineLength >= inputLength) {
766 if (lineStartIndex < inputLength) {
768 inputLength - lineStartIndex /* count */,
780 if (tempIndex > inputLength)
781 tempIndex = inputLength;
805 if (lineStartIndex < inputLength) {
807 inputLength - lineStartIndex /* count */,

Completed in 95 milliseconds