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

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c902 int spadlen = 0; /* Amount to space pad. */ local
947 spadlen = width /* Minimum field width. */
955 if (spadlen < 0)
956 spadlen = 0;
964 spadlen = -spadlen;
966 zpadlen += spadlen;
967 spadlen = 0;
969 while (spadlen > 0) { /* Leading spaces. */
971 spadlen
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c902 int spadlen = 0; /* Amount to space pad. */ local
947 spadlen = width /* Minimum field width. */
955 if (spadlen < 0)
956 spadlen = 0;
964 spadlen = -spadlen;
966 zpadlen += spadlen;
967 spadlen = 0;
969 while (spadlen > 0) { /* Leading spaces. */
971 spadlen
[all...]
/external/openssl/crypto/bio/
H A Db_print.c489 int spadlen = 0; local
522 spadlen = min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix);
525 if (spadlen < 0)
526 spadlen = 0;
528 zpadlen = OSSL_MAX(zpadlen, spadlen);
529 spadlen = 0;
532 spadlen = -spadlen;
535 while (spadlen > 0) {
537 --spadlen;
[all...]

Completed in 1104 milliseconds