| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/coreutils/src/src/comm.c |
| Switch to Source code | Preprocessed file |
| Line | Source | Count | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | - | |||||||||||||||||||||||||
| 2 | - | |||||||||||||||||||||||||
| 3 | static | - | ||||||||||||||||||||||||
| 4 | _Bool | - | ||||||||||||||||||||||||
| 5 | hard_LC_COLLATE; | - | ||||||||||||||||||||||||
| 6 | - | |||||||||||||||||||||||||
| 7 | - | |||||||||||||||||||||||||
| 8 | static | - | ||||||||||||||||||||||||
| 9 | _Bool | - | ||||||||||||||||||||||||
| 10 | only_file_1; | - | ||||||||||||||||||||||||
| 11 | - | |||||||||||||||||||||||||
| 12 | - | |||||||||||||||||||||||||
| 13 | static | - | ||||||||||||||||||||||||
| 14 | _Bool | - | ||||||||||||||||||||||||
| 15 | only_file_2; | - | ||||||||||||||||||||||||
| 16 | - | |||||||||||||||||||||||||
| 17 | - | |||||||||||||||||||||||||
| 18 | static | - | ||||||||||||||||||||||||
| 19 | _Bool | - | ||||||||||||||||||||||||
| 20 | both; | - | ||||||||||||||||||||||||
| 21 | - | |||||||||||||||||||||||||
| 22 | - | |||||||||||||||||||||||||
| 23 | static | - | ||||||||||||||||||||||||
| 24 | _Bool | - | ||||||||||||||||||||||||
| 25 | seen_unpairable; | - | ||||||||||||||||||||||||
| 26 | - | |||||||||||||||||||||||||
| 27 | - | |||||||||||||||||||||||||
| 28 | static | - | ||||||||||||||||||||||||
| 29 | _Bool | - | ||||||||||||||||||||||||
| 30 | issued_disorder_warning[2]; | - | ||||||||||||||||||||||||
| 31 | - | |||||||||||||||||||||||||
| 32 | - | |||||||||||||||||||||||||
| 33 | static unsigned char delim = '\n'; | - | ||||||||||||||||||||||||
| 34 | - | |||||||||||||||||||||||||
| 35 | - | |||||||||||||||||||||||||
| 36 | static | - | ||||||||||||||||||||||||
| 37 | _Bool | - | ||||||||||||||||||||||||
| 38 | total_option; | - | ||||||||||||||||||||||||
| 39 | - | |||||||||||||||||||||||||
| 40 | - | |||||||||||||||||||||||||
| 41 | static enum | - | ||||||||||||||||||||||||
| 42 | { | - | ||||||||||||||||||||||||
| 43 | CHECK_ORDER_DEFAULT, | - | ||||||||||||||||||||||||
| 44 | CHECK_ORDER_ENABLED, | - | ||||||||||||||||||||||||
| 45 | CHECK_ORDER_DISABLED | - | ||||||||||||||||||||||||
| 46 | } check_input_order; | - | ||||||||||||||||||||||||
| 47 | - | |||||||||||||||||||||||||
| 48 | - | |||||||||||||||||||||||||
| 49 | - | |||||||||||||||||||||||||
| 50 | static char const *col_sep = "\t"; | - | ||||||||||||||||||||||||
| 51 | static size_t col_sep_len = 0; | - | ||||||||||||||||||||||||
| 52 | - | |||||||||||||||||||||||||
| 53 | - | |||||||||||||||||||||||||
| 54 | - | |||||||||||||||||||||||||
| 55 | enum | - | ||||||||||||||||||||||||
| 56 | { | - | ||||||||||||||||||||||||
| 57 | CHECK_ORDER_OPTION = 0x7f + 1, | - | ||||||||||||||||||||||||
| 58 | NOCHECK_ORDER_OPTION, | - | ||||||||||||||||||||||||
| 59 | OUTPUT_DELIMITER_OPTION, | - | ||||||||||||||||||||||||
| 60 | TOTAL_OPTION | - | ||||||||||||||||||||||||
| 61 | }; | - | ||||||||||||||||||||||||
| 62 | - | |||||||||||||||||||||||||
| 63 | static 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 | - | |||||||||||||||||||||||||
| 108 | void | - | ||||||||||||||||||||||||
| 109 | usage (int status) | - | ||||||||||||||||||||||||
| 110 | { | - | ||||||||||||||||||||||||
| 111 | if (status !=
| 6-12 | ||||||||||||||||||||||||
| 112 | 0
| 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: while (0);end of blockExecuted by:
| 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 blockExecuted by:
| 12 | ||||||||||||||||||||||||
| 250 | exit (status); executed 18 times by 1 test: exit (status);Executed by:
| 18 | ||||||||||||||||||||||||
| 251 | } | - | ||||||||||||||||||||||||
| 252 | - | |||||||||||||||||||||||||
| 253 | - | |||||||||||||||||||||||||
| 254 | - | |||||||||||||||||||||||||
| 255 | - | |||||||||||||||||||||||||
| 256 | - | |||||||||||||||||||||||||
| 257 | - | |||||||||||||||||||||||||
| 258 | static void | - | ||||||||||||||||||||||||
| 259 | writeline (struct linebuffer const *line, FILE *stream, int class) | - | ||||||||||||||||||||||||
| 260 | { | - | ||||||||||||||||||||||||
| 261 | switch (class) | - | ||||||||||||||||||||||||
| 262 | { | - | ||||||||||||||||||||||||
| 263 | case executed 34 times by 1 test: 1:case 1:Executed by:
executed 34 times by 1 test: case 1:Executed by:
| 34 | ||||||||||||||||||||||||
| 264 | if (!only_file_1
| 9-25 | ||||||||||||||||||||||||
| 265 | return; executed 9 times by 1 test: return;Executed by:
| 9 | ||||||||||||||||||||||||
| 266 | break; executed 25 times by 1 test: break;Executed by:
| 25 | ||||||||||||||||||||||||
| 267 | - | |||||||||||||||||||||||||
| 268 | case executed 56 times by 1 test: 2:case 2:Executed by:
executed 56 times by 1 test: case 2:Executed by:
| 56 | ||||||||||||||||||||||||
| 269 | if (!only_file_2
| 18-38 | ||||||||||||||||||||||||
| 270 | return; executed 18 times by 1 test: return;Executed by:
| 18 | ||||||||||||||||||||||||
| 271 | if (only_file_1
| 8-30 | ||||||||||||||||||||||||
| 272 | - | |||||||||||||||||||||||||
| 273 | ( executed 30 times by 1 test: __extension__ ((__builtin_constant_p ((__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:
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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 30 | ||||||||||||||||||||||||
| 291 | ); __cnt > 0
never executed: ((size_t) (break;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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 30 | ||||||||||||||||||||||||
| 323 | break; executed 38 times by 1 test: break;Executed by:
| 38 | ||||||||||||||||||||||||
| 324 | - | |||||||||||||||||||||||||
| 325 | case executed 84 times by 1 test: 3:case 3:Executed by:
executed 84 times by 1 test: case 3:Executed by:
| 84 | ||||||||||||||||||||||||
| 326 | if (!both
| 27-57 | ||||||||||||||||||||||||
| 327 | return; executed 27 times by 1 test: return;Executed by:
| 27 | ||||||||||||||||||||||||
| 328 | if (only_file_1
| 12-45 | ||||||||||||||||||||||||
| 329 | - | |||||||||||||||||||||||||
| 330 | ( executed 45 times by 1 test: __extension__ ((__builtin_constant_p ((__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:
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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 45 | ||||||||||||||||||||||||
| 348 | ); __cnt > 0
never executed: ((size_t) (break;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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 45 | ||||||||||||||||||||||||
| 380 | if (only_file_2
| 12-45 | ||||||||||||||||||||||||
| 381 | - | |||||||||||||||||||||||||
| 382 | ( executed 45 times by 1 test: __extension__ ((__builtin_constant_p ((__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:
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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 45 | ||||||||||||||||||||||||
| 400 | ); __cnt > 0
never executed: ((size_t) (break;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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 45 | ||||||||||||||||||||||||
| 432 | break; executed 57 times by 1 test: break;Executed by:
| 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
never executed: ((size_t) (break; | 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 blockExecuted by:
| 120 | ||||||||||||||||||||||||
| 487 | static void | - | ||||||||||||||||||||||||
| 488 | check_order (struct linebuffer const *prev, | - | ||||||||||||||||||||||||
| 489 | struct linebuffer const *current, | - | ||||||||||||||||||||||||
| 490 | int whatfile) | - | ||||||||||||||||||||||||
| 491 | { | - | ||||||||||||||||||||||||
| 492 | - | |||||||||||||||||||||||||
| 493 | if (check_input_order != CHECK_ORDER_DISABLED
| 4-253 | ||||||||||||||||||||||||
| 494 | && ((
| 5-248 | ||||||||||||||||||||||||
| 495 | { | - | ||||||||||||||||||||||||
| 496 | if (!issued_disorder_warning[whatfile - 1]
| 5-236 | ||||||||||||||||||||||||
| 497 | { | - | ||||||||||||||||||||||||
| 498 | int order; | - | ||||||||||||||||||||||||
| 499 | - | |||||||||||||||||||||||||
| 500 | if (hard_LC_COLLATE
| 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:
| 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:
| 236 | ||||||||||||||||||||||||
| 506 | - | |||||||||||||||||||||||||
| 507 | if (0 < order
| 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 blockExecuted by:
| 7 | ||||||||||||||||||||||||
| 525 | } executed 233 times by 1 test: end of blockExecuted by:
| 233 | ||||||||||||||||||||||||
| 526 | } executed 238 times by 1 test: end of blockExecuted by:
| 238 | ||||||||||||||||||||||||
| 527 | } executed 254 times by 1 test: end of blockExecuted by:
| 254 | ||||||||||||||||||||||||
| 528 | - | |||||||||||||||||||||||||
| 529 | - | |||||||||||||||||||||||||
| 530 | - | |||||||||||||||||||||||||
| 531 | - | |||||||||||||||||||||||||
| 532 | - | |||||||||||||||||||||||||
| 533 | - | |||||||||||||||||||||||||
| 534 | static void | - | ||||||||||||||||||||||||
| 535 | compare_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
| 35-70 | ||||||||||||||||||||||||
| 562 | { | - | ||||||||||||||||||||||||
| 563 | for (j = 0; j < 4
| 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 blockExecuted by:
| 280 | ||||||||||||||||||||||||
| 568 | alt[i][0] = 0; | - | ||||||||||||||||||||||||
| 569 | alt[i][1] = 0; | - | ||||||||||||||||||||||||
| 570 | alt[i][2] = 0; | - | ||||||||||||||||||||||||
| 571 | streams[i] = ((
| 0-70 | ||||||||||||||||||||||||
| 572 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
| 0-70 | ||||||||||||||||||||||||
| 573 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 574 | ) && __builtin_constant_p (
| 0-70 | ||||||||||||||||||||||||
| 575 | "-"
| 0-70 | ||||||||||||||||||||||||
| 576 | ) && (__s1_len = __builtin_strlen (
| 0-70 | ||||||||||||||||||||||||
| 577 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 578 | ), __s2_len = __builtin_strlen (
| 0-70 | ||||||||||||||||||||||||
| 579 | "-"
| 0-70 | ||||||||||||||||||||||||
| 580 | ), (!((size_t)(const void *)((
| 0-70 | ||||||||||||||||||||||||
| 581 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 582 | ) + 1) - (size_t)(const void *)(
| 0-70 | ||||||||||||||||||||||||
| 583 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 584 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
| 0-70 | ||||||||||||||||||||||||
| 585 | "-"
| 0-70 | ||||||||||||||||||||||||
| 586 | ) + 1) - (size_t)(const void *)(
| 0-70 | ||||||||||||||||||||||||
| 587 | "-"
| 0-70 | ||||||||||||||||||||||||
| 588 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
| 0-70 | ||||||||||||||||||||||||
| 589 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 590 | ,
| 0-70 | ||||||||||||||||||||||||
| 591 | "-"
| 0-70 | ||||||||||||||||||||||||
| 592 | ) : (__builtin_constant_p (
| 0-70 | ||||||||||||||||||||||||
| 593 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 594 | ) && ((size_t)(const void *)((
| 0-70 | ||||||||||||||||||||||||
| 595 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 596 | ) + 1) - (size_t)(const void *)(
| 0-70 | ||||||||||||||||||||||||
| 597 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 598 | ) == 1) && (__s1_len = __builtin_strlen (
| 0-70 | ||||||||||||||||||||||||
| 599 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 600 | ), __s1_len < 4) ? (__builtin_constant_p (
| 0-70 | ||||||||||||||||||||||||
| 601 | "-"
| 0-70 | ||||||||||||||||||||||||
| 602 | ) && ((size_t)(const void *)((
| 0-70 | ||||||||||||||||||||||||
| 603 | "-"
| 0-70 | ||||||||||||||||||||||||
| 604 | ) + 1) - (size_t)(const void *)(
| 0-70 | ||||||||||||||||||||||||
| 605 | "-"
| 0-70 | ||||||||||||||||||||||||
| 606 | ) == 1) ? __builtin_strcmp (
| 0-70 | ||||||||||||||||||||||||
| 607 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 608 | ,
| 0-70 | ||||||||||||||||||||||||
| 609 | "-"
| 0-70 | ||||||||||||||||||||||||
| 610 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
| 0-70 | ||||||||||||||||||||||||
| 611 | "-"
| 0-70 | ||||||||||||||||||||||||
| 612 | ); int __result = (((const unsigned char *) (const char *) (
| 0-70 | ||||||||||||||||||||||||
| 613 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 614 | ))[0] - __s2[0]); if (__s1_len > 0
| 0-70 | ||||||||||||||||||||||||
| 615 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 616 | ))[1] - __s2[1]); if (__s1_len > 1
| 0-70 | ||||||||||||||||||||||||
| 617 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 618 | ))[2] - __s2[2]); if (__s1_len > 2
never executed: __result = (((const unsigned char *) (const char *) ( infiles[i] ))[3] - __s2[3]);
| 0-70 | ||||||||||||||||||||||||
| 619 | infiles[i]
never executed: __result = (((const unsigned char *) (const char *) ( infiles[i] ))[3] - __s2[3]); | 0-70 | ||||||||||||||||||||||||
| 620 | ))[3] - __s2[3]);
never executed: }__result = (((const unsigned char *) (const char *) ( infiles[i] ))[3] - __s2[3]);never executed: }end of blocknever executed: __result; }))) : (__builtin_constant_p (end of block
| 0-70 | ||||||||||||||||||||||||
| 621 | "-"
| 0-70 | ||||||||||||||||||||||||
| 622 | ) && ((size_t)(const void *)((
| 0-70 | ||||||||||||||||||||||||
| 623 | "-"
| 0-70 | ||||||||||||||||||||||||
| 624 | ) + 1) - (size_t)(const void *)(
| 0-70 | ||||||||||||||||||||||||
| 625 | "-"
| 0-70 | ||||||||||||||||||||||||
| 626 | ) == 1) && (__s2_len = __builtin_strlen (
| 0-70 | ||||||||||||||||||||||||
| 627 | "-"
| 0-70 | ||||||||||||||||||||||||
| 628 | ), __s2_len < 4) ? (__builtin_constant_p (
| 0-70 | ||||||||||||||||||||||||
| 629 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 630 | ) && ((size_t)(const void *)((
| 0-70 | ||||||||||||||||||||||||
| 631 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 632 | ) + 1) - (size_t)(const void *)(
| 0-70 | ||||||||||||||||||||||||
| 633 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 634 | ) == 1) ? __builtin_strcmp (
| 0-70 | ||||||||||||||||||||||||
| 635 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 636 | ,
| 0-70 | ||||||||||||||||||||||||
| 637 | "-"
| 0-70 | ||||||||||||||||||||||||
| 638 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
| 0-70 | ||||||||||||||||||||||||
| 639 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 640 | ); int __result = (((const unsigned char *) (const char *) (
| 0-70 | ||||||||||||||||||||||||
| 641 | "-"
| 0-70 | ||||||||||||||||||||||||
| 642 | ))[0] - __s2[0]); if (__s2_len > 0
| 0-70 | ||||||||||||||||||||||||
| 643 | "-"
| 0-70 | ||||||||||||||||||||||||
| 644 | ))[1] - __s2[1]); if (__s2_len > 1
| 0-70 | ||||||||||||||||||||||||
| 645 | "-"
| 0-70 | ||||||||||||||||||||||||
| 646 | ))[2] - __s2[2]); if (__s2_len > 2
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
| 0-70 | ||||||||||||||||||||||||
| 647 | "-"
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]); | 0-70 | ||||||||||||||||||||||||
| 648 | ))[3] - __s2[3]);
never executed: }__result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);never executed: }end of blocknever executed: __result; }))) : __builtin_strcmp (end of block
| 0-70 | ||||||||||||||||||||||||
| 649 | infiles[i]
| 0-70 | ||||||||||||||||||||||||
| 650 | ,
| 0-70 | ||||||||||||||||||||||||
| 651 | "-"
| 0-70 | ||||||||||||||||||||||||
| 652 | )))); })
| 0-70 | ||||||||||||||||||||||||
| 653 | == 0)
| 0-70 | ||||||||||||||||||||||||
| 654 | stdin | - | ||||||||||||||||||||||||
| 655 | : fopen_safer (infiles[i], "r")); | - | ||||||||||||||||||||||||
| 656 | if (!streams[i]
| 0-70 | ||||||||||||||||||||||||
| 657 | (( never executed: !!sizeof (struct { _Static_assert (((!!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 ()))));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])
| 0-70 | ||||||||||||||||||||||||
| 678 | (( never executed: !!sizeof (struct { _Static_assert (((!!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 ()))));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 blockExecuted by:
| 70 | ||||||||||||||||||||||||
| 694 | - | |||||||||||||||||||||||||
| 695 | while (thisline[0]
| 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]
| 6-168 | ||||||||||||||||||||||||
| 709 | order = 1; executed 6 times by 1 test: order = 1;Executed by:
| 6 | ||||||||||||||||||||||||
| 710 | else if (!thisline[1]
| 2-166 | ||||||||||||||||||||||||
| 711 | order = -1; executed 2 times by 1 test: order = -1;Executed by:
| 2 | ||||||||||||||||||||||||
| 712 | else | - | ||||||||||||||||||||||||
| 713 | { | - | ||||||||||||||||||||||||
| 714 | if (hard_LC_COLLATE
| 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 = ((
| 0-166 | ||||||||||||||||||||||||
| 720 | order = memcmp (thisline[0]->buffer, thisline[1]->buffer, len); | - | ||||||||||||||||||||||||
| 721 | if (order == 0
| 82-84 | ||||||||||||||||||||||||
| 722 | order = (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:
| 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:
| 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:
| 84 | ||||||||||||||||||||||||
| 725 | } executed 166 times by 1 test: end of blockExecuted by:
| 166 | ||||||||||||||||||||||||
| 726 | } | - | ||||||||||||||||||||||||
| 727 | - | |||||||||||||||||||||||||
| 728 | - | |||||||||||||||||||||||||
| 729 | if (order == 0
| 84-90 | ||||||||||||||||||||||||
| 730 | { | - | ||||||||||||||||||||||||
| 731 | - | |||||||||||||||||||||||||
| 732 | total[2]++; | - | ||||||||||||||||||||||||
| 733 | writeline (thisline[1], | - | ||||||||||||||||||||||||
| 734 | stdout | - | ||||||||||||||||||||||||
| 735 | , 3); | - | ||||||||||||||||||||||||
| 736 | } executed 84 times by 1 test: end of blockExecuted by:
| 84 | ||||||||||||||||||||||||
| 737 | else | - | ||||||||||||||||||||||||
| 738 | { | - | ||||||||||||||||||||||||
| 739 | seen_unpairable = | - | ||||||||||||||||||||||||
| 740 | 1 | - | ||||||||||||||||||||||||
| 741 | ; | - | ||||||||||||||||||||||||
| 742 | if (order <= 0
| 34-56 | ||||||||||||||||||||||||
| 743 | { | - | ||||||||||||||||||||||||
| 744 | - | |||||||||||||||||||||||||
| 745 | total[0]++; | - | ||||||||||||||||||||||||
| 746 | writeline (thisline[0], | - | ||||||||||||||||||||||||
| 747 | stdout | - | ||||||||||||||||||||||||
| 748 | , 1); | - | ||||||||||||||||||||||||
| 749 | } executed 34 times by 1 test: end of blockExecuted by:
| 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 blockExecuted by:
| 56 | ||||||||||||||||||||||||
| 758 | } | - | ||||||||||||||||||||||||
| 759 | - | |||||||||||||||||||||||||
| 760 | - | |||||||||||||||||||||||||
| 761 | - | |||||||||||||||||||||||||
| 762 | if (0 <= order
| 34-140 | ||||||||||||||||||||||||
| 763 | fill_up[1] = executed 140 times by 1 test: fill_up[1] = 1 ;Executed by:
| 140 | ||||||||||||||||||||||||
| 764 | 1 executed 140 times by 1 test: fill_up[1] = 1 ;Executed by:
| 140 | ||||||||||||||||||||||||
| 765 | ; executed 140 times by 1 test: fill_up[1] = 1 ;Executed by:
| 140 | ||||||||||||||||||||||||
| 766 | if (order <= 0
| 56-118 | ||||||||||||||||||||||||
| 767 | fill_up[0] = executed 118 times by 1 test: fill_up[0] = 1 ;Executed by:
| 118 | ||||||||||||||||||||||||
| 768 | 1 executed 118 times by 1 test: fill_up[0] = 1 ;Executed by:
| 118 | ||||||||||||||||||||||||
| 769 | ; executed 118 times by 1 test: fill_up[0] = 1 ;Executed by:
| 118 | ||||||||||||||||||||||||
| 770 | - | |||||||||||||||||||||||||
| 771 | for (i = 0; i < 2
| 171-346 | ||||||||||||||||||||||||
| 772 | if (fill_up[i]
| 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]
| 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:
| 192 | ||||||||||||||||||||||||
| 784 | - | |||||||||||||||||||||||||
| 785 | - | |||||||||||||||||||||||||
| 786 | - | |||||||||||||||||||||||||
| 787 | - | |||||||||||||||||||||||||
| 788 | else if (all_line[i][alt[i][2]]->buffer
| 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:
| 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:
| 65 | ||||||||||||||||||||||||
| 791 | - | |||||||||||||||||||||||||
| 792 | if (ferror_unlocked (streams[i])
| 0-254 | ||||||||||||||||||||||||
| 793 | (( never executed: !!sizeof (struct { _Static_assert (((!!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 ()))));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 blockExecuted by:
| 254 | ||||||||||||||||||||||||
| 813 | } executed 171 times by 1 test: end of blockExecuted by:
| 171 | ||||||||||||||||||||||||
| 814 | - | |||||||||||||||||||||||||
| 815 | for (i = 0; i < 2
| 32-64 | ||||||||||||||||||||||||
| 816 | if ( | - | ||||||||||||||||||||||||
| 817 | rpl_fclose
| 0-64 | ||||||||||||||||||||||||
| 818 | (streams[i]) != 0
| 0-64 | ||||||||||||||||||||||||
| 819 | (( never executed: !!sizeof (struct { _Static_assert (((!!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 ()))));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
| 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 blockExecuted by:
| 4 | ||||||||||||||||||||||||
| 851 | } executed 32 times by 1 test: end of blockExecuted by:
| 32 | ||||||||||||||||||||||||
| 852 | - | |||||||||||||||||||||||||
| 853 | int | - | ||||||||||||||||||||||||
| 854 | main (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 ((
| 38-83 | ||||||||||||||||||||||||
| 893 | ((void *)0)
| 38-83 | ||||||||||||||||||||||||
| 894 | )) != -1
| 38-83 | ||||||||||||||||||||||||
| 895 | switch (c) | - | ||||||||||||||||||||||||
| 896 | { | - | ||||||||||||||||||||||||
| 897 | case executed 10 times by 1 test: '1':case '1':Executed by:
executed 10 times by 1 test: case '1':Executed by:
| 10 | ||||||||||||||||||||||||
| 898 | only_file_1 = | - | ||||||||||||||||||||||||
| 899 | 0 | - | ||||||||||||||||||||||||
| 900 | ; | - | ||||||||||||||||||||||||
| 901 | break; executed 10 times by 1 test: break;Executed by:
| 10 | ||||||||||||||||||||||||
| 902 | - | |||||||||||||||||||||||||
| 903 | case executed 10 times by 1 test: '2':case '2':Executed by:
executed 10 times by 1 test: case '2':Executed by:
| 10 | ||||||||||||||||||||||||
| 904 | only_file_2 = | - | ||||||||||||||||||||||||
| 905 | 0 | - | ||||||||||||||||||||||||
| 906 | ; | - | ||||||||||||||||||||||||
| 907 | break; executed 10 times by 1 test: break;Executed by:
| 10 | ||||||||||||||||||||||||
| 908 | - | |||||||||||||||||||||||||
| 909 | case executed 10 times by 1 test: '3':case '3':Executed by:
executed 10 times by 1 test: case '3':Executed by:
| 10 | ||||||||||||||||||||||||
| 910 | both = | - | ||||||||||||||||||||||||
| 911 | 0 | - | ||||||||||||||||||||||||
| 912 | ; | - | ||||||||||||||||||||||||
| 913 | break; executed 10 times by 1 test: break;Executed by:
| 10 | ||||||||||||||||||||||||
| 914 | - | |||||||||||||||||||||||||
| 915 | case executed 13 times by 1 test: 'z':case 'z':Executed by:
executed 13 times by 1 test: case 'z':Executed by:
| 13 | ||||||||||||||||||||||||
| 916 | delim = '\0'; | - | ||||||||||||||||||||||||
| 917 | break; executed 13 times by 1 test: break;Executed by:
| 13 | ||||||||||||||||||||||||
| 918 | - | |||||||||||||||||||||||||
| 919 | case executed 2 times by 1 test: NOCHECK_ORDER_OPTION:case NOCHECK_ORDER_OPTION:Executed by:
executed 2 times by 1 test: case NOCHECK_ORDER_OPTION:Executed by:
| 2 | ||||||||||||||||||||||||
| 920 | check_input_order = CHECK_ORDER_DISABLED; | - | ||||||||||||||||||||||||
| 921 | break; executed 2 times by 1 test: break;Executed by:
| 2 | ||||||||||||||||||||||||
| 922 | - | |||||||||||||||||||||||||
| 923 | case executed 4 times by 1 test: CHECK_ORDER_OPTION:case CHECK_ORDER_OPTION:Executed by:
executed 4 times by 1 test: case CHECK_ORDER_OPTION:Executed by:
| 4 | ||||||||||||||||||||||||
| 924 | check_input_order = CHECK_ORDER_ENABLED; | - | ||||||||||||||||||||||||
| 925 | break; executed 4 times by 1 test: break;Executed by:
| 4 | ||||||||||||||||||||||||
| 926 | - | |||||||||||||||||||||||||
| 927 | case executed 10 times by 1 test: OUTPUT_DELIMITER_OPTION:case OUTPUT_DELIMITER_OPTION:Executed by:
executed 10 times by 1 test: case OUTPUT_DELIMITER_OPTION:Executed by:
| 10 | ||||||||||||||||||||||||
| 928 | if (col_sep_len
| 1-8 | ||||||||||||||||||||||||
| 929 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
| 1 | ||||||||||||||||||||||||
| 930 | col_sep
| 1 | ||||||||||||||||||||||||
| 931 | ) && __builtin_constant_p (
| 1 | ||||||||||||||||||||||||
| 932 | optarg
| 1 | ||||||||||||||||||||||||
| 933 | ) && (__s1_len = __builtin_strlen (
| 1 | ||||||||||||||||||||||||
| 934 | col_sep
| 1 | ||||||||||||||||||||||||
| 935 | ), __s2_len = __builtin_strlen (
| 1 | ||||||||||||||||||||||||
| 936 | optarg
| 1 | ||||||||||||||||||||||||
| 937 | ), (!((size_t)(const void *)((
| 1 | ||||||||||||||||||||||||
| 938 | col_sep
| 1 | ||||||||||||||||||||||||
| 939 | ) + 1) - (size_t)(const void *)(
| 1 | ||||||||||||||||||||||||
| 940 | col_sep
| 1 | ||||||||||||||||||||||||
| 941 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
| 1 | ||||||||||||||||||||||||
| 942 | optarg
| 1 | ||||||||||||||||||||||||
| 943 | ) + 1) - (size_t)(const void *)(
| 1 | ||||||||||||||||||||||||
| 944 | optarg
| 1 | ||||||||||||||||||||||||
| 945 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
| 1 | ||||||||||||||||||||||||
| 946 | col_sep
| 1 | ||||||||||||||||||||||||
| 947 | ,
| 1 | ||||||||||||||||||||||||
| 948 | optarg
| 1 | ||||||||||||||||||||||||
| 949 | ) : (__builtin_constant_p (
| 1 | ||||||||||||||||||||||||
| 950 | col_sep
| 1 | ||||||||||||||||||||||||
| 951 | ) && ((size_t)(const void *)((
| 1 | ||||||||||||||||||||||||
| 952 | col_sep
| 1 | ||||||||||||||||||||||||
| 953 | ) + 1) - (size_t)(const void *)(
| 1 | ||||||||||||||||||||||||
| 954 | col_sep
| 1 | ||||||||||||||||||||||||
| 955 | ) == 1) && (__s1_len = __builtin_strlen (
| 1 | ||||||||||||||||||||||||
| 956 | col_sep
| 1 | ||||||||||||||||||||||||
| 957 | ), __s1_len < 4) ? (__builtin_constant_p (
| 1 | ||||||||||||||||||||||||
| 958 | optarg
| 1 | ||||||||||||||||||||||||
| 959 | ) && ((size_t)(const void *)((
| 1 | ||||||||||||||||||||||||
| 960 | optarg
| 1 | ||||||||||||||||||||||||
| 961 | ) + 1) - (size_t)(const void *)(
| 1 | ||||||||||||||||||||||||
| 962 | optarg
| 1 | ||||||||||||||||||||||||
| 963 | ) == 1) ? __builtin_strcmp (
| 1 | ||||||||||||||||||||||||
| 964 | col_sep
| 1 | ||||||||||||||||||||||||
| 965 | ,
| 1 | ||||||||||||||||||||||||
| 966 | optarg
| 1 | ||||||||||||||||||||||||
| 967 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
| 1 | ||||||||||||||||||||||||
| 968 | optarg
| 1 | ||||||||||||||||||||||||
| 969 | ); int __result = (((const unsigned char *) (const char *) (
| 1 | ||||||||||||||||||||||||
| 970 | col_sep
| 1 | ||||||||||||||||||||||||
| 971 | ))[0] - __s2[0]); if (__s1_len > 0
| 0-1 | ||||||||||||||||||||||||
| 972 | col_sep
| 1 | ||||||||||||||||||||||||
| 973 | ))[1] - __s2[1]); if (__s1_len > 1
| 0-1 | ||||||||||||||||||||||||
| 974 | col_sep
| 1 | ||||||||||||||||||||||||
| 975 | ))[2] - __s2[2]); if (__s1_len > 2
never executed: __result = (((const unsigned char *) (const char *) ( col_sep ))[3] - __s2[3]);
| 0-1 | ||||||||||||||||||||||||
| 976 | col_sep
never executed: __result = (((const unsigned char *) (const char *) ( col_sep ))[3] - __s2[3]); | 0-1 | ||||||||||||||||||||||||
| 977 | ))[3] - __s2[3]);
never executed: }__result = (((const unsigned char *) (const char *) ( col_sep ))[3] - __s2[3]);never executed: }end of blocknever executed: __result; }))) : (__builtin_constant_p (end of block
| 0-1 | ||||||||||||||||||||||||
| 978 | optarg
| 1 | ||||||||||||||||||||||||
| 979 | ) && ((size_t)(const void *)((
| 1 | ||||||||||||||||||||||||
| 980 | optarg
| 1 | ||||||||||||||||||||||||
| 981 | ) + 1) - (size_t)(const void *)(
| 1 | ||||||||||||||||||||||||
| 982 | optarg
| 1 | ||||||||||||||||||||||||
| 983 | ) == 1) && (__s2_len = __builtin_strlen (
| 1 | ||||||||||||||||||||||||
| 984 | optarg
| 1 | ||||||||||||||||||||||||
| 985 | ), __s2_len < 4) ? (__builtin_constant_p (
| 1 | ||||||||||||||||||||||||
| 986 | col_sep
| 1 | ||||||||||||||||||||||||
| 987 | ) && ((size_t)(const void *)((
| 1 | ||||||||||||||||||||||||
| 988 | col_sep
| 1 | ||||||||||||||||||||||||
| 989 | ) + 1) - (size_t)(const void *)(
| 1 | ||||||||||||||||||||||||
| 990 | col_sep
| 1 | ||||||||||||||||||||||||
| 991 | ) == 1) ? __builtin_strcmp (
| 1 | ||||||||||||||||||||||||
| 992 | col_sep
| 1 | ||||||||||||||||||||||||
| 993 | ,
| 1 | ||||||||||||||||||||||||
| 994 | optarg
| 1 | ||||||||||||||||||||||||
| 995 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
| 1 | ||||||||||||||||||||||||
| 996 | col_sep
| 1 | ||||||||||||||||||||||||
| 997 | ); int __result = (((const unsigned char *) (const char *) (
| 1 | ||||||||||||||||||||||||
| 998 | optarg
| 1 | ||||||||||||||||||||||||
| 999 | ))[0] - __s2[0]); if (__s2_len > 0
| 0-1 | ||||||||||||||||||||||||
| 1000 | optarg
| 1 | ||||||||||||||||||||||||
| 1001 | ))[1] - __s2[1]); if (__s2_len > 1
| 0-1 | ||||||||||||||||||||||||
| 1002 | optarg
| 1 | ||||||||||||||||||||||||
| 1003 | ))[2] - __s2[2]); if (__s2_len > 2
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
| 0-1 | ||||||||||||||||||||||||
| 1004 | optarg
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]); | 0-1 | ||||||||||||||||||||||||
| 1005 | ))[3] - __s2[3]);
never executed: }__result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);never executed: }end of blocknever executed: __result; }))) : __builtin_strcmp (end of block
| 0-1 | ||||||||||||||||||||||||
| 1006 | col_sep
| 1 | ||||||||||||||||||||||||
| 1007 | ,
| 1 | ||||||||||||||||||||||||
| 1008 | optarg
| 1 | ||||||||||||||||||||||||
| 1009 | )))); })
| 1 | ||||||||||||||||||||||||
| 1010 | == 0)
| 1 | ||||||||||||||||||||||||
| 1011 | (( executed 1 time by 1 test: !!sizeof (struct { _Static_assert (((!!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:
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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 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:
| 1 | ||||||||||||||||||||||||
| 1030 | col_sep = optarg; | - | ||||||||||||||||||||||||
| 1031 | col_sep_len = *
| 2-7 | ||||||||||||||||||||||||
| 1032 | break; executed 9 times by 1 test: break;Executed by:
| 9 | ||||||||||||||||||||||||
| 1033 | - | |||||||||||||||||||||||||
| 1034 | case executed 5 times by 1 test: TOTAL_OPTION:case TOTAL_OPTION:Executed by:
executed 5 times by 1 test: case TOTAL_OPTION:Executed by:
| 5 | ||||||||||||||||||||||||
| 1035 | total_option = | - | ||||||||||||||||||||||||
| 1036 | 1 | - | ||||||||||||||||||||||||
| 1037 | ; | - | ||||||||||||||||||||||||
| 1038 | break; executed 5 times by 1 test: break;Executed by:
| 5 | ||||||||||||||||||||||||
| 1039 | - | |||||||||||||||||||||||||
| 1040 | case executed 12 times by 1 test: GETOPT_HELP_CHAR:case GETOPT_HELP_CHAR:Executed by:
executed 12 times by 1 test: usage (case GETOPT_HELP_CHAR:Executed by:
| 12 | ||||||||||||||||||||||||
| 1041 | 0 | - | ||||||||||||||||||||||||
| 1042 | ); break; never executed: ;break; | 0 | ||||||||||||||||||||||||
| 1043 | - | |||||||||||||||||||||||||
| 1044 | case executed 4 times by 1 test: GETOPT_VERSION_CHAR:case GETOPT_VERSION_CHAR:Executed by:
executed 4 times by 1 test: version_etc (case GETOPT_VERSION_CHAR:Executed by:
| 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:
| 4 | ||||||||||||||||||||||||
| 1049 | 0 executed 4 times by 1 test: exit ( 0 );Executed by:
| 4 | ||||||||||||||||||||||||
| 1050 | ); executed 4 times by 1 test: break;exit ( 0 );Executed by:
never executed: ;break; | 0-4 | ||||||||||||||||||||||||
| 1051 | - | |||||||||||||||||||||||||
| 1052 | default executed 3 times by 1 test: :default:Executed by:
executed 3 times by 1 test: default:Executed by:
| 3 | ||||||||||||||||||||||||
| 1053 | usage ( | - | ||||||||||||||||||||||||
| 1054 | 1 | - | ||||||||||||||||||||||||
| 1055 | ); | - | ||||||||||||||||||||||||
| 1056 | } never executed: end of block | 0 | ||||||||||||||||||||||||
| 1057 | - | |||||||||||||||||||||||||
| 1058 | if (! col_sep_len
| 6-32 | ||||||||||||||||||||||||
| 1059 | col_sep_len = 1; executed 32 times by 1 test: col_sep_len = 1;Executed by:
| 32 | ||||||||||||||||||||||||
| 1060 | - | |||||||||||||||||||||||||
| 1061 | if (argc - optind < 2
| 2-36 | ||||||||||||||||||||||||
| 1062 | { | - | ||||||||||||||||||||||||
| 1063 | if (argc <= optind
| 1 | ||||||||||||||||||||||||
| 1064 | error (0, 0, executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );Executed by:
| 1 | ||||||||||||||||||||||||
| 1065 | dcgettext (((void *)0), executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );Executed by:
| 1 | ||||||||||||||||||||||||
| 1066 | "missing operand" executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );Executed by:
| 1 | ||||||||||||||||||||||||
| 1067 | , 5) executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );Executed by:
| 1 | ||||||||||||||||||||||||
| 1068 | ); executed 1 time by 1 test: error (0, 0, dcgettext (((void *)0), "missing operand" , 5) );Executed by:
| 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:
| 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:
| 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:
| 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:
| 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:
| 1 | ||||||||||||||||||||||||
| 1075 | usage ( | - | ||||||||||||||||||||||||
| 1076 | 1 | - | ||||||||||||||||||||||||
| 1077 | ); | - | ||||||||||||||||||||||||
| 1078 | } never executed: end of block | 0 | ||||||||||||||||||||||||
| 1079 | - | |||||||||||||||||||||||||
| 1080 | if (2 < argc - optind
| 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]
| 2-29 | ||||||||||||||||||||||||
| 1095 | return executed 5 times by 1 test: return 1 ;Executed by:
executed 5 times by 1 test: return 1 ;Executed by:
| 5 | ||||||||||||||||||||||||
| 1096 | 1 executed 5 times by 1 test: return 1 ;Executed by:
| 5 | ||||||||||||||||||||||||
| 1097 | ; executed 5 times by 1 test: return 1 ;Executed by:
| 5 | ||||||||||||||||||||||||
| 1098 | else | - | ||||||||||||||||||||||||
| 1099 | return executed 27 times by 1 test: return 0 ;Executed by:
executed 27 times by 1 test: return 0 ;Executed by:
| 27 | ||||||||||||||||||||||||
| 1100 | 0 executed 27 times by 1 test: return 0 ;Executed by:
| 27 | ||||||||||||||||||||||||
| 1101 | ; executed 27 times by 1 test: return 0 ;Executed by:
| 27 | ||||||||||||||||||||||||
| 1102 | } | - | ||||||||||||||||||||||||
| Switch to Source code | Preprocessed file |