OpenCoverage

comm.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/coreutils/src/src/comm.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3static -
4 _Bool -
5 hard_LC_COLLATE;-
6-
7-
8static -
9 _Bool -
10 only_file_1;-
11-
12-
13static -
14 _Bool -
15 only_file_2;-
16-
17-
18static -
19 _Bool -
20 both;-
21-
22-
23static -
24 _Bool -
25 seen_unpairable;-
26-
27-
28static -
29 _Bool -
30 issued_disorder_warning[2];-
31-
32-
33static unsigned char delim = '\n';-
34-
35-
36static -
37 _Bool -
38 total_option;-
39-
40-
41static enum-
42 {-
43 CHECK_ORDER_DEFAULT,-
44 CHECK_ORDER_ENABLED,-
45 CHECK_ORDER_DISABLED-
46 } check_input_order;-
47-
48-
49-
50static char const *col_sep = "\t";-
51static size_t col_sep_len = 0;-
52-
53-
54-
55enum-
56{-
57 CHECK_ORDER_OPTION = 0x7f + 1,-
58 NOCHECK_ORDER_OPTION,-
59 OUTPUT_DELIMITER_OPTION,-
60 TOTAL_OPTION-
61};-
62-
63static struct option const long_options[] =-
64{-
65 {"check-order", -
66 0-
67 , -
68 ((void *)0)-
69 , CHECK_ORDER_OPTION},-
70 {"nocheck-order", -
71 0-
72 , -
73 ((void *)0)-
74 , NOCHECK_ORDER_OPTION},-
75 {"output-delimiter", -
76 1-
77 , -
78 ((void *)0)-
79 , OUTPUT_DELIMITER_OPTION},-
80 {"total", -
81 0-
82 , -
83 ((void *)0)-
84 , TOTAL_OPTION},-
85 {"zero-terminated", -
86 0-
87 , -
88 ((void *)0)-
89 , 'z'},-
90 {"help", -
91 0-
92 , -
93 ((void *)0)-
94 , GETOPT_HELP_CHAR},-
95 {"version", -
96 0-
97 , -
98 ((void *)0)-
99 , GETOPT_VERSION_CHAR},-
100 {-
101 ((void *)0)-
102 , 0, -
103 ((void *)0)-
104 , 0}-
105};-
106-
107-
108void-
109usage (int status)-
110{-
111 if (status !=
status != 0Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 12 times by 1 test
Evaluated by:
  • comm
6-12
112 0
status != 0Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 12 times by 1 test
Evaluated by:
  • comm
6-12
113 )-
114 do { fprintf (-
115 stderr-
116 , -
117 dcgettext (((void *)0), -
118 "Try '%s --help' for more information.\n"-
119 , 5)-
120 , program_name); }
executed 6 times by 1 test: end of block
Executed by:
  • comm
while (0);
6
121 else-
122 {-
123 printf (-
124 dcgettext (((void *)0), -
125 "Usage: %s [OPTION]... FILE1 FILE2\n"-
126 , 5)-
127-
128 -
129 ,-
130 program_name);-
131 fputs_unlocked (-
132 dcgettext (((void *)0), -
133 "Compare sorted files FILE1 and FILE2 line by line.\n"-
134 , 5)-
135 ,-
136 stdout-
137 )-
138-
139 ;-
140 fputs_unlocked (-
141 dcgettext (((void *)0), -
142 "\nWhen FILE1 or FILE2 (not both) is -, read standard input.\n"-
143 , 5)-
144 ,-
145 stdout-
146 )-
147-
148-
149 ;-
150 fputs_unlocked (-
151 dcgettext (((void *)0), -
152 "\nWith no options, produce three-column output. Column one contains\nlines unique to FILE1, column two contains lines unique to FILE2,\nand column three contains lines common to both files.\n"-
153 , 5)-
154 ,-
155 stdout-
156 )-
157-
158-
159-
160-
161 ;-
162 fputs_unlocked (-
163 dcgettext (((void *)0), -
164 "\n -1 suppress column 1 (lines unique to FILE1)\n -2 suppress column 2 (lines unique to FILE2)\n -3 suppress column 3 (lines that appear in both files)\n"-
165 , 5)-
166 ,-
167 stdout-
168 )-
169-
170-
171-
172-
173 ;-
174 fputs_unlocked (-
175 dcgettext (((void *)0), -
176 "\n --check-order check that the input is correctly sorted, even\n if all input lines are pairable\n --nocheck-order do not check that the input is correctly sorted\n"-
177 , 5)-
178 ,-
179 stdout-
180 )-
181-
182-
183-
184-
185 ;-
186 fputs_unlocked (-
187 dcgettext (((void *)0), -
188 " --output-delimiter=STR separate columns with STR\n"-
189 , 5)-
190 ,-
191 stdout-
192 )-
193-
194 ;-
195 fputs_unlocked (-
196 dcgettext (((void *)0), -
197 " --total output a summary\n"-
198 , 5)-
199 ,-
200 stdout-
201 )-
202-
203 ;-
204 fputs_unlocked (-
205 dcgettext (((void *)0), -
206 " -z, --zero-terminated line delimiter is NUL, not newline\n"-
207 , 5)-
208 ,-
209 stdout-
210 )-
211-
212 ;-
213 fputs_unlocked (-
214 dcgettext (((void *)0), -
215 " --help display this help and exit\n"-
216 , 5)-
217 ,-
218 stdout-
219 );-
220 fputs_unlocked (-
221 dcgettext (((void *)0), -
222 " --version output version information and exit\n"-
223 , 5)-
224 ,-
225 stdout-
226 );-
227 fputs_unlocked (-
228 dcgettext (((void *)0), -
229 "\nNote, comparisons honor the rules specified by 'LC_COLLATE'.\n"-
230 , 5)-
231 ,-
232 stdout-
233 )-
234-
235-
236 ;-
237 printf (-
238 dcgettext (((void *)0), -
239 "\nExamples:\n %s -12 file1 file2 Print only lines present in both file1 and file2.\n %s -3 file1 file2 Print lines in file1 not in file2, and vice versa.\n"-
240 , 5)-
241-
242-
243-
244-
245 -
246 ,-
247 program_name, program_name);-
248 emit_ancillary_info ("comm");-
249 }
executed 12 times by 1 test: end of block
Executed by:
  • comm
12
250 exit (status);
executed 18 times by 1 test: exit (status);
Executed by:
  • comm
18
251}-
252-
253-
254-
255-
256-
257-
258static void-
259writeline (struct linebuffer const *line, FILE *stream, int class)-
260{-
261 switch (class)-
262 {-
263 case
executed 34 times by 1 test: case 1:
Executed by:
  • comm
1:
executed 34 times by 1 test: case 1:
Executed by:
  • comm
34
264 if (!only_file_1
!only_file_1Description
TRUEevaluated 9 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 25 times by 1 test
Evaluated by:
  • comm
)
9-25
265 return;
executed 9 times by 1 test: return;
Executed by:
  • comm
9
266 break;
executed 25 times by 1 test: break;
Executed by:
  • comm
25
267-
268 case
executed 56 times by 1 test: case 2:
Executed by:
  • comm
2:
executed 56 times by 1 test: case 2:
Executed by:
  • comm
56
269 if (!only_file_2
!only_file_2Description
TRUEevaluated 18 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 38 times by 1 test
Evaluated by:
  • comm
)
18-38
270 return;
executed 18 times by 1 test: return;
Executed by:
  • comm
18
271 if (only_file_1
only_file_1Description
TRUEevaluated 30 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 8 times by 1 test
Evaluated by:
  • comm
)
8-30
272 -
273 (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
__extension__ ((__builtin_constant_p (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
274 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
275 ) && __builtin_constant_p (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
276 col_sep_len
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
277 ) && (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
278 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
279 ) * (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
280 col_sep_len
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
281 ) <= 8 && (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
282 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
283 ) != 0) ? ({ const char *__ptr = (const char *) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
284 col_sep
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
285 ); FILE *__stream = (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
286 stream
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
287 ); size_t __cnt; for (__cnt = (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
288 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
289 ) * (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
290 col_sep_len
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
291 ); __cnt > 0
__cnt > 0Description
TRUEnever evaluated
FALSEnever evaluated
; --__cnt) if ((
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
__builtin_expect (((__stream)->_IO_write_ptr >= (__stream)->_IO_write_end), 0)
__builtin_expe...write_end), 0)Description
TRUEnever evaluated
FALSEnever evaluated
? __overflow (__stream, (unsigned char) (*__ptr++)) : (unsigned char) (*(__stream)->_IO_write_ptr++ = (*__ptr++))) == (-1)
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
) break;
never executed: break;
((size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
0-30
292 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
293 ) * (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
294 col_sep_len
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
295 ) - __cnt) / (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
296 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
297 ); }) : (((__builtin_constant_p (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
298 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
299 ) && (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
300 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
301 ) == 0) || (__builtin_constant_p (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
302 col_sep_len
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
303 ) && (size_t) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
304 col_sep_len
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
305 ) == 0)) ? ((void) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
306 col_sep
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
307 ), (void) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
308 stream
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
309 ), (void) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
310 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
311 ), (void) (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
312 col_sep_len
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
313 ), (size_t) 0) : fwrite_unlocked (
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
314 col_sep
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
315 ,
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
316 1
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
317 ,
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
318 col_sep_len
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
319 ,
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
320 stream
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
321 ))))
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
322 ;
executed 30 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
30
323 break;
executed 38 times by 1 test: break;
Executed by:
  • comm
38
324-
325 case
executed 84 times by 1 test: case 3:
Executed by:
  • comm
3:
executed 84 times by 1 test: case 3:
Executed by:
  • comm
84
326 if (!both
!bothDescription
TRUEevaluated 27 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 57 times by 1 test
Evaluated by:
  • comm
)
27-57
327 return;
executed 27 times by 1 test: return;
Executed by:
  • comm
27
328 if (only_file_1
only_file_1Description
TRUEevaluated 45 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 12 times by 1 test
Evaluated by:
  • comm
)
12-45
329 -
330 (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
__extension__ ((__builtin_constant_p (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
331 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
332 ) && __builtin_constant_p (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
333 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
334 ) && (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
335 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
336 ) * (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
337 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
338 ) <= 8 && (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
339 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
340 ) != 0) ? ({ const char *__ptr = (const char *) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
341 col_sep
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
342 ); FILE *__stream = (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
343 stream
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
344 ); size_t __cnt; for (__cnt = (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
345 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
346 ) * (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
347 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
348 ); __cnt > 0
__cnt > 0Description
TRUEnever evaluated
FALSEnever evaluated
; --__cnt) if ((
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
__builtin_expect (((__stream)->_IO_write_ptr >= (__stream)->_IO_write_end), 0)
__builtin_expe...write_end), 0)Description
TRUEnever evaluated
FALSEnever evaluated
? __overflow (__stream, (unsigned char) (*__ptr++)) : (unsigned char) (*(__stream)->_IO_write_ptr++ = (*__ptr++))) == (-1)
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
) break;
never executed: break;
((size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
0-45
349 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
350 ) * (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
351 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
352 ) - __cnt) / (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
353 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
354 ); }) : (((__builtin_constant_p (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
355 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
356 ) && (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
357 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
358 ) == 0) || (__builtin_constant_p (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
359 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
360 ) && (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
361 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
362 ) == 0)) ? ((void) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
363 col_sep
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
364 ), (void) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
365 stream
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
366 ), (void) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
367 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
368 ), (void) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
369 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
370 ), (size_t) 0) : fwrite_unlocked (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
371 col_sep
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
372 ,
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
373 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
374 ,
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
375 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
376 ,
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
377 stream
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
378 ))))
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
379 ;
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
380 if (only_file_2
only_file_2Description
TRUEevaluated 45 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 12 times by 1 test
Evaluated by:
  • comm
)
12-45
381 -
382 (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
__extension__ ((__builtin_constant_p (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
383 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
384 ) && __builtin_constant_p (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
385 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
386 ) && (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
387 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
388 ) * (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
389 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
390 ) <= 8 && (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
391 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
392 ) != 0) ? ({ const char *__ptr = (const char *) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
393 col_sep
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
394 ); FILE *__stream = (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
395 stream
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
396 ); size_t __cnt; for (__cnt = (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
397 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
398 ) * (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
399 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
400 ); __cnt > 0
__cnt > 0Description
TRUEnever evaluated
FALSEnever evaluated
; --__cnt) if ((
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
__builtin_expect (((__stream)->_IO_write_ptr >= (__stream)->_IO_write_end), 0)
__builtin_expe...write_end), 0)Description
TRUEnever evaluated
FALSEnever evaluated
? __overflow (__stream, (unsigned char) (*__ptr++)) : (unsigned char) (*(__stream)->_IO_write_ptr++ = (*__ptr++))) == (-1)
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
) break;
never executed: break;
((size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
0-45
401 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
402 ) * (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
403 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
404 ) - __cnt) / (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
405 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
406 ); }) : (((__builtin_constant_p (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
407 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
408 ) && (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
409 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
410 ) == 0) || (__builtin_constant_p (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
411 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
412 ) && (size_t) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
413 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
414 ) == 0)) ? ((void) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
415 col_sep
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
416 ), (void) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
417 stream
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
418 ), (void) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
419 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
420 ), (void) (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
421 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
422 ), (size_t) 0) : fwrite_unlocked (
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
423 col_sep
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
424 ,
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
425 1
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
426 ,
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
427 col_sep_len
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
428 ,
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
429 stream
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
430 ))))
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
431 ;
executed 45 times by 1 test: (__extension__ ((__builtin_constant_p ( 1 ) && __builtin_constant_p ( col_sep_len ) && (size_t) ( 1 ) * (size_t) ( col_sep_len ) <= 8 && (size_t) ( 1 ) != 0) ? ({ const char *__ptr = (const char *) ( col_sep ); FILE *__stream = ( stream ); size_t __cnt; f...) && (size_t) ( 1 ) == 0) || (__builtin_constant_p ( col_sep_len ) && (size_t) ( col_sep_len ) == 0)) ? ((void) ( col_sep ), (void) ( stream ), (void) ( 1 ), (void) ( col_sep_len ), (size_t) 0) : fwrite_unlocked ( col_sep , 1 , col_sep_len , stream )))) ;
Executed by:
  • comm
45
432 break;
executed 57 times by 1 test: break;
Executed by:
  • comm
57
433 }-
434-
435 -
436 (__extension__ ((__builtin_constant_p (-
437 sizeof (char)-
438 ) && __builtin_constant_p (-
439 line->length-
440 ) && (size_t) (-
441 sizeof (char)-
442 ) * (size_t) (-
443 line->length-
444 ) <= 8 && (size_t) (-
445 sizeof (char)-
446 ) != 0) ? ({ const char *__ptr = (const char *) (-
447 line->buffer-
448 ); FILE *__stream = (-
449 stream-
450 ); size_t __cnt; for (__cnt = (size_t) (-
451 sizeof (char)-
452 ) * (size_t) (-
453 line->length-
454 ); __cnt > 0
__cnt > 0Description
TRUEnever evaluated
FALSEnever evaluated
; --__cnt) if ((
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
__builtin_expect (((__stream)->_IO_write_ptr >= (__stream)->_IO_write_end), 0)
__builtin_expe...write_end), 0)Description
TRUEnever evaluated
FALSEnever evaluated
? __overflow (__stream, (unsigned char) (*__ptr++)) : (unsigned char) (*(__stream)->_IO_write_ptr++ = (*__ptr++))) == (-1)
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
) break;
never executed: break;
((size_t) (
0
455 sizeof (char)-
456 ) * (size_t) (-
457 line->length-
458 ) - __cnt) / (size_t) (-
459 sizeof (char)-
460 ); }) : (((__builtin_constant_p (-
461 sizeof (char)-
462 ) && (size_t) (-
463 sizeof (char)-
464 ) == 0) || (__builtin_constant_p (-
465 line->length-
466 ) && (size_t) (-
467 line->length-
468 ) == 0)) ? ((void) (-
469 line->buffer-
470 ), (void) (-
471 stream-
472 ), (void) (-
473 sizeof (char)-
474 ), (void) (-
475 line->length-
476 ), (size_t) 0) : fwrite_unlocked (-
477 line->buffer-
478 , -
479 sizeof (char)-
480 , -
481 line->length-
482 , -
483 stream-
484 ))))-
485 ;-
486}
executed 120 times by 1 test: end of block
Executed by:
  • comm
120
487static void-
488check_order (struct linebuffer const *prev,-
489 struct linebuffer const *current,-
490 int whatfile)-
491{-
492-
493 if (check_input_order != CHECK_ORDER_DISABLED
check_input_or...ORDER_DISABLEDDescription
TRUEevaluated 253 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 4 times by 1 test
Evaluated by:
  • comm
4-253
494 && ((
(check_input_o...ORDER_ENABLED)Description
TRUEevaluated 5 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 248 times by 1 test
Evaluated by:
  • comm
check_input_order == CHECK_ORDER_ENABLED)
(check_input_o...ORDER_ENABLED)Description
TRUEevaluated 5 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 248 times by 1 test
Evaluated by:
  • comm
|| seen_unpairable
seen_unpairableDescription
TRUEevaluated 236 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 12 times by 1 test
Evaluated by:
  • comm
))
5-248
495 {-
496 if (!issued_disorder_warning[whatfile - 1]
!issued_disord...[whatfile - 1]Description
TRUEevaluated 236 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 5 times by 1 test
Evaluated by:
  • comm
)
5-236
497 {-
498 int order;-
499-
500 if (hard_LC_COLLATE
hard_LC_COLLATEDescription
TRUEnever evaluated
FALSEevaluated 236 times by 1 test
Evaluated by:
  • comm
)
0-236
501 order = xmemcoll (prev->buffer, prev->length - 1,
never executed: order = xmemcoll (prev->buffer, prev->length - 1, current->buffer, current->length - 1);
0
502 current->buffer, current->length - 1);
never executed: order = xmemcoll (prev->buffer, prev->length - 1, current->buffer, current->length - 1);
0
503 else-
504 order = memcmp2 (prev->buffer, prev->length - 1,
executed 236 times by 1 test: order = memcmp2 (prev->buffer, prev->length - 1, current->buffer, current->length - 1);
Executed by:
  • comm
236
505 current->buffer, current->length - 1);
executed 236 times by 1 test: order = memcmp2 (prev->buffer, prev->length - 1, current->buffer, current->length - 1);
Executed by:
  • comm
236
506-
507 if (0 < order
0 < orderDescription
TRUEevaluated 10 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 226 times by 1 test
Evaluated by:
  • comm
)
10-226
508 {-
509 error ((check_input_order == CHECK_ORDER_ENABLED-
510 ? -
511 1 -
512 : 0),-
513 0, -
514 dcgettext (((void *)0), -
515 "file %d is not in sorted order"-
516 , 5)-
517 , whatfile);-
518-
519-
520-
521 issued_disorder_warning[whatfile - 1] = -
522 1-
523 ;-
524 }
executed 7 times by 1 test: end of block
Executed by:
  • comm
7
525 }
executed 233 times by 1 test: end of block
Executed by:
  • comm
233
526 }
executed 238 times by 1 test: end of block
Executed by:
  • comm
238
527}
executed 254 times by 1 test: end of block
Executed by:
  • comm
254
528-
529-
530-
531-
532-
533-
534static void-
535compare_files (char **infiles)-
536{-
537-
538 struct linebuffer lba[2][4];-
539-
540-
541-
542 struct linebuffer *thisline[2];-
543-
544-
545-
546-
547 struct linebuffer *all_line[2][4];-
548-
549-
550 int alt[2][3];-
551-
552-
553 FILE *streams[2];-
554-
555-
556 uintmax_t total[] = {0, 0, 0};-
557-
558 int i, j;-
559-
560-
561 for (i = 0; i < 2
i < 2Description
TRUEevaluated 70 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 35 times by 1 test
Evaluated by:
  • comm
; i++)
35-70
562 {-
563 for (j = 0; j < 4
j < 4Description
TRUEevaluated 280 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
; j++)
70-280
564 {-
565 initbuffer (&lba[i][j]);-
566 all_line[i][j] = &lba[i][j];-
567 }
executed 280 times by 1 test: end of block
Executed by:
  • comm
280
568 alt[i][0] = 0;-
569 alt[i][1] = 0;-
570 alt[i][2] = 0;-
571 streams[i] = ((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
572 __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
573 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
574 ) && __builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
575 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
576 ) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
577 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
578 ), __s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
579 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
580 ), (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
581 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
582 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
583 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
584 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
585 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
586 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
587 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
588 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
589 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
590 ,
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
591 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
592 ) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
593 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
594 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
595 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
596 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
597 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
598 ) == 1) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
599 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
600 ), __s1_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
601 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
602 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
603 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
604 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
605 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
606 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
607 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
608 ,
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
609 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
610 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
611 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
612 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
613 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
614 ))[0] - __s2[0]); if (__s1_len > 0
__s1_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
615 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
616 ))[1] - __s2[1]); if (__s1_len > 1
__s1_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
617 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
618 ))[2] - __s2[2]); if (__s1_len > 2
__s1_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( infiles[i] ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
619 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
never executed: __result = (((const unsigned char *) (const char *) ( infiles[i] ))[3] - __s2[3]);
0-70
620 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
never executed: __result = (((const unsigned char *) (const char *) ( infiles[i] ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
621 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
622 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
623 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
624 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
625 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
626 ) == 1) && (__s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
627 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
628 ), __s2_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
629 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
630 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
631 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
632 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
633 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
634 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
635 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
636 ,
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
637 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
638 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
639 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
640 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
641 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
642 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEevaluated 70 times by 1 test
Evaluated by:
  • comm
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
643 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
644 ))[1] - __s2[1]); if (__s2_len > 1
__s2_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
645 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
646 ))[2] - __s2[2]); if (__s2_len > 2
__s2_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
647 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
0-70
648 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
649 infiles[i]
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
650 ,
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
651 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
652 )))); })
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
0-70
653 == 0)
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
?
0-70
654 stdin -
655 : fopen_safer (infiles[i], "r"));-
656 if (!streams[i]
!streams[i]Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
)
0-70
657 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
658 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
659 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
660 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
661 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
662 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
663 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
664 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
665 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
666 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
667 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
668 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
669 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
670 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
671 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
672-
673 fadvise (streams[i], FADVISE_SEQUENTIAL);-
674-
675 thisline[i] = readlinebuffer_delim (all_line[i][alt[i][0]], streams[i],-
676 delim);-
677 if (ferror_unlocked (streams[i])
ferror_unlocked (streams[i])Description
TRUEnever evaluated
FALSEevaluated 70 times by 1 test
Evaluated by:
  • comm
)
0-70
678 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
679 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
680 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
681 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
682 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
683 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
684 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
685 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
686 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
687 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
688 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
689 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
690 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
691 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
692 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
693 }
executed 70 times by 1 test: end of block
Executed by:
  • comm
70
694-
695 while (thisline[0]
thisline[0]Description
TRUEevaluated 168 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 38 times by 1 test
Evaluated by:
  • comm
|| thisline[1]
thisline[1]Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 32 times by 1 test
Evaluated by:
  • comm
)
6-168
696 {-
697 int order;-
698 -
699 _Bool -
700 fill_up[2] = { -
701 0-
702 , -
703 0 -
704 };-
705-
706-
707-
708 if (!thisline[0]
!thisline[0]Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 168 times by 1 test
Evaluated by:
  • comm
)
6-168
709 order = 1;
executed 6 times by 1 test: order = 1;
Executed by:
  • comm
6
710 else if (!thisline[1]
!thisline[1]Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 166 times by 1 test
Evaluated by:
  • comm
)
2-166
711 order = -1;
executed 2 times by 1 test: order = -1;
Executed by:
  • comm
2
712 else-
713 {-
714 if (hard_LC_COLLATE
hard_LC_COLLATEDescription
TRUEnever evaluated
FALSEevaluated 166 times by 1 test
Evaluated by:
  • comm
)
0-166
715 order = xmemcoll (thisline[0]->buffer, thisline[0]->length - 1,
never executed: order = xmemcoll (thisline[0]->buffer, thisline[0]->length - 1, thisline[1]->buffer, thisline[1]->length - 1);
0
716 thisline[1]->buffer, thisline[1]->length - 1);
never executed: order = xmemcoll (thisline[0]->buffer, thisline[0]->length - 1, thisline[1]->buffer, thisline[1]->length - 1);
0
717 else-
718 {-
719 size_t len = ((
(thisline[0]->...ne[1]->length)Description
TRUEnever evaluated
FALSEevaluated 166 times by 1 test
Evaluated by:
  • comm
thisline[0]->length) < (thisline[1]->length)
(thisline[0]->...ne[1]->length)Description
TRUEnever evaluated
FALSEevaluated 166 times by 1 test
Evaluated by:
  • comm
? (thisline[0]->length) : (thisline[1]->length)) - 1;
0-166
720 order = memcmp (thisline[0]->buffer, thisline[1]->buffer, len);-
721 if (order == 0
order == 0Description
TRUEevaluated 84 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 82 times by 1 test
Evaluated by:
  • comm
)
82-84
722 order = (thisline[0]->length < thisline[1]->length
thisline[0]->l...ine[1]->lengthDescription
TRUEnever evaluated
FALSEevaluated 84 times by 1 test
Evaluated by:
  • comm
executed 84 times by 1 test: order = (thisline[0]->length < thisline[1]->length ? -1 : thisline[0]->length != thisline[1]->length);
Executed by:
  • comm
0-84
723 ? -1
executed 84 times by 1 test: order = (thisline[0]->length < thisline[1]->length ? -1 : thisline[0]->length != thisline[1]->length);
Executed by:
  • comm
84
724 : thisline[0]->length != thisline[1]->length);
executed 84 times by 1 test: order = (thisline[0]->length < thisline[1]->length ? -1 : thisline[0]->length != thisline[1]->length);
Executed by:
  • comm
84
725 }
executed 166 times by 1 test: end of block
Executed by:
  • comm
166
726 }-
727-
728-
729 if (order == 0
order == 0Description
TRUEevaluated 84 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 90 times by 1 test
Evaluated by:
  • comm
)
84-90
730 {-
731-
732 total[2]++;-
733 writeline (thisline[1], -
734 stdout-
735 , 3);-
736 }
executed 84 times by 1 test: end of block
Executed by:
  • comm
84
737 else-
738 {-
739 seen_unpairable = -
740 1-
741 ;-
742 if (order <= 0
order <= 0Description
TRUEevaluated 34 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 56 times by 1 test
Evaluated by:
  • comm
)
34-56
743 {-
744-
745 total[0]++;-
746 writeline (thisline[0], -
747 stdout-
748 , 1);-
749 }
executed 34 times by 1 test: end of block
Executed by:
  • comm
34
750 else-
751 {-
752-
753 total[1]++;-
754 writeline (thisline[1], -
755 stdout-
756 , 2);-
757 }
executed 56 times by 1 test: end of block
Executed by:
  • comm
56
758 }-
759-
760-
761-
762 if (0 <= order
0 <= orderDescription
TRUEevaluated 140 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 34 times by 1 test
Evaluated by:
  • comm
)
34-140
763 fill_up[1] =
executed 140 times by 1 test: fill_up[1] = 1 ;
Executed by:
  • comm
140
764 1
executed 140 times by 1 test: fill_up[1] = 1 ;
Executed by:
  • comm
140
765 ;
executed 140 times by 1 test: fill_up[1] = 1 ;
Executed by:
  • comm
140
766 if (order <= 0
order <= 0Description
TRUEevaluated 118 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 56 times by 1 test
Evaluated by:
  • comm
)
56-118
767 fill_up[0] =
executed 118 times by 1 test: fill_up[0] = 1 ;
Executed by:
  • comm
118
768 1
executed 118 times by 1 test: fill_up[0] = 1 ;
Executed by:
  • comm
118
769 ;
executed 118 times by 1 test: fill_up[0] = 1 ;
Executed by:
  • comm
118
770-
771 for (i = 0; i < 2
i < 2Description
TRUEevaluated 346 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 171 times by 1 test
Evaluated by:
  • comm
; i++)
171-346
772 if (fill_up[i]
fill_up[i]Description
TRUEevaluated 257 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 89 times by 1 test
Evaluated by:
  • comm
)
89-257
773 {-
774-
775 alt[i][2] = alt[i][1];-
776 alt[i][1] = alt[i][0];-
777 alt[i][0] = (alt[i][0] + 1) & 0x03;-
778-
779 thisline[i] = readlinebuffer_delim (all_line[i][alt[i][0]],-
780 streams[i], delim);-
781-
782 if (thisline[i]
thisline[i]Description
TRUEevaluated 192 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 65 times by 1 test
Evaluated by:
  • comm
)
65-192
783 check_order (all_line[i][alt[i][1]], thisline[i], i + 1);
executed 192 times by 1 test: check_order (all_line[i][alt[i][1]], thisline[i], i + 1);
Executed by:
  • comm
192
784-
785-
786-
787-
788 else if (all_line[i][alt[i][2]]->buffer
all_line[i][alt[i][2]]->bufferDescription
TRUEevaluated 65 times by 1 test
Evaluated by:
  • comm
FALSEnever evaluated
)
0-65
789 check_order (all_line[i][alt[i][2]],
executed 65 times by 1 test: check_order (all_line[i][alt[i][2]], all_line[i][alt[i][1]], i + 1);
Executed by:
  • comm
65
790 all_line[i][alt[i][1]], i + 1);
executed 65 times by 1 test: check_order (all_line[i][alt[i][2]], all_line[i][alt[i][1]], i + 1);
Executed by:
  • comm
65
791-
792 if (ferror_unlocked (streams[i])
ferror_unlocked (streams[i])Description
TRUEnever evaluated
FALSEevaluated 254 times by 1 test
Evaluated by:
  • comm
)
0-254
793 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
794 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
795 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
796 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
797 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
798 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
799 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
800 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
801 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
802 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
803 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
804 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
805 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
806 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
807 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
808-
809 fill_up[i] = -
810 0-
811 ;-
812 }
executed 254 times by 1 test: end of block
Executed by:
  • comm
254
813 }
executed 171 times by 1 test: end of block
Executed by:
  • comm
171
814-
815 for (i = 0; i < 2
i < 2Description
TRUEevaluated 64 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 32 times by 1 test
Evaluated by:
  • comm
; i++)
32-64
816 if (-
817 rpl_fclose
rpl_fclose (streams[i]) != 0Description
TRUEnever evaluated
FALSEevaluated 64 times by 1 test
Evaluated by:
  • comm
0-64
818 (streams[i]) != 0
rpl_fclose (streams[i]) != 0Description
TRUEnever evaluated
FALSEevaluated 64 times by 1 test
Evaluated by:
  • comm
)
0-64
819 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
820 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
821 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
822 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
823 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
824 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
825 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
826 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
827 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
828 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
829 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
830 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
831 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
832 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
833 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_locatio...shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infiles[i])), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
834-
835 if (total_option
total_optionDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 28 times by 1 test
Evaluated by:
  • comm
)
4-28
836 {-
837-
838 char buf1[((((((sizeof (uintmax_t) * 8) - (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) + 1)];-
839 char buf2[((((((sizeof (uintmax_t) * 8) - (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) + 1)];-
840 char buf3[((((((sizeof (uintmax_t) * 8) - (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) + 1)];-
841 printf ("%s%s%s%s%s%s%s%c",-
842 umaxtostr (total[0], buf1), col_sep,-
843 umaxtostr (total[1], buf2), col_sep,-
844 umaxtostr (total[2], buf3), col_sep,-
845 -
846 dcgettext (((void *)0), -
847 "total"-
848 , 5)-
849 , delim);-
850 }
executed 4 times by 1 test: end of block
Executed by:
  • comm
4
851}
executed 32 times by 1 test: end of block
Executed by:
  • comm
32
852-
853int-
854main (int argc, char **argv)-
855{-
856 int c;-
857-
858 ;-
859 set_program_name (argv[0]);-
860 setlocale (-
861 6-
862 , "");-
863 bindtextdomain ("coreutils", "/usr/local/share/locale");-
864 textdomain ("coreutils");-
865 hard_LC_COLLATE = hard_locale (-
866 3-
867 );-
868-
869 atexit (close_stdout);-
870-
871 only_file_1 = -
872 1-
873 ;-
874 only_file_2 = -
875 1-
876 ;-
877 both = -
878 1-
879 ;-
880-
881 seen_unpairable = -
882 0-
883 ;-
884 issued_disorder_warning[0] = issued_disorder_warning[1] = -
885 0-
886 ;-
887 check_input_order = CHECK_ORDER_DEFAULT;-
888 total_option = -
889 0-
890 ;-
891-
892 while ((
(c = getopt_lo... *)0) )) != -1Description
TRUEevaluated 83 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 38 times by 1 test
Evaluated by:
  • comm
c = getopt_long (argc, argv, "123z", long_options,
(c = getopt_lo... *)0) )) != -1Description
TRUEevaluated 83 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 38 times by 1 test
Evaluated by:
  • comm
38-83
893 ((void *)0)
(c = getopt_lo... *)0) )) != -1Description
TRUEevaluated 83 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 38 times by 1 test
Evaluated by:
  • comm
38-83
894 )) != -1
(c = getopt_lo... *)0) )) != -1Description
TRUEevaluated 83 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 38 times by 1 test
Evaluated by:
  • comm
)
38-83
895 switch (c)-
896 {-
897 case
executed 10 times by 1 test: case '1':
Executed by:
  • comm
'1':
executed 10 times by 1 test: case '1':
Executed by:
  • comm
10
898 only_file_1 = -
899 0-
900 ;-
901 break;
executed 10 times by 1 test: break;
Executed by:
  • comm
10
902-
903 case
executed 10 times by 1 test: case '2':
Executed by:
  • comm
'2':
executed 10 times by 1 test: case '2':
Executed by:
  • comm
10
904 only_file_2 = -
905 0-
906 ;-
907 break;
executed 10 times by 1 test: break;
Executed by:
  • comm
10
908-
909 case
executed 10 times by 1 test: case '3':
Executed by:
  • comm
'3':
executed 10 times by 1 test: case '3':
Executed by:
  • comm
10
910 both = -
911 0-
912 ;-
913 break;
executed 10 times by 1 test: break;
Executed by:
  • comm
10
914-
915 case
executed 13 times by 1 test: case 'z':
Executed by:
  • comm
'z':
executed 13 times by 1 test: case 'z':
Executed by:
  • comm
13
916 delim = '\0';-
917 break;
executed 13 times by 1 test: break;
Executed by:
  • comm
13
918-
919 case
executed 2 times by 1 test: case NOCHECK_ORDER_OPTION:
Executed by:
  • comm
NOCHECK_ORDER_OPTION:
executed 2 times by 1 test: case NOCHECK_ORDER_OPTION:
Executed by:
  • comm
2
920 check_input_order = CHECK_ORDER_DISABLED;-
921 break;
executed 2 times by 1 test: break;
Executed by:
  • comm
2
922-
923 case
executed 4 times by 1 test: case CHECK_ORDER_OPTION:
Executed by:
  • comm
CHECK_ORDER_OPTION:
executed 4 times by 1 test: case CHECK_ORDER_OPTION:
Executed by:
  • comm
4
924 check_input_order = CHECK_ORDER_ENABLED;-
925 break;
executed 4 times by 1 test: break;
Executed by:
  • comm
4
926-
927 case
executed 10 times by 1 test: case OUTPUT_DELIMITER_OPTION:
Executed by:
  • comm
OUTPUT_DELIMITER_OPTION:
executed 10 times by 1 test: case OUTPUT_DELIMITER_OPTION:
Executed by:
  • comm
10
928 if (col_sep_len
col_sep_lenDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 8 times by 1 test
Evaluated by:
  • comm
&& !(
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1-8
929 __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
930 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
931 ) && __builtin_constant_p (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
932 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
933 ) && (__s1_len = __builtin_strlen (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
934 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
935 ), __s2_len = __builtin_strlen (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
936 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
937 ), (!((size_t)(const void *)((
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
938 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
939 ) + 1) - (size_t)(const void *)(
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
940 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
941 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
942 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
943 ) + 1) - (size_t)(const void *)(
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
944 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
945 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
946 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
947 ,
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
948 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
949 ) : (__builtin_constant_p (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
950 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
951 ) && ((size_t)(const void *)((
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
952 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
953 ) + 1) - (size_t)(const void *)(
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
954 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
955 ) == 1) && (__s1_len = __builtin_strlen (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
956 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
957 ), __s1_len < 4) ? (__builtin_constant_p (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
958 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
959 ) && ((size_t)(const void *)((
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
960 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
961 ) + 1) - (size_t)(const void *)(
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
962 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
963 ) == 1) ? __builtin_strcmp (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
964 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
965 ,
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
966 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
967 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
968 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
969 ); int __result = (((const unsigned char *) (const char *) (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
970 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
971 ))[0] - __s2[0]); if (__s1_len > 0
__s1_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
0-1
972 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
973 ))[1] - __s2[1]); if (__s1_len > 1
__s1_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
0-1
974 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
975 ))[2] - __s2[2]); if (__s1_len > 2
__s1_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( col_sep ))[3] - __s2[3]);
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
0-1
976 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
never executed: __result = (((const unsigned char *) (const char *) ( col_sep ))[3] - __s2[3]);
0-1
977 ))[3] - __s2[3]);
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
never executed: __result = (((const unsigned char *) (const char *) ( col_sep ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
0-1
978 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
979 ) && ((size_t)(const void *)((
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
980 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
981 ) + 1) - (size_t)(const void *)(
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
982 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
983 ) == 1) && (__s2_len = __builtin_strlen (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
984 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
985 ), __s2_len < 4) ? (__builtin_constant_p (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
986 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
987 ) && ((size_t)(const void *)((
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
988 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
989 ) + 1) - (size_t)(const void *)(
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
990 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
991 ) == 1) ? __builtin_strcmp (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
992 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
993 ,
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
994 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
995 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
996 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
997 ); int __result = (((const unsigned char *) (const char *) (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
998 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
999 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
0-1
1000 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
1001 ))[1] - __s2[1]); if (__s2_len > 1
__s2_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
0-1
1002 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
1003 ))[2] - __s2[2]); if (__s2_len > 2
__s2_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
0-1
1004 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
0-1
1005 ))[3] - __s2[3]);
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : __builtin_strcmp (
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
0-1
1006 col_sep
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
1007 ,
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
1008 optarg
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
1009 )))); })
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
1
1010 == 0)
!( __extension...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
)
1
1011 ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
!!sizeof (struct { _Static_assert (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1012 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1013 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1014 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1015 , 0,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1016 dcgettext (((void *)0),
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1017 "multiple output delimiters specified"
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1018 , 5)
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1019 ), ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1020 0
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1021 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1022 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1023 , 0,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1024 dcgettext (((void *)0),
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1025 "multiple output delimiters specified"
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1026 , 5)
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1027 ), ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1028 0
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1029 ) ? (void) 0 : __builtin_unreachable ()))));
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple output delimiters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "multiple output delimiters specified" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • comm
1
1030 col_sep = optarg;-
1031 col_sep_len = *
*optargDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 2 times by 1 test
Evaluated by:
  • comm
optarg
*optargDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 2 times by 1 test
Evaluated by:
  • comm
? strlen (optarg) : 1;
2-7
1032 break;
executed 9 times by 1 test: break;
Executed by:
  • comm
9
1033-
1034 case
executed 5 times by 1 test: case TOTAL_OPTION:
Executed by:
  • comm
TOTAL_OPTION:
executed 5 times by 1 test: case TOTAL_OPTION:
Executed by:
  • comm
5
1035 total_option = -
1036 1-
1037 ;-
1038 break;
executed 5 times by 1 test: break;
Executed by:
  • comm
5
1039-
1040 case
executed 12 times by 1 test: case GETOPT_HELP_CHAR:
Executed by:
  • comm
GETOPT_HELP_CHAR:
executed 12 times by 1 test: case GETOPT_HELP_CHAR:
Executed by:
  • comm
usage (
12
1041 0-
1042 ); break;
never executed: break;
;
0
1043-
1044 case
executed 4 times by 1 test: case GETOPT_VERSION_CHAR:
Executed by:
  • comm
GETOPT_VERSION_CHAR:
executed 4 times by 1 test: case GETOPT_VERSION_CHAR:
Executed by:
  • comm
version_etc (
4
1045 stdout-
1046 , "comm", "GNU coreutils", Version, ("Richard M. Stallman"), ("David MacKenzie"), (char *) -
1047 ((void *)0)-
1048 ); exit (
executed 4 times by 1 test: exit ( 0 );
Executed by:
  • comm
4
1049 0
executed 4 times by 1 test: exit ( 0 );
Executed by:
  • comm
4
1050 );
executed 4 times by 1 test: exit ( 0 );
Executed by:
  • comm
break;
never executed: break;
;
0-4
1051-
1052 default
executed 3 times by 1 test: default:
Executed by:
  • comm
:
executed 3 times by 1 test: default:
Executed by:
  • comm
3
1053 usage (-
1054 1-
1055 );-
1056 }
never executed: end of block
0
1057-
1058 if (! col_sep_len
! col_sep_lenDescription
TRUEevaluated 32 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 6 times by 1 test
Evaluated by:
  • comm
)
6-32
1059 col_sep_len = 1;
executed 32 times by 1 test: col_sep_len = 1;
Executed by:
  • comm
32
1060-
1061 if (argc - optind < 2
argc - optind < 2Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 36 times by 1 test
Evaluated by:
  • comm
)
2-36
1062 {-
1063 if (argc <= optind
argc <= optindDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 1 time by 1 test
Evaluated by:
  • comm
)
1
1064 error (0, 0,
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );
Executed by:
  • comm
1
1065 dcgettext (((void *)0),
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );
Executed by:
  • comm
1
1066 "missing operand"
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );
Executed by:
  • comm
1
1067 , 5)
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );
Executed by:
  • comm
1
1068 );
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );
Executed by:
  • comm
1
1069 else-
1070 error (0, 0,
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand after %s" , 5) , quote (argv[argc - 1]));
Executed by:
  • comm
1
1071 dcgettext (((void *)0),
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand after %s" , 5) , quote (argv[argc - 1]));
Executed by:
  • comm
1
1072 "missing operand after %s"
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand after %s" , 5) , quote (argv[argc - 1]));
Executed by:
  • comm
1
1073 , 5)
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand after %s" , 5) , quote (argv[argc - 1]));
Executed by:
  • comm
1
1074 , quote (argv[argc - 1]));
executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand after %s" , 5) , quote (argv[argc - 1]));
Executed by:
  • comm
1
1075 usage (-
1076 1-
1077 );-
1078 }
never executed: end of block
0
1079-
1080 if (2 < argc - optind
2 < argc - optindDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • comm
FALSEevaluated 35 times by 1 test
Evaluated by:
  • comm
)
1-35
1081 {-
1082 error (0, 0, -
1083 dcgettext (((void *)0), -
1084 "extra operand %s"-
1085 , 5)-
1086 , quote (argv[optind + 2]));-
1087 usage (-
1088 1-
1089 );-
1090 }
never executed: end of block
0
1091-
1092 compare_files (argv + optind);-
1093-
1094 if (issued_disorder_warning[0]
issued_disorder_warning[0]Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 29 times by 1 test
Evaluated by:
  • comm
|| issued_disorder_warning[1]
issued_disorder_warning[1]Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • comm
FALSEevaluated 27 times by 1 test
Evaluated by:
  • comm
)
2-29
1095 return
executed 5 times by 1 test: return 1 ;
Executed by:
  • comm
executed 5 times by 1 test: return 1 ;
Executed by:
  • comm
5
1096 1
executed 5 times by 1 test: return 1 ;
Executed by:
  • comm
5
1097 ;
executed 5 times by 1 test: return 1 ;
Executed by:
  • comm
5
1098 else-
1099 return
executed 27 times by 1 test: return 0 ;
Executed by:
  • comm
executed 27 times by 1 test: return 0 ;
Executed by:
  • comm
27
1100 0
executed 27 times by 1 test: return 0 ;
Executed by:
  • comm
27
1101 ;
executed 27 times by 1 test: return 0 ;
Executed by:
  • comm
27
1102}-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.1.2