Home
last modified time | relevance | path

Searched refs:strln (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/ntp/libntp/
H A Dsnprintf.c960 int padlen, strln; /* Amount to pad. */ in fmtstr() local
967 for (strln = 0; value[strln] != '\0' && in fmtstr()
968 (noprecision || strln < precision); strln++) in fmtstr()
971 if ((padlen = width - strln) < 0) in fmtstr()
1400 int strln; in getnumsep() local
1405 for (strln = 0; lc->thousands_sep[strln] != '\0'; strln++) in getnumsep()
1407 separators *= strln; in getnumsep()
/freebsd/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c508 int padlen, strln; /* amount to pad */ in fmtstr() local
518 for (strln = 0; strln < max && value[strln]; ++strln); /* strlen */ in fmtstr()
519 padlen = min - strln; in fmtstr()
/freebsd/crypto/openssl/crypto/bio/
H A Dbio_print.c386 size_t strln; in fmtstr() local
392 strln = OPENSSL_strnlen(value, max < 0 ? SIZE_MAX : (size_t)max); in fmtstr()
394 padlen = min - strln; in fmtstr()
416 while (strln > 0 && (max < 0 || cnt < max)) { in fmtstr()
419 --strln; in fmtstr()