HomeSort by relevance Sort by last modified time
    Searched full:spadlen (Results 1 - 2 of 2) sorted by null

  /external/openssh/openbsd-compat/
bsd-snprintf.c 562 int spadlen = 0; /* amount to space pad */ local
595 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
597 if (spadlen < 0) spadlen = 0;
599 zpadlen = MAX(zpadlen, spadlen);
600 spadlen = 0;
603 spadlen = -spadlen; /* Left Justifty */
607 zpadlen, spadlen, min, max, place);
611 while (spadlen > 0)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 902 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...]

Completed in 541 milliseconds