Home | History | Annotate | Download | only in stdio

Lines Matching full:dplen

3384 		int dplen = strlen((const char *)decimalpoint);
3386 int dplen = 1;
3390 nd -= dplen;
3391 if (nd > maxdigits && (strunc = alloca(maxdigits + dplen + 2)) != NULL) {
3392 ssize_t nd0 = decpt ? decpt - s0 - dplen : nd;
3398 memcpy(strunc, s0, maxdigits + dplen);
3399 tp += dplen;
3409 s0 += dplen;