| /linux/tools/perf/scripts/python/ |
| H A D | task-analyzer.py | 350 separator, fix_csv_align = _prepare_fmt_sep() 353 fmt += "{}{{:>{}}}".format(separator, db["task_info"]["tid"] * fix_csv_align) 354 fmt += "{}{{:>{}}}".format(separator, db["task_info"]["comm"] * fix_csv_align) 355 fmt += "{}{{:>{}}}".format(separator, db["runtime_info"]["runs"] * fix_csv_align) 356 fmt += "{}{{:>{}}}".format(separator, db["runtime_info"]["acc"] * fix_csv_align) 357 fmt += "{}{{:>{}}}".format(separator, db["runtime_info"]["mean"] * fix_csv_align) 359 separator, db["runtime_info"]["median"] * fix_csv_align 362 separator, (db["runtime_info"]["min"] - decimal_precision) * fix_csv_align 365 separator, (db["runtime_info"]["max"] - decimal_precision) * fix_csv_align 368 separator, (db["runtime_info"]["max_at"] - time_precision) * fix_csv_align [all …]
|
| /linux/kernel/trace/ |
| H A D | trace_dynevent.c | 319 ret = seq_buf_printf(&cmd->seq, " %s%c", arg->str, arg->separator); in dynevent_arg_add() 321 pr_err("String is too long: %s%c\n", arg->str, arg->separator); in dynevent_arg_add() 366 arg_pair->separator); in dynevent_arg_pair_add() 370 arg_pair->separator); in dynevent_arg_pair_add() 444 char separator) in dynevent_arg_init() argument 448 if (!separator) in dynevent_arg_init() 449 separator = ' '; in dynevent_arg_init() 450 arg->separator = separator; in dynevent_arg_init() 471 char operator, char separator) in dynevent_arg_pair_init() argument 479 if (!separator) in dynevent_arg_pair_init() [all …]
|
| H A D | trace_dynevent.h | 131 char separator; /* e.g. ';', ',', or nothing */ member 135 char separator); 144 char separator; /* e.g. ';', ',', or nothing */ member 148 char operator, char separator);
|
| /linux/scripts/ |
| H A D | parse-maintainers.pl | 114 my $separator; 119 if (! defined $separator) { 120 $separator = "\n"; 122 print $file $separator;
|
| /linux/drivers/acpi/acpica/ |
| H A D | exconvrt.c | 393 u8 separator = ','; in acpi_ex_convert_to_string() local 520 separator = ' '; in acpi_ex_convert_to_string() 534 separator = ','; in acpi_ex_convert_to_string() 579 *new_buf++ = separator; in acpi_ex_convert_to_string()
|
| /linux/sound/soc/sof/intel/ |
| H A D | telemetry.c | 36 if (telemetry_data->separator != XTENSA_CORE_DUMP_SEPARATOR) { in sof_ipc4_intel_dump_telemetry_state() 38 telemetry_data->separator); in sof_ipc4_intel_dump_telemetry_state()
|
| /linux/sound/soc/sof/ |
| H A D | ipc4-telemetry.h | 66 u32 separator; member
|
| /linux/tools/perf/Documentation/ |
| H A D | perf-mem.txt | 149 --field-separator=<separator>:: 150 Specify the field separator used when dump raw samples (-D option). By default, 151 The separator is the space character.
|
| H A D | perf-diff.txt | 65 --field-separator=:: 67 Use a special separator character and don't pad with spaces, replacing 68 all occurrences of this separator in symbol names (and other output) 69 with a '.' character, that thus it's the only non valid separator. 289 behind ':' separator like '-c wdiff:1,2'.
|
| H A D | perf-report.txt | 253 --field-separator=:: 254 Use a special separator character and don't pad with spaces, replacing 255 all occurrences of this separator in symbol names (and other output) 256 with a '.' character, that thus it's the only non valid separator.
|
| H A D | perf-lock.txt | 208 --field-separator=<SEP>::
|
| H A D | perf-stat.txt | 116 option using the comma separator. Hardware events and generic hardware 170 --field-separator SEP::
|
| H A D | perf-top.txt | 391 option using the comma separator. Hardware events and generic hardware
|
| /linux/drivers/md/ |
| H A D | dm-init.c | 88 static char __init *str_field_delimit(char **str, char separator) in str_field_delimit() argument 94 s = strchr(*str, separator); in str_field_delimit()
|
| /linux/lib/ |
| H A D | vsprintf.c | 1185 char separator; in hex_string() local 1196 separator = ':'; in hex_string() 1199 separator = '-'; in hex_string() 1202 separator = 0; in hex_string() 1205 separator = ' '; in hex_string() 1220 if (separator && i != len - 1) { in hex_string() 1222 *buf = separator; in hex_string() 1311 char separator; in mac_address_string() local 1319 separator = '-'; in mac_address_string() 1327 separator = ':'; in mac_address_string() [all …]
|
| /linux/scripts/gdb/linux/ |
| H A D | modules.py | 97 separator=" " if first else ",",
|
| /linux/Documentation/locking/ |
| H A D | lockstat.rst | 143 short separator (line 08, 13) from the contention points. 151 short separator. The contention points don't match the column descriptors,
|
| /linux/Documentation/core-api/ |
| H A D | printk-formats.rst | 312 certain separator. For larger buffers consider using 328 separators. The default byte separator is the colon (:). 332 separator. 500 The separator when using multiple arguments is ':' 564 The %pt[RT]s (space) will override ISO 8601 separator by using ' ' (space)
|
| /linux/rust/syn/ |
| H A D | parse.rs | 739 separator: P, in parse_terminated() 745 let _ = separator; in parse_terminated()
|
| /linux/drivers/md/dm-vdo/ |
| H A D | dm-vdo-target.c | 263 static int split_string(const char *string, char separator, char ***substring_array_ptr) in split_string() argument 272 if (*s == separator) in split_string() 282 if (*s == separator) { in split_string() 324 static int join_strings(char **substring_array, size_t array_length, char separator, in join_strings() argument 345 *current_position = separator; in join_strings()
|
| /linux/tools/bpf/ |
| H A D | bpf_dbg.c | 1006 char sp, *token, separator = ','; in cmd_load_bpf() local 1014 sp != separator || bpf_len > BPF_MAXINSNS || bpf_len == 0) { in cmd_load_bpf() 1020 while ((token = strchr(token, separator)) && (++token)[0]) { in cmd_load_bpf()
|
| /linux/Documentation/fb/ |
| H A D | modedb.rst | 64 Options can also be passed after the mode, using commas as separator.
|
| /linux/Documentation/dev-tools/kunit/ |
| H A D | start.rst | 128 separator between the name of the test suite and the test case,
|
| /linux/include/linux/ |
| H A D | hid.h | 1022 struct hid_device *hdev_b, char separator);
|
| /linux/Documentation/admin-guide/cifs/ |
| H A D | usage.rst | 403 the comma as the separator between the mount 408 could be passed instead with period as the separator by::
|