strmatch          343 libavutil/eval.c         if (strmatch(p->s, p->const_names[i])) {
strmatch          352 libavutil/eval.c         if (strmatch(p->s, constants[i].name)) {
strmatch          402 libavutil/eval.c          if (strmatch(next, "sinh"  )) d->a.func0 = sinh;
strmatch          403 libavutil/eval.c     else if (strmatch(next, "cosh"  )) d->a.func0 = cosh;
strmatch          404 libavutil/eval.c     else if (strmatch(next, "tanh"  )) d->a.func0 = tanh;
strmatch          405 libavutil/eval.c     else if (strmatch(next, "sin"   )) d->a.func0 = sin;
strmatch          406 libavutil/eval.c     else if (strmatch(next, "cos"   )) d->a.func0 = cos;
strmatch          407 libavutil/eval.c     else if (strmatch(next, "tan"   )) d->a.func0 = tan;
strmatch          408 libavutil/eval.c     else if (strmatch(next, "atan"  )) d->a.func0 = atan;
strmatch          409 libavutil/eval.c     else if (strmatch(next, "asin"  )) d->a.func0 = asin;
strmatch          410 libavutil/eval.c     else if (strmatch(next, "acos"  )) d->a.func0 = acos;
strmatch          411 libavutil/eval.c     else if (strmatch(next, "exp"   )) d->a.func0 = exp;
strmatch          412 libavutil/eval.c     else if (strmatch(next, "log"   )) d->a.func0 = log;
strmatch          413 libavutil/eval.c     else if (strmatch(next, "abs"   )) d->a.func0 = fabs;
strmatch          414 libavutil/eval.c     else if (strmatch(next, "time"  )) d->a.func0 = etime;
strmatch          415 libavutil/eval.c     else if (strmatch(next, "squish")) d->type = e_squish;
strmatch          416 libavutil/eval.c     else if (strmatch(next, "gauss" )) d->type = e_gauss;
strmatch          417 libavutil/eval.c     else if (strmatch(next, "mod"   )) d->type = e_mod;
strmatch          418 libavutil/eval.c     else if (strmatch(next, "max"   )) d->type = e_max;
strmatch          419 libavutil/eval.c     else if (strmatch(next, "min"   )) d->type = e_min;
strmatch          420 libavutil/eval.c     else if (strmatch(next, "eq"    )) d->type = e_eq;
strmatch          421 libavutil/eval.c     else if (strmatch(next, "gte"   )) d->type = e_gte;
strmatch          422 libavutil/eval.c     else if (strmatch(next, "gt"    )) d->type = e_gt;
strmatch          423 libavutil/eval.c     else if (strmatch(next, "lte"   )) d->type = e_lte;
strmatch          424 libavutil/eval.c     else if (strmatch(next, "lt"    )) d->type = e_lt;
strmatch          425 libavutil/eval.c     else if (strmatch(next, "ld"    )) d->type = e_ld;
strmatch          426 libavutil/eval.c     else if (strmatch(next, "isnan" )) d->type = e_isnan;
strmatch          427 libavutil/eval.c     else if (strmatch(next, "isinf" )) d->type = e_isinf;
strmatch          428 libavutil/eval.c     else if (strmatch(next, "st"    )) d->type = e_st;
strmatch          429 libavutil/eval.c     else if (strmatch(next, "while" )) d->type = e_while;
strmatch          430 libavutil/eval.c     else if (strmatch(next, "taylor")) d->type = e_taylor;
strmatch          431 libavutil/eval.c     else if (strmatch(next, "root"  )) d->type = e_root;
strmatch          432 libavutil/eval.c     else if (strmatch(next, "floor" )) d->type = e_floor;
strmatch          433 libavutil/eval.c     else if (strmatch(next, "ceil"  )) d->type = e_ceil;
strmatch          434 libavutil/eval.c     else if (strmatch(next, "trunc" )) d->type = e_trunc;
strmatch          435 libavutil/eval.c     else if (strmatch(next, "sqrt"  )) d->type = e_sqrt;
strmatch          436 libavutil/eval.c     else if (strmatch(next, "not"   )) d->type = e_not;
strmatch          437 libavutil/eval.c     else if (strmatch(next, "pow"   )) d->type = e_pow;
strmatch          438 libavutil/eval.c     else if (strmatch(next, "print" )) d->type = e_print;
strmatch          439 libavutil/eval.c     else if (strmatch(next, "random")) d->type = e_random;
strmatch          440 libavutil/eval.c     else if (strmatch(next, "hypot" )) d->type = e_hypot;
strmatch          441 libavutil/eval.c     else if (strmatch(next, "gcd"   )) d->type = e_gcd;
strmatch          442 libavutil/eval.c     else if (strmatch(next, "if"    )) d->type = e_if;
strmatch          443 libavutil/eval.c     else if (strmatch(next, "ifnot" )) d->type = e_ifnot;
strmatch          444 libavutil/eval.c     else if (strmatch(next, "bitand")) d->type = e_bitand;
strmatch          445 libavutil/eval.c     else if (strmatch(next, "bitor" )) d->type = e_bitor;
strmatch          446 libavutil/eval.c     else if (strmatch(next, "between"))d->type = e_between;
strmatch          447 libavutil/eval.c     else if (strmatch(next, "clip"  )) d->type = e_clip;
strmatch          450 libavutil/eval.c             if (strmatch(next, p->func1_names[i])) {
strmatch          459 libavutil/eval.c             if (strmatch(next, p->func2_names[i])) {