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 60 int32_t resultlength, resultlengthneeded; local
64 resultlength=0;
65 resultlengthneeded=udat_format(dat, d1, NULL, resultlength, NULL, &status);
69 resultlength=resultlengthneeded+1;
70 result1=(UChar*)ctst_malloc(sizeof(UChar) * resultlength);
71 udat_format(dat, d1, result1, resultlength, NULL, &status);
cmsgtst.c 107 int32_t resultLengthOut,resultlength,i, patternlength; local
115 resultlength=1;
122 resultLengthOut=u_formatMessage( "en_US",testCasePatterns[i], patternlength, result, resultlength,
127 resultlength=resultLengthOut+1;
128 result=(UChar*)realloc(result,sizeof(UChar) * resultlength);
129 u_formatMessage( "en_US",testCasePatterns[i], patternlength, result, resultlength,
153 resultlength=0;
154 resultLengthOut=u_formatMessageWithError( "en_US",testCasePatterns[i], patternlength, result, resultlength,
159 resultlength=resultLengthOut+1;
160 result=(UChar*)malloc(sizeof(UChar) * resultlength);
274 int32_t resultLengthOut, resultlength; local
375 int32_t resultLengthOut, resultlength; local
477 int32_t resultLengthOut, resultlength; local
571 int32_t resultLengthOut, resultlength; local
666 int32_t resultlength,resultLengthOut; local
736 int32_t resultlength,resultLengthOut; local
881 int32_t resultLengthOut,resultlength,i, patternlength; local
    [all...]
cdattst.c 71 int32_t resultlength; local
155 resultlength=0;
156 resultlengthneeded=udat_format(def, d, NULL, resultlength, NULL, &status);
160 resultlength=resultlengthneeded+1;
165 result=(UChar*)malloc(sizeof(UChar) * resultlength);
166 udat_format(def, d, result, resultlength, NULL, &status);
268 resultlength=0;
269 resultlengthneeded=udat_toPattern(def1, FALSE, NULL, resultlength, &status);
273 resultlength=resultlengthneeded + 1;
274 result=(UChar*)malloc(sizeof(UChar) * resultlength);
558 int32_t resultlength; local
890 int32_t resultlength, resultlengthout; local
924 int32_t resultlength, resultlengthout; local
966 int32_t resultlength, resultlengthout; local
1019 int32_t resultlength, resultlengthneeded; local
    [all...]
cnumtst.c 134 int32_t resultlength; local
238 resultlength=0;
240 resultlengthneeded=unum_format(cur_def, l, NULL, resultlength, &pos1, &status);
244 resultlength=resultlengthneeded+1;
245 result=(UChar*)malloc(sizeof(UChar) * resultlength);
248 unum_format(cur_def, l, result, resultlength, &pos1, &status);
271 resultlength=0;
273 resultlengthneeded=unum_formatDouble(cur_def, d, NULL, resultlength, &pos2, &status);
277 resultlength=resultlengthneeded+1;
278 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1164 int32_t resultlength; local
1245 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 99 int32_t resultlength, resultlengthneeded; local
254 resultlength = ucal_getCanonicalTimeZoneID(PST, -1,
341 resultlength=0;
342 resultlengthneeded=ucal_getTimeZoneDisplayName(caldef, UCAL_DST, "en_US", NULL, resultlength, &status);
347 resultlength=resultlengthneeded+1;
348 result=(UChar*)malloc(sizeof(UChar) * resultlength);
349 ucal_getTimeZoneDisplayName(caldef, UCAL_DST, "en_US", result, resultlength, &status);
371 ucal_getTimeZoneDisplayName(caldef, UCAL_SHORT_DST, "en_US", result, resultlength, &status);
377 ucal_getTimeZoneDisplayName(caldef, UCAL_STANDARD, "en_US", result, resultlength, &status);
383 ucal_getTimeZoneDisplayName(caldef, UCAL_SHORT_STANDARD, "en_US", result, resultlength, &status)
    [all...]
  /external/openssl/apps/
s_cb.c 766 unsigned int length, resultlength; local
842 buffer, length, result, &resultlength); local
845 memcpy(cookie, result, resultlength);
846 *cookie_len = resultlength;
854 unsigned int length, resultlength; local
923 buffer, length, result, &resultlength); local
926 if (cookie_len == resultlength && memcmp(result, cookie, resultlength) == 0)

Completed in 88 milliseconds