Searched refs:concat (Results 1 - 3 of 3) sorted by relevance

/haiku/src/kits/support/
H A DBase64.cpp28 uint32 concat; local
35 concat = ((in[i] & 0xff) << 16);
38 concat |= ((in[i+1] & 0xff) << 8);
40 concat |= (in[i+2] & 0xff);
44 out[k++] = kBase64Alphabet[(concat >> 18) & 63];
45 out[k++] = kBase64Alphabet[(concat >> 12) & 63];
46 out[k++] = kBase64Alphabet[(concat >> 6) & 63];
47 out[k++] = kBase64Alphabet[concat & 63];
75 uint32 concat, value; local
81 concat
[all...]
/haiku/src/libs/stdc++/legacy/
H A Dlibiberty.h48 extern char *concat PARAMS ((const char *, ...));
/haiku/src/kits/mail/
H A DMailComponent.cpp315 BString concat; local
334 concat << key << ": ";
335 concat.CapitalizeEachWord();
337 concat.Append(allocd, utf8_to_rfc2047(&allocd, strlen(value),
340 FoldLineAtWhiteSpaceAndAddCRLF(concat);
342 amountWritten = render_to->Write(concat.String(), concat.Length());
345 concat = "";

Completed in 49 milliseconds