Lines Matching refs:tptr
353 char *tptr; in parse_options() local
376 v = strtod(oarg.s, &tptr); in parse_options()
377 if (oarg.e != tptr) { in parse_options()
404 tptr = av_malloc(oarg.e - oarg.s + 1); in parse_options()
405 if (!tptr) in parse_options()
407 memcpy(tptr, oarg.s, oarg.e - oarg.s); in parse_options()
408 tptr[oarg.e - oarg.s] = 0; in parse_options()
410 p->scs.opt_mix = tptr; in parse_options()
414 v = strtod(oarg.s, &tptr); in parse_options()
415 if (oarg.e != tptr) { in parse_options()
428 r = strtol(oarg.s, &tptr, 10); in parse_options()
429 if (oarg.e != tptr) { in parse_options()