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

  /external/icu4c/test/cintltst/
cformtst.c 56 int32_t resultlength, resultlengthneeded; local
60 resultlength=0;
61 resultlengthneeded=udat_format(dat, d1, NULL, resultlength, NULL, &status);
65 resultlength=resultlengthneeded+1;
66 result1=(UChar*)ctst_malloc(sizeof(UChar) * resultlength);
67 udat_format(dat, d1, result1, resultlength, NULL, &status);
cmsgtst.c 105 int32_t resultLengthOut,resultlength,i, patternlength; local
113 resultlength=1;
120 resultLengthOut=u_formatMessage( "en_US",testCasePatterns[i], patternlength, result, resultlength,
125 resultlength=resultLengthOut+1;
126 result=(UChar*)realloc(result,sizeof(UChar) * resultlength);
127 u_formatMessage( "en_US",testCasePatterns[i], patternlength, result, resultlength,
151 resultlength=0;
152 resultLengthOut=u_formatMessageWithError( "en_US",testCasePatterns[i], patternlength, result, resultlength,
157 resultlength=resultLengthOut+1;
158 result=(UChar*)malloc(sizeof(UChar) * resultlength);
272 int32_t resultLengthOut, resultlength; local
373 int32_t resultLengthOut, resultlength; local
475 int32_t resultLengthOut, resultlength; local
569 int32_t resultLengthOut, resultlength; local
664 int32_t resultlength,resultLengthOut; local
734 int32_t resultlength,resultLengthOut; local
873 int32_t resultLengthOut,resultlength,i, patternlength; local
    [all...]
cdattst.c 68 int32_t resultlength; local
152 resultlength=0;
153 resultlengthneeded=udat_format(def, d, NULL, resultlength, NULL, &status);
157 resultlength=resultlengthneeded+1;
162 result=(UChar*)malloc(sizeof(UChar) * resultlength);
163 udat_format(def, d, result, resultlength, NULL, &status);
265 resultlength=0;
266 resultlengthneeded=udat_toPattern(def1, FALSE, NULL, resultlength, &status);
270 resultlength=resultlengthneeded + 1;
271 result=(UChar*)malloc(sizeof(UChar) * resultlength);
534 int32_t resultlength; local
866 int32_t resultlength, resultlengthout; local
900 int32_t resultlength, resultlengthout; local
942 int32_t resultlength, resultlengthout; local
995 int32_t resultlength, resultlengthneeded; local
    [all...]
cnumtst.c 151 int32_t resultlength; local
255 resultlength=0;
257 resultlengthneeded=unum_format(cur_def, l, NULL, resultlength, &pos1, &status);
261 resultlength=resultlengthneeded+1;
262 result=(UChar*)malloc(sizeof(UChar) * resultlength);
265 unum_format(cur_def, l, result, resultlength, &pos1, &status);
288 resultlength=0;
290 resultlengthneeded=unum_formatDouble(cur_def, d, NULL, resultlength, &pos2, &status);
294 resultlength=resultlengthneeded+1;
295 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1003 int32_t resultlength; local
1084 int32_t resultlength; local
    [all...]
cdtrgtst.c 51 int32_t resultlength, resultlengthneeded; local
69 resultlength=0;
70 resultlengthneeded=udat_toPattern(df, TRUE, NULL, resultlength, &status);
74 resultlength=resultlengthneeded + 1;
75 pat=(UChar*)malloc(sizeof(UChar) * resultlength);
76 udat_toPattern(df, TRUE, pat, resultlength, &status);
241 int32_t resultlength, resultlengthneeded; local
247 resultlength=0;
248 resultlengthneeded=udat_toPattern(fmt, TRUE, NULL, resultlength, &status);
252 resultlength=resultlengthneeded + 1
601 int32_t resultlength, resultlengthneeded; local
    [all...]
ccaltst.c 92 int32_t resultlength, resultlengthneeded; local
223 resultlength = ucal_getCanonicalTimeZoneID(PST, -1,
310 resultlength=0;
311 resultlengthneeded=ucal_getTimeZoneDisplayName(caldef, UCAL_DST, "en_US", NULL, resultlength, &status);
316 resultlength=resultlengthneeded+1;
317 result=(UChar*)malloc(sizeof(UChar) * resultlength);
318 ucal_getTimeZoneDisplayName(caldef, UCAL_DST, "en_US", result, resultlength, &status);
340 ucal_getTimeZoneDisplayName(caldef, UCAL_SHORT_DST, "en_US", result, resultlength, &status);
346 ucal_getTimeZoneDisplayName(caldef, UCAL_STANDARD, "en_US", result, resultlength, &status);
352 ucal_getTimeZoneDisplayName(caldef, UCAL_SHORT_STANDARD, "en_US", result, resultlength, &status)
    [all...]
  /external/openssl/apps/
s_cb.c 698 unsigned int length, resultlength; local
774 buffer, length, result, &resultlength); local
777 memcpy(cookie, result, resultlength);
778 *cookie_len = resultlength;
786 unsigned int length, resultlength; local
855 buffer, length, result, &resultlength); local
858 if (cookie_len == resultlength && memcmp(result, cookie, resultlength) == 0)

Completed in 386 milliseconds