Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Ducnv_u7.cpp133 toBase64[64]={ variable
495 U_ASSERT(bits<=UPRV_LENGTHOF(toBase64)); in _UTF7FromUnicodeWithOffsets()
569 *target++=toBase64[bits]; in _UTF7FromUnicodeWithOffsets()
601 *target++=toBase64[c>>10]; in _UTF7FromUnicodeWithOffsets()
603 *target++=toBase64[(c>>4)&0x3f]; in _UTF7FromUnicodeWithOffsets()
612 cnv->charErrorBuffer[0]=toBase64[(c>>4)&0x3f]; in _UTF7FromUnicodeWithOffsets()
620 *target++=toBase64[bits|(c>>14)]; in _UTF7FromUnicodeWithOffsets()
622 *target++=toBase64[(c>>8)&0x3f]; in _UTF7FromUnicodeWithOffsets()
624 *target++=toBase64[(c>>2)&0x3f]; in _UTF7FromUnicodeWithOffsets()
635 cnv->charErrorBuffer[0]=toBase64[(c>>2)&0x3f]; in _UTF7FromUnicodeWithOffsets()
[all …]
/external/deqp/executor/
DxeTestLogWriter.cpp229 inline Base64Formatter toBase64 (const deUint8* bytes, int numBytes) { return Base64Formatter(bytes… in toBase64() function
273 << toBase64(&image.data[0], (int)image.data.size()) in writeResultItem()