Home
last modified time | relevance | path

Searched refs:toBase64 (Results 1 – 5 of 5) 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/cronet/third_party/icu/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/lottie/sample-compose/src/main/java/com/airbnb/lottie/sample/compose/
DRoute.kt73 private fun String.toBase64() = Base64.encodeToString(toByteArray(), Base64.NO_PADDING or Base64.NO… method
/external/deqp/executor/
DxeTestLogWriter.cpp227 inline Base64Formatter toBase64 (const deUint8* bytes, int numBytes) { return Base64Formatter(bytes… in toBase64() function
271 << toBase64(&image.data[0], (int)image.data.size()) in writeResultItem()
/external/deqp/external/vulkancts/framework/vulkan/generated/vulkansc/
Dvulkan_json_data.hpp281 inline Base64Formatter toBase64(const deUint8* bytes, int numBytes) {return Base64Formatter(bytes, … in toBase64() function
287 …PRINT_SPACE _OUT << "\"" << s << "\"" << " : " << "\"" << toBase64((deUint8*)o, oSize) << "\"" << … in print_void_data()