Lines Matching refs:s_len

177 #define FIX_PRECISION(adjust, precision, s, s_len) do {	\  argument
179 while (s_len < precision) { \
181 s_len++; \
201 int s_len, free_zcopy; in xbuf_format_converter() local
398 s_len = Z_STRLEN_P(zvp); in xbuf_format_converter()
400 if (adjust_precision && precision < s_len) { in xbuf_format_converter()
401 s_len = precision; in xbuf_format_converter()
477 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
478 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
521 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
522 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
525 s_len++; in xbuf_format_converter()
561 &num_buf[NUM_BUF_SIZE], &s_len); in xbuf_format_converter()
562 FIX_PRECISION(adjust_precision, precision, s, s_len); in xbuf_format_converter()
566 s_len += 2; in xbuf_format_converter()
576 s_len = strlen(s); in xbuf_format_converter()
578 s_len = strnlen(s, precision); in xbuf_format_converter()
582 s_len = S_NULL_LEN; in xbuf_format_converter()
605 s_len = 3; in xbuf_format_converter()
608 s_len = 3; in xbuf_format_converter()
618 &is_negative, &num_buf[1], &s_len); in xbuf_format_converter()
646 s_len = 3; in xbuf_format_converter()
651 s_len = 3; in xbuf_format_converter()
654 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 && min_width > s_len) { in xbuf_format_converter()
769 s_len--; in xbuf_format_converter()
772 PAD(xbuf, min_width - s_len, pad_char); in xbuf_format_converter()
777 INS_STRING(xbuf, s, s_len); in xbuf_format_converter()
779 if (adjust_width && adjust == LEFT && min_width > s_len) in xbuf_format_converter()
780 PAD(xbuf, min_width - s_len, pad_char); in xbuf_format_converter()