Searched refs:tok_end (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/tools/perf/bench/ |
D | numa.c | 507 char *tok, *tok_end, *tok_step, *tok_len, *tok_mul; in parse_setup_cpu_list() local 516 tok_end = strstr(tok, "-"); in parse_setup_cpu_list() 518 dprintf("\ntoken: {%s}, end: {%s}\n", tok, tok_end); in parse_setup_cpu_list() 519 if (!tok_end) { in parse_setup_cpu_list() 525 bind_cpu_1 = atol(tok_end + 1); in parse_setup_cpu_list() 644 char *tok, *tok_end, *tok_step, *tok_mul; in parse_setup_node_list() local 652 tok_end = strstr(tok, "-"); in parse_setup_node_list() 654 dprintf("\ntoken: {%s}, end: {%s}\n", tok, tok_end); in parse_setup_node_list() 655 if (!tok_end) { in parse_setup_node_list() 661 bind_node_1 = atol(tok_end + 1); in parse_setup_node_list()
|
/Linux-v4.19/drivers/scsi/aic7xxx/ |
D | aic7xxx_osm.c | 941 char *tok_end; in ahc_parse_brace_option() local 960 tok_end = strchr(opt_arg, '\0'); in ahc_parse_brace_option() 961 if (tok_end < end) in ahc_parse_brace_option() 962 *tok_end = ','; in ahc_parse_brace_option() 1001 tok_end = end; in ahc_parse_brace_option() 1004 if ((tok_end2) && (tok_end2 < tok_end)) in ahc_parse_brace_option() 1005 tok_end = tok_end2; in ahc_parse_brace_option() 1009 opt_arg = tok_end; in ahc_parse_brace_option()
|
D | aic79xx_osm.c | 1062 char *tok_end; in ahd_parse_brace_option() local 1081 tok_end = strchr(opt_arg, '\0'); in ahd_parse_brace_option() 1082 if (tok_end < end) in ahd_parse_brace_option() 1083 *tok_end = ','; in ahd_parse_brace_option() 1122 tok_end = end; in ahd_parse_brace_option() 1125 if ((tok_end2) && (tok_end2 < tok_end)) in ahd_parse_brace_option() 1126 tok_end = tok_end2; in ahd_parse_brace_option() 1130 opt_arg = tok_end; in ahd_parse_brace_option()
|