Searched refs:tok_end (Results 1 – 3 of 3) sorted by relevance
/kernel/linux/linux-5.10/tools/perf/bench/ |
D | numa.c | 529 char *tok, *tok_end, *tok_step, *tok_len, *tok_mul; in parse_setup_cpu_list() local 538 tok_end = strstr(tok, "-"); in parse_setup_cpu_list() 540 dprintf("\ntoken: {%s}, end: {%s}\n", tok, tok_end); in parse_setup_cpu_list() 541 if (!tok_end) { in parse_setup_cpu_list() 547 bind_cpu_1 = atol(tok_end + 1); in parse_setup_cpu_list() 666 char *tok, *tok_end, *tok_step, *tok_mul; in parse_setup_node_list() local 674 tok_end = strstr(tok, "-"); in parse_setup_node_list() 676 dprintf("\ntoken: {%s}, end: {%s}\n", tok, tok_end); in parse_setup_node_list() 677 if (!tok_end) { in parse_setup_node_list() 683 bind_node_1 = atol(tok_end + 1); in parse_setup_node_list()
|
/kernel/linux/linux-5.10/drivers/scsi/aic7xxx/ |
D | aic7xxx_osm.c | 923 char *tok_end; in ahc_parse_brace_option() local 942 tok_end = strchr(opt_arg, '\0'); in ahc_parse_brace_option() 943 if (tok_end < end) in ahc_parse_brace_option() 944 *tok_end = ','; in ahc_parse_brace_option() 983 tok_end = end; in ahc_parse_brace_option() 986 if ((tok_end2) && (tok_end2 < tok_end)) in ahc_parse_brace_option() 987 tok_end = tok_end2; in ahc_parse_brace_option() 991 opt_arg = tok_end; in ahc_parse_brace_option()
|
D | aic79xx_osm.c | 1047 char *tok_end; in ahd_parse_brace_option() local 1066 tok_end = strchr(opt_arg, '\0'); in ahd_parse_brace_option() 1067 if (tok_end < end) in ahd_parse_brace_option() 1068 *tok_end = ','; in ahd_parse_brace_option() 1107 tok_end = end; in ahd_parse_brace_option() 1110 if ((tok_end2) && (tok_end2 < tok_end)) in ahd_parse_brace_option() 1111 tok_end = tok_end2; in ahd_parse_brace_option() 1115 opt_arg = tok_end; in ahd_parse_brace_option()
|