Home
last modified time | relevance | path

Searched refs:zpadlen (Results 1 – 2 of 2) sorted by relevance

/external/openssh/openbsd-compat/
Dbsd-snprintf.c563 int zpadlen = 0; /* amount to zero pad */ in fmtint() local
594 zpadlen = max - place; in fmtint()
596 if (zpadlen < 0) zpadlen = 0; in fmtint()
599 zpadlen = MAX(zpadlen, spadlen); in fmtint()
607 zpadlen, spadlen, min, max, place); in fmtint()
621 if (zpadlen > 0) { in fmtint()
622 while (zpadlen > 0) { in fmtint()
624 --zpadlen; in fmtint()
725 int zpadlen = 0; in fmtfp() local
812 zpadlen = max - fplace; in fmtfp()
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_snprintf.c903 int zpadlen = 0; /* Amount to zero pad. */ in fmtint() local
946 zpadlen = precision - pos - separators; in fmtint()
953 if (zpadlen < 0) in fmtint()
954 zpadlen = 0; in fmtint()
966 zpadlen += spadlen; in fmtint()
979 while (zpadlen > 0) { /* Leading zeros. */ in fmtint()
981 zpadlen--; in fmtint()