Lines Matching refs:stpcpy
189 check ((stpcpy (one, "a") - one) == 1, 1); in test_stpcpy()
192 check ((stpcpy (one, "ab") - one) == 2, 3); in test_stpcpy()
195 check ((stpcpy (one, "abc") - one) == 3, 5); in test_stpcpy()
198 check ((stpcpy (one, "abcd") - one) == 4, 7); in test_stpcpy()
201 check ((stpcpy (one, "abcde") - one) == 5, 9); in test_stpcpy()
204 check ((stpcpy (one, "abcdef") - one) == 6, 11); in test_stpcpy()
207 check ((stpcpy (one, "abcdefg") - one) == 7, 13); in test_stpcpy()
210 check ((stpcpy (one, "abcdefgh") - one) == 8, 15); in test_stpcpy()
213 check ((stpcpy (one, "abcdefghi") - one) == 9, 17); in test_stpcpy()
216 check ((stpcpy (one, "x") - one) == 1, 19); in test_stpcpy()
220 check ((stpcpy (one, "xx") - one) == 2, 22); in test_stpcpy()
224 check ((stpcpy (one, "xxx") - one) == 3, 25); in test_stpcpy()
228 check ((stpcpy (one, "xxxx") - one) == 4, 28); in test_stpcpy()
232 check ((stpcpy (one, "xxxxx") - one) == 5, 31); in test_stpcpy()
236 check ((stpcpy (one, "xxxxxx") - one) == 6, 34); in test_stpcpy()
240 check ((stpcpy (one, "xxxxxxx") - one) == 7, 37); in test_stpcpy()
244 check ((stpcpy (stpcpy (stpcpy (one, "a"), "b"), "c") - one) == 3, 40); in test_stpcpy()
248 SIMPLE_COPY(stpcpy, 0, "", 43); in test_stpcpy()
249 SIMPLE_COPY(stpcpy, 1, "1", 44); in test_stpcpy()
250 SIMPLE_COPY(stpcpy, 2, "22", 45); in test_stpcpy()
251 SIMPLE_COPY(stpcpy, 3, "333", 46); in test_stpcpy()
252 SIMPLE_COPY(stpcpy, 4, "4444", 47); in test_stpcpy()
253 SIMPLE_COPY(stpcpy, 5, "55555", 48); in test_stpcpy()
254 SIMPLE_COPY(stpcpy, 6, "666666", 49); in test_stpcpy()
255 SIMPLE_COPY(stpcpy, 7, "7777777", 50); in test_stpcpy()
256 SIMPLE_COPY(stpcpy, 8, "88888888", 51); in test_stpcpy()
257 SIMPLE_COPY(stpcpy, 9, "999999999", 52); in test_stpcpy()
258 SIMPLE_COPY(stpcpy, 10, "0000000000", 53); in test_stpcpy()
259 SIMPLE_COPY(stpcpy, 11, "11111111111", 54); in test_stpcpy()
260 SIMPLE_COPY(stpcpy, 12, "222222222222", 55); in test_stpcpy()
261 SIMPLE_COPY(stpcpy, 13, "3333333333333", 56); in test_stpcpy()
262 SIMPLE_COPY(stpcpy, 14, "44444444444444", 57); in test_stpcpy()
263 SIMPLE_COPY(stpcpy, 15, "555555555555555", 58); in test_stpcpy()
264 SIMPLE_COPY(stpcpy, 16, "6666666666666666", 59); in test_stpcpy()