Symbol: h_strspct
tests/lib/libutil/t_strpct.c
109
h_strspct(0, 0, 0, 0, "");
tests/lib/libutil/t_strpct.c
110
h_strspct(1, 0, 0, 0, "");
tests/lib/libutil/t_strpct.c
113
h_strspct(2, 1, 40, 0, "2");
tests/lib/libutil/t_strpct.c
114
h_strspct(3, 1, 40, 0, "2");
tests/lib/libutil/t_strpct.c
115
h_strspct(3, 1, 40, 1, "2.");
tests/lib/libutil/t_strpct.c
116
h_strspct(4, 1, 40, 1, "2.5");
tests/lib/libutil/t_strpct.c
117
h_strspct(4, 8, 40, 1, "20.");
tests/lib/libutil/t_strpct.c
118
h_strspct(6, 1, 5, 1, "20.0");
tests/lib/libutil/t_strpct.c
119
h_strspct(100, 1, 5, 5, "20.00000");
tests/lib/libutil/t_strpct.c
120
h_strspct( 5, 11223344, 100, 10, "1122");
tests/lib/libutil/t_strpct.c
121
h_strspct(10, 11223344, 100, 10, "11223344.");
tests/lib/libutil/t_strpct.c
122
h_strspct(11, 11223344, 100, 10, "11223344.0");
tests/lib/libutil/t_strpct.c
125
h_strspct(1, -1, 40, 0, "");
tests/lib/libutil/t_strpct.c
126
h_strspct(2, -1, 40, 0, "-");
tests/lib/libutil/t_strpct.c
127
h_strspct(3, -1, 40, 0, "-2");
tests/lib/libutil/t_strpct.c
128
h_strspct(3, -1, 40, 1, "-2");
tests/lib/libutil/t_strpct.c
129
h_strspct(4, -1, 40, 1, "-2.");
tests/lib/libutil/t_strpct.c
130
h_strspct(5, -1, 40, 1, "-2.5");
tests/lib/libutil/t_strpct.c
131
h_strspct(4, -8, 40, 1, "-20");
tests/lib/libutil/t_strpct.c
132
h_strspct(5, -8, 40, 1, "-20.");
tests/lib/libutil/t_strpct.c
133
h_strspct(6, -1, 5, 1, "-20.0");
tests/lib/libutil/t_strpct.c
134
h_strspct(100, -1, 5, 5, "-20.00000");
tests/lib/libutil/t_strpct.c
135
h_strspct( 5, -11223344, 100, 10, "-112");
tests/lib/libutil/t_strpct.c
136
h_strspct(10, -11223344, 100, 10, "-11223344");
tests/lib/libutil/t_strpct.c
137
h_strspct(11, -11223344, 100, 10, "-11223344.");
tests/lib/libutil/t_strpct.c
138
h_strspct(12, -11223344, 100, 10, "-11223344.0");
tests/lib/libutil/t_strpct.c
141
h_strspct(6, 1, 6, 1, "16.6");
tests/lib/libutil/t_strpct.c
142
h_strspct(7, -1, 6, 1, "-16.6");
tests/lib/libutil/t_strpct.c
143
h_strspct(7, 1, -6, 1, "-16.6");
tests/lib/libutil/t_strpct.c
144
h_strspct(7, -1, -6, 1, "16.6");
tests/lib/libutil/t_strpct.c
145
h_strspct(100, 1, 7, 20, "14.28571428571428571428");
tests/lib/libutil/t_strpct.c
148
h_strspct(100, INTMAX_MAX, INTMAX_MAX, 0, "100");
tests/lib/libutil/t_strpct.c
149
h_strspct(100, INTMAX_MIN, INTMAX_MIN, 25, "100.0000000000000000000000000");
tests/lib/libutil/t_strpct.c
150
h_strspct(100, INTMAX_MIN, INTMAX_MAX, 25, "-100.0000000000000000108420217");
tests/lib/libutil/t_strpct.c
151
h_strspct(100, INTMAX_MAX, INTMAX_MIN, 25, "-99.9999999999999999891579782");
tests/lib/libutil/t_strpct.c
152
h_strspct(100, INTMAX_MAX, INTMAX_MAX, 25, "100.0000000000000000000000000");