Searched refs:toBase64 (Results 1 – 2 of 2) sorted by relevance
133 toBase64[64]={ variable495 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 …]
229 inline Base64Formatter toBase64 (const deUint8* bytes, int numBytes) { return Base64Formatter(bytes… in toBase64() function273 << toBase64(&image.data[0], (int)image.data.size()) in writeResultItem()