Lines Matching refs:s_len

168 #define FIX_PRECISION(adjust, precision, s, s_len) do {	\  argument
170 while (s_len < (size_t)precision) { \
172 s_len++; \
191 size_t s_len; in xbuf_format_converter() local
382 s_len = Z_STRLEN_P(zvp); in xbuf_format_converter()
384 if (adjust_precision && (size_t)precision < s_len) { in xbuf_format_converter()
385 s_len = precision; in xbuf_format_converter()
468 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
469 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
515 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
516 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
519 s_len++; in xbuf_format_converter()
558 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
559 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
563 s_len += 2; in xbuf_format_converter()
572 s_len = strlen(s); in xbuf_format_converter()
574 s_len = strnlen(s, precision); in xbuf_format_converter()
578 s_len = S_NULL_LEN; in xbuf_format_converter()
601 s_len = 3; in xbuf_format_converter()
604 s_len = 3; in xbuf_format_converter()
616 &is_negative, &num_buf[1], &s_len); in xbuf_format_converter()
644 s_len = 3; in xbuf_format_converter()
649 s_len = 3; in xbuf_format_converter()
652 s_len = 4; in xbuf_format_converter()
679 s_len = strlen(s); in xbuf_format_converter()
682 s[s_len++] = '.'; in xbuf_format_converter()
689 s_len = 1; in xbuf_format_converter()
697 s_len = 1; in xbuf_format_converter()
718 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
722 s_len += 2; in xbuf_format_converter()
726 s_len = 2; in xbuf_format_converter()
756 s_len = 2; in xbuf_format_converter()
763 s_len++; in xbuf_format_converter()
765 if (adjust_width && adjust == RIGHT && (size_t)min_width > s_len) { in xbuf_format_converter()
769 s_len--; in xbuf_format_converter()
772 PAD_CHAR(xbuf, pad_char, min_width - s_len, is_char); in xbuf_format_converter()
777 INS_STRING(xbuf, s, s_len, is_char); in xbuf_format_converter()
779 if (adjust_width && adjust == LEFT && (size_t)min_width > s_len) { in xbuf_format_converter()
780 PAD_CHAR(xbuf, pad_char, min_width - s_len, is_char); in xbuf_format_converter()