Lines Matching refs:stpcpy

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