Lines Matching refs:s_len

172 #define FIX_PRECISION(adjust, precision, s, s_len) do {	\  argument
174 while (s_len < (size_t)precision) { \
176 s_len++; \
195 size_t s_len; in xbuf_format_converter() local
405 s_len = Z_STRLEN_P(zvp); in xbuf_format_converter()
407 if (adjust_precision && (size_t)precision < s_len) { in xbuf_format_converter()
408 s_len = precision; in xbuf_format_converter()
491 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
492 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
538 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
539 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
542 s_len++; in xbuf_format_converter()
581 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
582 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
586 s_len += 2; in xbuf_format_converter()
596 s_len = strlen(s); in xbuf_format_converter()
598 s_len = strnlen(s, precision); in xbuf_format_converter()
602 s_len = S_NULL_LEN; in xbuf_format_converter()
625 s_len = 3; in xbuf_format_converter()
628 s_len = 3; in xbuf_format_converter()
640 &is_negative, &num_buf[1], &s_len); in xbuf_format_converter()
668 s_len = 3; in xbuf_format_converter()
673 s_len = 3; in xbuf_format_converter()
676 s_len = 4; in xbuf_format_converter()
703 s_len = strlen(s); in xbuf_format_converter()
706 s[s_len++] = '.'; in xbuf_format_converter()
713 s_len = 1; in xbuf_format_converter()
721 s_len = 1; in xbuf_format_converter()
742 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
746 s_len += 2; in xbuf_format_converter()
750 s_len = 2; in xbuf_format_converter()
780 s_len = 2; in xbuf_format_converter()
787 s_len++; in xbuf_format_converter()
789 if (adjust_width && adjust == RIGHT && (size_t)min_width > s_len) { in xbuf_format_converter()
793 s_len--; in xbuf_format_converter()
796 PAD_CHAR(xbuf, pad_char, min_width - s_len, is_char); in xbuf_format_converter()
801 INS_STRING(xbuf, s, s_len, is_char); in xbuf_format_converter()
803 if (adjust_width && adjust == LEFT && (size_t)min_width > s_len) { in xbuf_format_converter()
804 PAD_CHAR(xbuf, pad_char, min_width - s_len, is_char); in xbuf_format_converter()