Lines Matching refs:s_len

178 #define FIX_PRECISION(adjust, precision, s, s_len) do {	\  argument
180 while (s_len < (size_t)precision) { \
182 s_len++; \
201 size_t s_len; in xbuf_format_converter() local
413 s_len = Z_STRLEN_P(zvp); in xbuf_format_converter()
415 if (adjust_precision && (size_t)precision < s_len) { in xbuf_format_converter()
416 s_len = precision; in xbuf_format_converter()
499 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
500 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
546 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
547 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
550 s_len++; in xbuf_format_converter()
589 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
590 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
594 s_len += 2; in xbuf_format_converter()
604 s_len = strlen(s); in xbuf_format_converter()
606 s_len = strnlen(s, precision); in xbuf_format_converter()
610 s_len = S_NULL_LEN; in xbuf_format_converter()
633 s_len = 3; in xbuf_format_converter()
636 s_len = 3; in xbuf_format_converter()
650 &is_negative, &num_buf[1], &s_len); in xbuf_format_converter()
678 s_len = 3; in xbuf_format_converter()
683 s_len = 3; in xbuf_format_converter()
686 s_len = 4; in xbuf_format_converter()
715 s_len = strlen(s); in xbuf_format_converter()
718 s[s_len++] = '.'; in xbuf_format_converter()
725 s_len = 1; in xbuf_format_converter()
733 s_len = 1; in xbuf_format_converter()
754 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
758 s_len += 2; in xbuf_format_converter()
762 s_len = 2; in xbuf_format_converter()
792 s_len = 2; in xbuf_format_converter()
799 s_len++; in xbuf_format_converter()
801 if (adjust_width && adjust == RIGHT && (size_t)min_width > s_len) { in xbuf_format_converter()
805 s_len--; in xbuf_format_converter()
808 PAD_CHAR(xbuf, pad_char, min_width - s_len, is_char); in xbuf_format_converter()
813 INS_STRING(xbuf, s, s_len, is_char); in xbuf_format_converter()
815 if (adjust_width && adjust == LEFT && (size_t)min_width > s_len) { in xbuf_format_converter()
816 PAD_CHAR(xbuf, pad_char, min_width - s_len, is_char); in xbuf_format_converter()