Home
last modified time | relevance | path

Searched refs:separator (Results 1 – 25 of 32) sorted by relevance

12

/linux/tools/perf/scripts/python/
H A Dtask-analyzer.py350 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 Dtrace_dynevent.c303 ret = seq_buf_printf(&cmd->seq, " %s%c", arg->str, arg->separator); in dynevent_arg_add()
305 pr_err("String is too long: %s%c\n", arg->str, arg->separator); in dynevent_arg_add()
350 arg_pair->separator); in dynevent_arg_pair_add()
354 arg_pair->separator); in dynevent_arg_pair_add()
428 char separator) in dynevent_arg_init() argument
432 if (!separator) in dynevent_arg_init()
433 separator = ' '; in dynevent_arg_init()
434 arg->separator = separator; in dynevent_arg_init()
455 char operator, char separator) in dynevent_arg_pair_init() argument
463 if (!separator) in dynevent_arg_pair_init()
[all …]
H A Dtrace_dynevent.h130 char separator; /* e.g. ';', ',', or nothing */ member
134 char separator);
143 char separator; /* e.g. ';', ',', or nothing */ member
147 char operator, char separator);
/linux/scripts/
H A Dparse-maintainers.pl114 my $separator;
119 if (! defined $separator) {
120 $separator = "\n";
122 print $file $separator;
H A Dfaddr2line255 …AWK} -v sec=$sym_sec '$7 == sec' | sort --key=2 | ${GREP} -A1 --no-group-separator " ${sym_name}$")
/linux/tools/perf/Documentation/
H A Dperf-mem.txt124 --field-separator=<separator>::
125 Specify the field separator used when dump raw samples (-D option). By default,
126 The separator is the space character.
H A Dperf-diff.txt65 --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 Dperf-report.txt234 --field-separator=::
235 Use a special separator character and don't pad with spaces, replacing
236 all occurrences of this separator in symbol names (and other output)
237 with a '.' character, that thus it's the only non valid separator.
H A Dperf-lock.txt207 --field-separator=<SEP>::
H A Dperf-stat.txt116 option using the comma separator. Hardware events and generic hardware
170 --field-separator SEP::
H A Dperf-top.txt391 option using the comma separator. Hardware events and generic hardware
/linux/drivers/acpi/acpica/
H A Dexconvrt.c393 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 Dtelemetry.c36 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/scripts/dtc/
H A Ddt_to_config448 my $separator;
475 print "$separator", "$existing_config";
476 $separator = ", ";
478 print "$separator", "n";
479 $separator = ", ";
/linux/tools/testing/selftests/powerpc/mm/
H A Dtlbie_test.c264 char separator[2] = "/"; in start_verification_log() local
270 strcat(path, separator); in start_verification_log()
312 char separator[] = "/"; in end_verification_log() local
323 strcat(path, separator); in end_verification_log()
/linux/sound/soc/sof/
H A Dipc4-telemetry.h66 u32 separator; member
/linux/drivers/md/
H A Ddm-init.c88 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/drivers/of/
H A Dbase.c795 const char *separator = strchr(path, ':'); in __of_find_node_by_full_path() local
804 if (separator && separator < path) in __of_find_node_by_full_path()
833 const char *separator = strchr(path, ':'); in of_find_node_opts_by_path() local
836 *opts = separator ? separator + 1 : NULL; in of_find_node_opts_by_path()
844 const char *p = separator; in of_find_node_opts_by_path()
/linux/lib/
H A Dvsprintf.c1149 char separator; in hex_string() local
1160 separator = ':'; in hex_string()
1163 separator = '-'; in hex_string()
1166 separator = 0; in hex_string()
1169 separator = ' '; in hex_string()
1184 if (separator && i != len - 1) { in hex_string()
1186 *buf = separator; in hex_string()
1275 char separator; in mac_address_string() local
1283 separator = '-'; in mac_address_string()
1291 separator = ':'; in mac_address_string()
[all …]
/linux/scripts/gdb/linux/
H A Dmodules.py94 separator=" " if first else ",",
/linux/Documentation/locking/
H A Dlockstat.rst143 short separator (line 08, 13) from the contention points.
151 short separator. The contention points don't match the column descriptors,
/linux/tools/bpf/
H A Dbpf_dbg.c1006 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 Dmodedb.rst64 Options can also be passed after the mode, using commas as separator.
/linux/Documentation/dev-tools/kunit/
H A Dstart.rst128 separator between the name of the test suite and the test case,
/linux/Documentation/dev-tools/
H A Dktap.rst116 separator.

12