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

/freebsd-9.3-release/contrib/ntp/libntp/
H A Dsnprintf.c960 int padlen, strln; /* Amount to pad. */ local
967 for (strln = 0; value[strln] != '\0' &&
968 (noprecision || strln < precision); strln++)
971 if ((padlen = width - strln) < 0)
1400 int strln; local
1405 for (strln = 0; lc->thousands_sep[strln] != '\0'; strln
[all...]
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c517 int padlen, strln; /* amount to pad */ local
527 for (strln = 0; strln < max && value[strln]; ++strln); /* strlen */
528 padlen = min - strln;
/freebsd-9.3-release/crypto/openssl/crypto/bio/
H A Db_print.c442 size_t strln; local
448 strln = strlen(value);
449 if (strln > INT_MAX)
450 strln = INT_MAX;
452 padlen = min - strln;

Completed in 116 milliseconds