Lines Matching defs:temp
268 char in[64], *temp;
284 if (!(temp = strrchr(in, '/')))
287 hwpath.mod = simple_strtoul(temp+1, NULL, 10);
288 in[temp-in] = '\0'; /* truncate the remaining string. just precaution */
296 for (i=5; ((temp = strrchr(in, '/'))) && (temp-in > 0) && (likely(i)); i--) {
297 hwpath.bc[i] = simple_strtoul(temp+1, NULL, 10);
298 in[temp-in] = '\0';
384 char in[64], *temp;
403 temp = in;
404 for (i=1; ((temp = strchr(temp, '.'))) && (likely(i<6)); i++) {
405 if (unlikely(!isdigit(*(++temp))))
407 layers[i] = simple_strtoul(temp, NULL, 10);
747 char in[8], *temp;
771 temp = skip_spaces(in);
773 c = *temp++ - '0';