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

  /external/icu4c/test/cintltst/
custrtrn.c     [all...]
nfsprep.c 216 int32_t pLen=0, sLen=0, reqLen=0,
258 reqLen = pLen+sLen+1 /* for the delimiter */;
259 if(dest != NULL && reqLen <= destCapacity){
276 return u_terminateChars(dest, destCapacity, reqLen, status);
capitst.c     [all...]
  /external/icu4c/test/perf/normperf/
normperf.cpp 75 int32_t reqLen = 0;
79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
82 dest->name = new UChar[reqLen+1];
83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status);
84 dest->len=reqLen;
92 int32_t reqLen = 0;
97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
100 dest = new UChar[reqLen+1];
101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status)
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
assocSM.c 126 TI_STATUS assoc_smRequestBuild(assoc_t *pCtx, TI_UINT8* reqBuf, TI_UINT32* reqLen);
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Assoc/
assocSM.c 127 TI_STATUS assoc_smRequestBuild(assoc_t *pCtx, UINT8* reqBuf, UINT32* reqLen);
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
assocSM.c 125 TI_STATUS assoc_smRequestBuild(assoc_t *pCtx, TI_UINT8* reqBuf, TI_UINT32* reqLen);
    [all...]
  /external/icu4c/test/perf/ustrperf/
stringperf.h 276 int32_t reqLen= 0 ;
280 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen,&err);
284 wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen));
285 wDestLen = reqLen;
286 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen,&err);
297 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err);
301 wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen+1));
302 wDestLen = reqLen+1;
303 u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err);

Completed in 742 milliseconds