Searched refs:toBase64 (Results 1 – 5 of 5) 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 …]
73 private fun String.toBase64() = Base64.encodeToString(toByteArray(), Base64.NO_PADDING or Base64.NO… method
227 inline Base64Formatter toBase64 (const deUint8* bytes, int numBytes) { return Base64Formatter(bytes… in toBase64() function271 << toBase64(&image.data[0], (int)image.data.size()) in writeResultItem()
281 inline Base64Formatter toBase64(const deUint8* bytes, int numBytes) {return Base64Formatter(bytes, … in toBase64() function287 …PRINT_SPACE _OUT << "\"" << s << "\"" << " : " << "\"" << toBase64((deUint8*)o, oSize) << "\"" << … in print_void_data()