Lines Matching defs:tmp
125 char buf[256] = "", *tmp;
128 tmp = fgets(buf, ARRAY_SIZE(buf), input_file);
129 if (tmp == NULL || feof(input_file))
133 insn_buff[i] = (unsigned char)strtoul(tmp, &tmp, 16);
134 if (*tmp != ' ')
161 char *tmp = NULL;
185 seed = (unsigned int)strtoul(optarg, &tmp, 0);
186 if (*tmp == ',') {
187 optarg = tmp + 1;
188 iter_start = strtoul(optarg, &tmp, 0);
190 if (*tmp != '\0' || tmp == optarg)
195 iter_end = strtoul(optarg, &tmp, 0);
196 if (*tmp != '\0' || tmp == optarg)