Lines Matching refs:tmp
142 char buf[256] = "", *tmp; in read_next_insn() local
145 tmp = fgets(buf, ARRAY_SIZE(buf), input_file); in read_next_insn()
146 if (tmp == NULL || feof(input_file)) in read_next_insn()
150 insn_buf[i] = (unsigned char)strtoul(tmp, &tmp, 16); in read_next_insn()
151 if (*tmp != ' ') in read_next_insn()
178 char *tmp = NULL; in parse_args() local
202 seed = (unsigned int)strtoul(optarg, &tmp, 0); in parse_args()
203 if (*tmp == ',') { in parse_args()
204 optarg = tmp + 1; in parse_args()
205 iter_start = strtoul(optarg, &tmp, 0); in parse_args()
207 if (*tmp != '\0' || tmp == optarg) in parse_args()
212 iter_end = strtoul(optarg, &tmp, 0); in parse_args()
213 if (*tmp != '\0' || tmp == optarg) in parse_args()