HomeSort by relevance Sort by last modified time
    Searched refs:dstLen (Results 1 - 10 of 10) sorted by null

  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclwstrings.swg 22 int dstLen = sizeof(wchar_t)*(len + 1);
23 char *dst = %new_array(dstLen, char);
30 dstLen, &srcRead, &dstWrote, &dstChars);
50 int dstLen = (int)(size*sizeof(Tcl_UniChar));
51 char *dst = %new_array(dstLen, char);
59 dstLen, &srcRead, &dstWrote, &dstChars);
  /external/icu/icu4c/source/test/perf/normperf/
normperf.h 32 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
261 int32_t ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
262 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status);
265 int32_t ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
266 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status);
269 int32_t ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
270 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status);
272 int32_t ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
273 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status);
276 int32_t ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status)
    [all...]
  /external/icu/icu4c/source/test/perf/convperf/
convperf.h 159 UINT dstLen;
166 dstLen = UPRV_LENGTHOF(dest);
197 int winSize =MultiByteToWideChar(uiCodePage,CONVERSION_FLAGS,src,srcLen,dest,dstLen);
211 UINT dstLen;
220 dstLen = UPRV_LENGTHOF(dest);
252 int winSize = WideCharToMultiByte(uiCodePage,CONVERSION_FLAGS,src,srcLen,dest,dstLen,NULL, pUsedDefaultChar);
280 UINT dstLen;
315 dstLen = UPRV_LENGTHOF(dst);
320 HRESULT err= pConvToUni->DoConversionToUnicode(src,&srcLen,dst, &dstLen);
336 UINT dstLen;
    [all...]
  /system/core/libutils/include/utils/
Unicode.h 158 * if you wanted to add one). At most dstLen characters are written; it won't emit half a surrogate
159 * pair. If dstLen == 0 nothing is written and dst is returned. If dstLen > SSIZE_MAX it aborts
163 const uint8_t* src, size_t srcLen, char16_t* dst, size_t dstLen);
166 * Convert UTF-8 to UTF-16 including surrogate pairs. At most dstLen - 1
168 * after. dstLen - 1 can be measured beforehand using utf8_to_utf16_length. Aborts if dstLen == 0
169 * (at least one character is needed for the NUL terminator) or dstLen > SSIZE_MAX (the latter
174 const uint8_t* src, size_t srcLen, char16_t* dst, size_t dstLen);
  /external/skia/src/core/
SkLatticeIter.cpp 83 float dstLen = dstEnd - dstStart;
85 if (srcFixed <= dstLen) {
88 scale = (dstLen - ((float) srcFixed)) / ((float) srcScalable);
91 scale = dstLen / ((float) srcFixed);
100 if (srcFixed <= dstLen) {
  /build/make/tools/libhost/
CopyFile.c 490 int srcLen, dstLen, nameLen;
504 dstLen = strlen(dst);
511 dstFile = malloc(dstLen +1 + nameLen +1);
512 memcpy(dstFile, dst, dstLen);
513 dstFile[dstLen] = FSSEP;
514 memcpy(dstFile + dstLen+1, ent->d_name, nameLen +1);
  /system/core/libutils/
Unicode.cpp 613 const uint8_t* src, size_t srcLen, char16_t* dst, size_t dstLen) {
614 if (dstLen == 0) {
618 LOG_ALWAYS_FATAL_IF(dstLen > SSIZE_MAX, "dstLen is %zu", dstLen);
621 const char16_t* const u16end = dst + dstLen;
  /external/dng_sdk/source/
dng_read_image.cpp     [all...]
  /external/icu/icu4c/source/test/cintltst/
nucnvtst.c     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/binding_model/
vktBindingShaderAccessTests.cpp 296 void writeTextureLevelPyramidData (void* dst, deUint32 dstLen, const tcu::TextureLevelPyramid& srcImage, vk::VkImageViewType viewType, std::vector<vk::VkBufferImageCopy>* copySlices)
354 DE_ASSERT(dstLen == levelOffset);
355 DE_UNREF(dstLen);
    [all...]

Completed in 622 milliseconds