/external/icu4c/test/cintltst/ |
D | custrtrn.c | 1167 int32_t reqLen= 0 ; in Test_UChar_WCHART_API() local 1195 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in Test_UChar_WCHART_API() 1199 wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen+1)); in Test_UChar_WCHART_API() 1200 wDestLen = reqLen+1; in Test_UChar_WCHART_API() 1201 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in Test_UChar_WCHART_API() 1205 u_strFromWCS(uDest, uDestLen,&reqLen,wDest,reqLen,&err); in Test_UChar_WCHART_API() 1210 uDest = (UChar*) malloc(sizeof(UChar) * (reqLen+1)); in Test_UChar_WCHART_API() 1211 uDestLen = reqLen + 1; in Test_UChar_WCHART_API() 1212 u_strFromWCS(uDest, uDestLen,&reqLen,wDest,reqLen,&err); in Test_UChar_WCHART_API() 1244 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in Test_UChar_WCHART_API() [all …]
|
D | nfsprep.c | 216 int32_t pLen=0, sLen=0, reqLen=0, in nfs4_mixed_prepare() local 258 reqLen = pLen+sLen+1 /* for the delimiter */; in nfs4_mixed_prepare() 259 if(dest != NULL && reqLen <= destCapacity){ in nfs4_mixed_prepare() 276 return u_terminateChars(dest, destCapacity, reqLen, status); in nfs4_mixed_prepare()
|
D | capitst.c | 1965 uint32_t reqLen = 0; in TestMergeSortKeys() local 1967 reqLen = ucol_mergeSortkeys(prefixKey, prefixKeyLen, suffixKey, suffixKeyLen, smallBuf, 3); in TestMergeSortKeys() 1968 if(reqLen != (prefixKeyLen+suffixKeyLen)) { in TestMergeSortKeys()
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
D | custrtrn.c | 1167 int32_t reqLen= 0 ; in Test_UChar_WCHART_API() local 1195 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in Test_UChar_WCHART_API() 1199 wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen+1)); in Test_UChar_WCHART_API() 1200 wDestLen = reqLen+1; in Test_UChar_WCHART_API() 1201 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in Test_UChar_WCHART_API() 1205 u_strFromWCS(uDest, uDestLen,&reqLen,wDest,reqLen,&err); in Test_UChar_WCHART_API() 1210 uDest = (UChar*) malloc(sizeof(UChar) * (reqLen+1)); in Test_UChar_WCHART_API() 1211 uDestLen = reqLen + 1; in Test_UChar_WCHART_API() 1212 u_strFromWCS(uDest, uDestLen,&reqLen,wDest,reqLen,&err); in Test_UChar_WCHART_API() 1244 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in Test_UChar_WCHART_API() [all …]
|
D | nfsprep.c | 216 int32_t pLen=0, sLen=0, reqLen=0, in nfs4_mixed_prepare() local 258 reqLen = pLen+sLen+1 /* for the delimiter */; in nfs4_mixed_prepare() 259 if(dest != NULL && reqLen <= destCapacity){ in nfs4_mixed_prepare() 276 return u_terminateChars(dest, destCapacity, reqLen, status); in nfs4_mixed_prepare()
|
D | capitst.c | 1891 uint32_t reqLen = 0; in TestMergeSortKeys() local 1893 reqLen = ucol_mergeSortkeys(prefixKey, prefixKeyLen, suffixKey, suffixKeyLen, smallBuf, 3); in TestMergeSortKeys() 1894 if(reqLen != (prefixKeyLen+suffixKeyLen-1)) { in TestMergeSortKeys()
|
/external/chromium_org/third_party/icu/source/test/perf/normperf/ |
D | normperf.cpp | 75 int32_t reqLen = 0; in normalizeInput() local 79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); in normalizeInput() 82 dest->name = new UChar[reqLen+1]; in normalizeInput() 83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status); in normalizeInput() 84 dest->len=reqLen; in normalizeInput() 92 int32_t reqLen = 0; in normalizeInput() local 97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); in normalizeInput() 100 dest = new UChar[reqLen+1]; in normalizeInput() 101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status); in normalizeInput() 102 len=reqLen; in normalizeInput()
|
/external/icu4c/test/perf/normperf/ |
D | normperf.cpp | 75 int32_t reqLen = 0; in normalizeInput() local 79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); in normalizeInput() 82 dest->name = new UChar[reqLen+1]; in normalizeInput() 83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status); in normalizeInput() 84 dest->len=reqLen; in normalizeInput() 92 int32_t reqLen = 0; in normalizeInput() local 97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); in normalizeInput() 100 dest = new UChar[reqLen+1]; in normalizeInput() 101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status); in normalizeInput() 102 len=reqLen; in normalizeInput()
|
/external/icu4c/test/perf/ustrperf/ |
D | stringperf.h | 278 int32_t reqLen= 0 ; in prepareBulkForStd() local 282 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen,&err); in prepareBulkForStd() 286 wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen)); in prepareBulkForStd() 287 wDestLen = reqLen; in prepareBulkForStd() 288 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen,&err); in prepareBulkForStd() 299 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in prepareBulkForStd() 303 wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen+1)); in prepareBulkForStd() 304 wDestLen = reqLen+1; in prepareBulkForStd() 305 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in prepareBulkForStd()
|
/external/chromium_org/third_party/icu/source/test/perf/ustrperf/ |
D | stringperf.h | 276 int32_t reqLen= 0 ; in prepareBulkForStd() local 280 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen,&err); in prepareBulkForStd() 284 wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen)); in prepareBulkForStd() 285 wDestLen = reqLen; in prepareBulkForStd() 286 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen,&err); in prepareBulkForStd() 297 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in prepareBulkForStd() 301 wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen+1)); in prepareBulkForStd() 302 wDestLen = reqLen+1; in prepareBulkForStd() 303 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err); in prepareBulkForStd()
|
/external/valgrind/main/coregrind/m_aspacemgr/ |
D | aspacemgr-linux.c | 1802 Addr reqLen = req->len; in VG_() local 1913 if (floatIdx == -1 && holeLen >= reqLen) in VG_()
|