Lines Matching refs:tptr
354 char *tptr;
377 v = strtod(oarg.s, &tptr);
378 if (oarg.e != tptr) {
405 tptr = av_malloc(oarg.e - oarg.s + 1);
406 if (!tptr)
408 memcpy(tptr, oarg.s, oarg.e - oarg.s);
409 tptr[oarg.e - oarg.s] = 0;
411 p->scs.opt_mix = tptr;
415 v = strtod(oarg.s, &tptr);
416 if (oarg.e != tptr) {
429 r = strtol(oarg.s, &tptr, 10);
430 if (oarg.e != tptr) {