Searched refs:sep (Results 26 - 50 of 101) sorted by relevance

12345

/linux-master/Documentation/sphinx/
H A Dtranslations.py42 components = docname.split(os.sep)
/linux-master/drivers/infiniband/hw/usnic/
H A Dusnic_ib_sysfs.c77 char *sep = ""; local
101 sep,
104 sep = ",";
/linux-master/drivers/mtd/spi-nor/
H A Ddebugfs.c60 bool sep = false; local
66 if (sep)
68 sep = true;
/linux-master/tools/testing/selftests/powerpc/papr_vpd/
H A Dpapr_vpd.c239 char *sep = strchr(mtm, '-'); local
240 if (!sep)
243 *sep = '.';
/linux-master/scripts/gdb/linux/
H A Dinterrupts.py170 sep = " "
172 sep = ""
175 text += "%*s%u:%s" % (prec - 1, "IPI", ipi, sep)
/linux-master/tools/lib/perf/
H A Dcpumap.c168 char sep; local
170 sep = 0;
173 n = fscanf(file, "%u%c", &cpu, &sep);
202 if (n == 2 && sep == '-')
206 if (n == 1 || sep == '\n')
/linux-master/tools/perf/util/
H A Dstat-display.c246 const char *sep = config->csv_sep; local
251 id.socket, id.die, id.core, sep, aggr_nr, sep);
255 id.socket, id.die, id.cache_lvl, id.cache, sep, aggr_nr, sep);
259 id.socket, id.die, id.cluster, sep, aggr_nr, sep);
263 id.socket, id.die, sep, aggr_nr, sep);
267 id.socket, sep, aggr_n
687 const char *sep = config->csv_sep; local
[all...]
H A Dmetricgroup.c682 const char *sep, *rsep, *id = cur->pkey; local
712 sep = strchr(id, '@');
713 if (sep != NULL) {
714 ret = strbuf_add(events, id, sep - id);
718 rsep = strrchr(sep, '@');
719 ret = strbuf_add(events, sep + 1, rsep - sep - 1);
723 sep = rsep;
725 sep = strchr(id, ':');
726 if (sep !
[all...]
H A Dsrcline.c377 char *sep; local
379 sep = strchr(filename, '\n');
380 if (sep)
381 *sep = '\0';
386 sep = strchr(filename, ':');
387 if (sep) {
388 *sep++ = '\0';
389 *line_nr = strtoul(sep, NULL, 0);
/linux-master/arch/um/kernel/
H A Dtime.c528 const char *sep; local
532 if ((sep = strchr(socket, ':'))) {
534 if (sep - socket > sizeof(buf) - 1)
537 memcpy(buf, socket, sep - socket);
545 socket = sep + 1;
/linux-master/drivers/gpu/drm/i915/selftests/
H A Di915_selftest.c305 char *filter, *sep, *tok; local
309 for (sep = filter; (tok = strsep(&sep, ","));) {
/linux-master/fs/smb/client/
H A Ddfs_cache.c562 char sep = *s; local
566 while ((s = strchr(s, sep)) && ++cnt < 3)
586 while (e > s && *e == sep)
600 while (e > s && *e != sep)
1055 char sep; local
1065 sep = it->it_name[0];
1066 if (sep != '\\' && sep != '/')
1090 ppath[c] = sep;
H A Dcached_dir.c71 char sep; local
73 sep = CIFS_DIR_SEP(cifs_sb);
88 while (*s == sep)
94 while (*s && *s != sep)
/linux-master/tools/perf/
H A Dbuiltin-lock.c1686 static void print_header_csv(const char *sep) argument
1692 fprintf(lock_output, "%s%s ", key->header, sep);
1696 fprintf(lock_output, "%s%s %s\n", "pid", sep,
1700 fprintf(lock_output, "%s%s %s", "type", sep, "caller");
1702 fprintf(lock_output, "%s %s", sep, "stacktrace");
1706 fprintf(lock_output, "%s%s %s%s %s\n", "address", sep, "symbol", sep, "type");
1777 const char *sep)
1785 fprintf(lock_output, "%s ", sep);
1790 fprintf(lock_output, "%s%s %s", get_type_str(st->flags), sep, s
1776 print_lock_stat_csv(struct lock_contention *con, struct lock_stat *st, const char *sep) argument
1861 print_footer_csv(int total, int bad, struct lock_contention_fails *fails, const char *sep) argument
[all...]
H A Dbuiltin-list.c96 const char *sep = comma ? "," : " "; local
103 sep = "";
104 n = fprintf(fp, "%s%.*s", sep, wlen, s);
610 char *sep, *s; local
644 else if ((sep = strchr(argv[i], ':')) != NULL) {
/linux-master/tools/power/cpupower/utils/helpers/
H A Dbitmask.c105 static const char *nexttoken(const char *q, int sep) argument
108 q = strchr(q, sep);
/linux-master/drivers/staging/fbtft/
H A Dfbtft-sysfs.c5 static int get_next_ulong(char **str_p, unsigned long *val, char *sep, int base) argument
12 p_val = strsep(str_p, sep);
/linux-master/tools/bpf/bpftool/
H A Dmain.c254 void fprint_hex(FILE *f, void *arg, unsigned int n, const char *sep) argument
269 pfx = sep;
H A Dfeature.c333 char *sep; local
339 sep = strchr(buf, '=');
340 if (!sep)
347 *sep = '\0';
348 if (!sep[1])
351 *value = sep + 1;
/linux-master/scripts/dtc/
H A Ddt-extract-compatibles82 print(*compatibles, sep='\n')
/linux-master/kernel/bpf/
H A Dlog.c600 const char **sep)
642 verbose(env, "%s%s=", *sep, m1->name);
643 *sep = ",";
678 #define verbose_a(fmt, ...) ({ verbose(env, "%s" fmt, sep, ##__VA_ARGS__); sep = ","; })
685 const char *sep = ""; local
744 print_scalar_ranges(env, reg, &sep);
776 const char *sep = ""; local
598 print_scalar_ranges(struct bpf_verifier_env *env, const struct bpf_reg_state *reg, const char **sep) argument
/linux-master/sound/drivers/
H A Daloop.c1088 char *sep, save = '\0'; local
1092 sep = strpbrk(str, sep_pref);
1093 if (sep)
1094 name = sep + 1;
1095 sep = strpbrk(name, sep_dev);
1096 if (sep) {
1097 save = *sep;
1098 *sep = '\0';
1115 if (sep) {
1116 *sep
[all...]
/linux-master/tools/testing/selftests/mm/
H A Drun_vmtests.sh228 local sep=$(echo -n "$title" | tr "[:graph:][:space:]" -)
229 printf "%s\n%s\n%s\n" "$sep" "$title" "$sep" | tap_prefix
/linux-master/lib/zstd/common/
H A Dcpu.h139 D(sep, 11)
/linux-master/net/sunrpc/auth_gss/
H A Dgss_krb5_mech.c230 char *sep; local
233 sep = "";
236 n = sprintf(buf, "%s%u", sep, gss_krb5_enctypes[i]);
242 sep = ",";

Completed in 718 milliseconds

12345