Searched refs:tok_end (Results 1 – 3 of 3) sorted by relevance
/Linux-v5.4/tools/perf/bench/ |
D | numa.c | 512 char *tok, *tok_end, *tok_step, *tok_len, *tok_mul; in parse_setup_cpu_list() local 521 tok_end = strstr(tok, "-"); in parse_setup_cpu_list() 523 dprintf("\ntoken: {%s}, end: {%s}\n", tok, tok_end); in parse_setup_cpu_list() 524 if (!tok_end) { in parse_setup_cpu_list() 530 bind_cpu_1 = atol(tok_end + 1); in parse_setup_cpu_list() 649 char *tok, *tok_end, *tok_step, *tok_mul; in parse_setup_node_list() local 657 tok_end = strstr(tok, "-"); in parse_setup_node_list() 659 dprintf("\ntoken: {%s}, end: {%s}\n", tok, tok_end); in parse_setup_node_list() 660 if (!tok_end) { in parse_setup_node_list() 666 bind_node_1 = atol(tok_end + 1); in parse_setup_node_list()
|
/Linux-v5.4/drivers/scsi/aic7xxx/ |
D | aic7xxx_osm.c | 939 char *tok_end; in ahc_parse_brace_option() local 958 tok_end = strchr(opt_arg, '\0'); in ahc_parse_brace_option() 959 if (tok_end < end) in ahc_parse_brace_option() 960 *tok_end = ','; in ahc_parse_brace_option() 999 tok_end = end; in ahc_parse_brace_option() 1002 if ((tok_end2) && (tok_end2 < tok_end)) in ahc_parse_brace_option() 1003 tok_end = tok_end2; in ahc_parse_brace_option() 1007 opt_arg = tok_end; in ahc_parse_brace_option()
|
D | aic79xx_osm.c | 1061 char *tok_end; in ahd_parse_brace_option() local 1080 tok_end = strchr(opt_arg, '\0'); in ahd_parse_brace_option() 1081 if (tok_end < end) in ahd_parse_brace_option() 1082 *tok_end = ','; in ahd_parse_brace_option() 1121 tok_end = end; in ahd_parse_brace_option() 1124 if ((tok_end2) && (tok_end2 < tok_end)) in ahd_parse_brace_option() 1125 tok_end = tok_end2; in ahd_parse_brace_option() 1129 opt_arg = tok_end; in ahd_parse_brace_option()
|