Lines Matching refs:bbuf

2709                 char bbuf[kUBufMax*2];
2710 u_austrncpy(bbuf, ubufResult, sizeof(bbuf));
2713 itemPtr->expectedResult, ulenRes, bbuf);
3436 char bbuf[kBBufMax];
3439 u_austrncpy(bbuf, ubuf, kBBufMax);
3440 log_err("unum_toPattern result should ignore padding but get %s\n", bbuf);
3451 u_austrncpy(bbuf, ubuf, kBBufMax);
3452 log_err("unum_formatDecimal result expect 24 but get %s\n", bbuf);
3470 char bbuf[kBBufMax];
3477 u_austrncpy(bbuf, ubuf, kUBufMax);
3478 log_info("unum_toPattern (%d): %s\n", ulen, bbuf);
3487 u_austrncpy(bbuf, ubuf, kUBufMax);
3488 log_err("unum_formatDouble value %.1f expected result to begin with 1E+0, got %s\n", value, bbuf);
3502 char bbuf[kBBufMax];
3517 u_austrncpy(bbuf, ubuf, kUBufMax);
3518 log_info("after setting minInt=minFrac=0, expect pattern to contain \"#.#\", but get (%d): \"%s\"\n", ulen, bbuf);
3526 u_austrncpy(bbuf, ubuf, kUBufMax);
3527 log_err("unum_formatDouble 10.0 expected \"10\", got \"%s\"\n", bbuf);
3535 u_austrncpy(bbuf, ubuf, kUBufMax);
3536 log_err("unum_formatDouble 0.9 expected \".9\", got \"%s\"\n", bbuf);
3544 u_austrncpy(bbuf, ubuf, kUBufMax);
3545 log_err("unum_formatDouble 0.0 expected \"0\", got \"%s\"\n", bbuf);
3567 u_austrncpy(bbuf, ubuf, kUBufMax);
3568 log_err("unum_formatDouble (CURRENCY) 10.0 expected \"$10\", got \"%s\"\n", bbuf);
3576 u_austrncpy(bbuf, ubuf, kUBufMax);
3577 log_err("unum_formatDouble (CURRENCY) 0.9 expected \"$.9\", got \"%s\"\n", bbuf);
3585 u_austrncpy(bbuf, ubuf, kUBufMax);
3586 log_err("unum_formatDouble (CURRENCY) 0.0 expected \"$0\", got \"%s\"\n", bbuf);
3649 char bbuf[kBBufMax] = { 0 };
3657 blen = unum_parseDecimal(unum, text, -1, &ppos, bbuf, kBBufMax, &status);
3660 } else if (ppos != 1 || blen != 1 || bbuf[0] != '3') {
3661 log_err("unum_parseDecimal expect ppos 1, blen 1, str 3; get %d, %d, %s\n", ppos, blen, bbuf);