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

/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c73 * Fix incorrect zpadlen handling in fmtfp.
563 int zpadlen = 0; /* amount to zero pad */ local
594 zpadlen = max - place;
596 if (zpadlen < 0) zpadlen = 0;
599 zpadlen = MAX(zpadlen, spadlen);
607 zpadlen, spadlen, min, max, place);
621 if (zpadlen > 0) {
622 while (zpadlen >
725 int zpadlen = 0; local
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bio/
H A Db_print.c490 int zpadlen = 0; local
522 zpadlen = max - place;
525 if (zpadlen < 0)
526 zpadlen = 0;
530 zpadlen = OSSL_MAX(zpadlen, spadlen);
556 if (zpadlen > 0) {
557 while (zpadlen > 0) {
560 --zpadlen;
619 int zpadlen local
[all...]
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dsnprintf.c999 int zpadlen = 0; /* Amount to zero pad. */ local
1042 zpadlen = precision - pos - separators;
1049 if (zpadlen < 0)
1050 zpadlen = 0;
1062 zpadlen += spadlen;
1075 while (zpadlen > 0) { /* Leading zeros. */
1077 zpadlen--;

Completed in 86 milliseconds