Home
last modified time | relevance | path

Searched refs:dstLen (Results 1 – 10 of 10) sorted by relevance

/third_party/icu/icu4c/source/test/perf/normperf/
Dnormperf.h32 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t opti…
261 int32_t ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, U… in ICUNormNFD() argument
262 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status); in ICUNormNFD()
265 int32_t ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, U… in ICUNormNFC() argument
266 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status); in ICUNormNFC()
269 int32_t ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, … in ICUNormNFKD() argument
270 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status); in ICUNormNFKD()
272 int32_t ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, … in ICUNormNFKC() argument
273 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status); in ICUNormNFKC()
276 int32_t ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, U… in ICUNormFCD() argument
[all …]
/third_party/skia/third_party/externals/d3d12allocator/src/
DCommon.cpp104 size_t dstLen = (size_t)::_vscprintf(format, argList); in PrintMessageV() local
105 if(dstLen) in PrintMessageV()
107 bool useSmallBuf = dstLen < CONSOLE_SMALL_BUF_SIZE; in PrintMessageV()
109 std::vector<char> bigBuf(useSmallBuf ? 0 : dstLen + 1); in PrintMessageV()
111 ::vsprintf_s(bufPtr, dstLen + 1, format, argList); in PrintMessageV()
118 size_t dstLen = (size_t)::_vcwprintf(format, argList); in PrintMessageV() local
119 if(dstLen) in PrintMessageV()
121 bool useSmallBuf = dstLen < CONSOLE_SMALL_BUF_SIZE; in PrintMessageV()
123 std::vector<wchar_t> bigBuf(useSmallBuf ? 0 : dstLen + 1); in PrintMessageV()
125 ::vswprintf_s(bufPtr, dstLen + 1, format, argList); in PrintMessageV()
/third_party/icu/icu4c/source/test/perf/convperf/
Dconvperf.h159 UINT dstLen; variable
166 dstLen = UPRV_LENGTHOF(dest); in WinANSIToUnicodePerfFunction()
197 int winSize =MultiByteToWideChar(uiCodePage,CONVERSION_FLAGS,src,srcLen,dest,dstLen); in call()
211 UINT dstLen; variable
220 dstLen = UPRV_LENGTHOF(dest); in WinANSIFromUnicodePerfFunction()
252 …int winSize = WideCharToMultiByte(uiCodePage,CONVERSION_FLAGS,src,srcLen,dest,dstLen,NULL, pUsedDe… in call()
280 UINT dstLen; variable
315 dstLen = UPRV_LENGTHOF(dst); in WinIMultiLanguageToUnicodePerfFunction()
320 HRESULT err= pConvToUni->DoConversionToUnicode(src,&srcLen,dst, &dstLen); in call()
336 UINT dstLen; variable
[all …]
/third_party/flutter/skia/src/core/
DSkLatticeIter.cpp82 float dstLen = dstEnd - dstStart; in set_points() local
84 if (srcFixed <= dstLen) { in set_points()
87 scale = (dstLen - ((float) srcFixed)) / ((float) srcScalable); in set_points()
90 scale = dstLen / ((float) srcFixed); in set_points()
99 if (srcFixed <= dstLen) { in set_points()
/third_party/skia/src/core/
DSkLatticeIter.cpp82 float dstLen = dstEnd - dstStart; in set_points() local
84 if (srcFixed <= dstLen) { in set_points()
87 scale = (dstLen - ((float) srcFixed)) / ((float) srcScalable); in set_points()
90 scale = dstLen / ((float) srcFixed); in set_points()
99 if (srcFixed <= dstLen) { in set_points()
/third_party/skia/modules/skunicode/include/
DSkUnicode.h148 …SkDEBUGCODE(int dstLen =) SkUTF::UTF16ToUTF8(utf8.data(), utf8Units, (uint16_t*)utf16, utf16Units); in convertUtf16ToUtf8()
149 SkASSERT(dstLen == utf8Units); in convertUtf16ToUtf8()
167 SkDEBUGCODE(int dstLen =) SkUTF::UTF8ToUTF16(utf16.data(), utf16Units, utf8, utf8Units); in convertUtf8ToUtf16()
168 SkASSERT(dstLen == utf16Units); in convertUtf8ToUtf16()
/third_party/skia/modules/skunicode/src/
DSkUnicode_icu.cpp121 SkDEBUGCODE(int dstLen =) SkUTF::UTF8ToUTF16(utf16.get(), utf16Units, utf8, utf8Units); in makeBidiIterator()
122 SkASSERT(dstLen == utf16Units); in makeBidiIterator()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_read_image.cpp2329 uLongf dstLen = uncompressedSize; in ReadTile() local
2332 &dstLen, in ReadTile()
2359 if (dstLen != uncompressedSize) in ReadTile()
/third_party/icu/icu4c/source/test/cintltst/
Dnucnvtst.c3473 unescape(UChar* dst, int32_t dstLen,const char* src,int32_t srcLen,UErrorCode *status){ in unescape() argument
3479 if((dst==NULL && dstLen>0) || (src==NULL ) || dstLen < -1 || srcLen <-1 ){ in unescape()
3496 if(dstIndex < dstLen){ in unescape()
3499 if(dstIndex<dstLen){ in unescape()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
DvktBindingShaderAccessTests.cpp299 void writeTextureLevelPyramidData (void* dst, deUint32 dstLen, const tcu::TextureLevelPyramid& srcI… in writeTextureLevelPyramidData() argument
357 DE_ASSERT(dstLen == levelOffset); in writeTextureLevelPyramidData()
358 DE_UNREF(dstLen); in writeTextureLevelPyramidData()