Home
last modified time | relevance | path

Searched refs:s_ptr (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstdio-opt-1.c17 FILE *s_array[] = {stdout, NULL}, **s_ptr = s_array; in main() local
20 fputs ("", *s_ptr); in main()
21 fputs ("\n", *s_ptr); in main()
22 fputs ("bye", *s_ptr); in main()
23 fputs (s1, *s_ptr); in main()
24 fputs (s1+5, *s_ptr); in main()
25 fputs (s1+10, *s_ptr); in main()
26 fputs (s1+11, *s_ptr); in main()
29 fputs ("", *s_ptr++); in main()
30 if (s_ptr != s_array+1 || *s_ptr != 0) in main()
[all …]
H A Dstdio-opt-3.c14 FILE *s_array[] = {stdout, NULL}, **s_ptr = s_array; in main() local
18 fprintf (*s_ptr, "%s", "hello"); in main()
19 fprintf (*s_ptr, "%s", "\n"); in main()
20 fprintf (*s_ptr, "%s", *s2); in main()
22 fprintf (*s_ptr, "%s", *s3++); in main()
26 fprintf (*s_ptr++, "%s", *s3++); in main()
27 if (s3 != s2+1 || *s3 != 0 || s_ptr != s_array+1 || *s_ptr != 0) in main()
30 s_ptr = s_array; in main()
31 fprintf (*s_ptr, "%c", '\n'); in main()
32 fprintf (*s_ptr, "%c", **s2); in main()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dgcov.c288 struct sourcefile *s_ptr; local
300 for (s_ptr = sources; s_ptr; s_ptr = s_ptr->next)
301 output_data (s_ptr);
1001 struct sourcefile *s_ptr = NULL; in scan_for_source_files() local
1020 s_ptr = sources; in scan_for_source_files()
1021 while (s_ptr && strcmp (s_ptr->name, ptr)) in scan_for_source_files()
1022 s_ptr = s_ptr->next; in scan_for_source_files()
1024 if (s_ptr == 0) in scan_for_source_files()
1028 s_ptr = (struct sourcefile *) xmalloc (sizeof(struct sourcefile)); in scan_for_source_files()
1029 s_ptr->name = xstrdup (ptr); in scan_for_source_files()
[all …]
H A DChangeLog.09361 (scan _for_source_files): Initialize s_ptr.