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

/freebsd-12-stable/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c73 * Fix incorrect zpadlen handling in fmtfp.
551 int zpadlen = 0; /* amount to zero pad */ local
582 zpadlen = max - place;
584 if (zpadlen < 0) zpadlen = 0;
587 zpadlen = MAX(zpadlen, spadlen);
595 zpadlen, spadlen, min, max, place);
609 if (zpadlen > 0) {
610 while (zpadlen >
713 int zpadlen = 0; local
[all...]
/freebsd-12-stable/crypto/openssl/crypto/bio/
H A Db_print.c427 int zpadlen = 0; local
459 zpadlen = max - place;
462 if (zpadlen < 0)
463 zpadlen = 0;
467 zpadlen = OSSL_MAX(zpadlen, spadlen);
493 if (zpadlen > 0) {
494 while (zpadlen > 0) {
497 --zpadlen;
559 int zpadlen local
[all...]
/freebsd-12-stable/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 116 milliseconds