Home | History | Annotate | Download | only in cintltst

Lines Matching refs:lneed

60     int32_t pat_length, i, lneed;
83 lneed=0;
84 lneed=unum_toPattern(fmt, FALSE, NULL, lneed, &status);
87 unewp=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
88 unum_toPattern(fmt, FALSE, unewp, lneed+1, &status);
97 lneed=0;
98 lneed=unum_format(fmt, 0, NULL, lneed, NULL, &status);
101 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
102 unum_format(fmt, 0, str, lneed+1, NULL, &status);
122 int32_t lneed;
135 lneed=0;
136 lneed=unum_format(fmt, 123, NULL, lneed, NULL, &status);
139 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
140 unum_format(fmt, 123, str, lneed+1, NULL, &status);
164 lneed=0;
165 lneed=unum_format(fmt, 123, NULL, lneed, NULL, &status);
168 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
169 unum_format(fmt, 123, str, lneed+1, NULL, &status);
189 int32_t ival, ilval, p, v, lneed;
260 lneed= u_strlen(upat) + 1;
261 unum_toPattern(fmt, FALSE, pattern, lneed, &status);
266 lneed=0;
267 lneed=unum_formatDouble(fmt, val[v], NULL, lneed, NULL, &status);
270 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
271 unum_formatDouble(fmt, val[v], str, lneed+1, NULL, &status);
298 lneed=0;
299 lneed=unum_formatDouble(fmt, lval[v], NULL, lneed, NULL, &status);
302 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
303 unum_formatDouble(fmt, lval[v], str, lneed+1, NULL, &status);
339 int32_t lneed;
355 lneed=0;
356 lneed=unum_formatDouble(fmt, 1234.56, NULL, lneed, NULL, &status);
359 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
360 unum_formatDouble(fmt, 1234.56, str, lneed+1, NULL, &status);
365 lneed=0;
366 lneed=unum_toPattern(fmt, FALSE, NULL, lneed, &status);
369 pat=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
370 unum_formatDouble(fmt, FALSE, pat, lneed+1, NULL, &status);
385 lneed=0;
386 lneed=unum_formatDouble(fmt, -1234.56, NULL, lneed, NULL, &status);
389 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
390 unum_formatDouble(fmt, -1234.56, str, lneed+1, NULL, &status);
414 int32_t lneed, i;
430 lneed=0;
431 lneed= unum_formatDouble(currencyFmt, 1.50, NULL, lneed, NULL, &status);
434 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
436 unum_formatDouble(currencyFmt, 1.50, str, lneed+1, &pos, &status);
461 int32_t lneed, i;
494 lneed=0;
495 lneed= unum_formatDouble(currencyFmt, 1.50, NULL, lneed, NULL, &status);
499 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
501 unum_formatDouble(currencyFmt, 1.50, str, lneed+1, &pos, &status);
531 int32_t lneed, i;
583 lneed=0;
584 lneed= unum_formatDouble(currencyFmt, 1234.56, NULL, lneed, NULL, &status);
587 str=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
589 unum_formatDouble(currencyFmt, 1234.56, str, lneed+1, &pos, &status);
643 int32_t lneed;
646 lneed=0;
647 lneed=unum_formatDouble(nf, x, NULL, lneed, NULL, &status);
650 out=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
652 unum_formatDouble(nf, x, out, lneed+1, &pos, &status);
1041 int32_t lneed;
1044 lneed=0;
1045 lneed=unum_formatDouble(nf, x, NULL, lneed, NULL, &status);
1048 out=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
1050 unum_formatDouble(nf, x, out, lneed+1, &pos, &status);