Lines Matching refs:rve
1563 wchar_t *digits, *bp, *rve; in wcvt() local
1581 rve = bp; in wcvt()
1582 while (*--rve == digits[0xf]) { in wcvt()
1583 *rve = L'0'; in wcvt()
1585 *rve = *rve == L'9' ? digits[0xa] : *rve + 1; in wcvt()
1609 char *digits, *bp, *rve; in wcvt() local
1614 digits = _DTOA (value, mode, ndigits, decpt, &dsgn, &rve); in wcvt()
1624 rve = bp; in wcvt()
1625 while (rve < bp) in wcvt()
1626 *rve++ = '0'; in wcvt()
1629 *length = rve - digits; /* full length of the string */ in wcvt()