HomeSort by relevance Sort by last modified time
    Searched refs:dstLen (Results 1 - 11 of 11) 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 28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
257 int32_t ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
258 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status);
261 int32_t ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
262 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status);
265 int32_t ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
266 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status);
268 int32_t ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
269 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status);
272 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 155 UINT dstLen;
162 dstLen = UPRV_LENGTHOF(dest);
193 int winSize =MultiByteToWideChar(uiCodePage,CONVERSION_FLAGS,src,srcLen,dest,dstLen);
207 UINT dstLen;
216 dstLen = UPRV_LENGTHOF(dest);
248 int winSize = WideCharToMultiByte(uiCodePage,CONVERSION_FLAGS,src,srcLen,dest,dstLen,NULL, pUsedDefaultChar);
276 UINT dstLen;
311 dstLen = UPRV_LENGTHOF(dst);
316 HRESULT err= pConvToUni->DoConversionToUnicode(src,&srcLen,dst, &dstLen);
332 UINT dstLen;
    [all...]
  /build/libs/host/
CopyFile.c 487 int srcLen, dstLen, nameLen;
501 dstLen = strlen(dst);
508 dstFile = malloc(dstLen +1 + nameLen +1);
509 memcpy(dstFile, dst, dstLen);
510 dstFile[dstLen] = FSSEP;
511 memcpy(dstFile + dstLen+1, ent->d_name, nameLen +1);
  /system/core/include/utils/
Unicode.h 167 * the returned pointer will be to the character after dstLen.
169 char16_t* utf8_to_utf16_n(const uint8_t* src, size_t srcLen, char16_t* dst, size_t dstLen);
  /external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
NPP_staging.hpp     [all...]
  /system/core/libutils/
Unicode.cpp 602 char16_t* utf8_to_utf16_n(const uint8_t* src, size_t srcLen, char16_t* dst, size_t dstLen) {
605 const char16_t* const u16end = dst + dstLen;
  /external/opencv3/modules/cudalegacy/src/cuda/
NPP_staging.cu     [all...]
  /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 171 void writeTextureLevelPyramidData (void* dst, deUint32 dstLen, const tcu::TextureLevelPyramid& srcImage, vk::VkImageViewType viewType, std::vector<vk::VkBufferImageCopy>* copySlices)
229 DE_ASSERT(dstLen == levelOffset);
230 DE_UNREF(dstLen);
    [all...]

Completed in 1633 milliseconds