Home | History | Annotate | Download | only in stdio

Lines Matching refs:prec

700   // string representation. If not -1, prec specifies the maximum number of
703 static char* wcsconv(wchar_t* wcsarg, int prec) {
711 if (prec < 0) {
720 if (prec < 128) {
721 nbytes = prec;
728 if (clen == 0 || clen == (size_t)-1 || nbytes + clen > (size_t)prec) break;
772 // string representation. ``prec'' specifies the maximum number of bytes
773 // to output. If ``prec'' is greater than or equal to zero, we can't assume
778 static wchar_t* mbsconv(char* mbsarg, int prec) {
786 if (prec >= 0) {
791 while (nchars != (size_t)prec) {