strmatch 367 libavutil/eval.c if (strmatch(p->s, p->const_names[i])) { strmatch 376 libavutil/eval.c if (strmatch(p->s, constants[i].name)) { strmatch 426 libavutil/eval.c if (strmatch(next, "sinh" )) d->a.func0 = sinh; strmatch 427 libavutil/eval.c else if (strmatch(next, "cosh" )) d->a.func0 = cosh; strmatch 428 libavutil/eval.c else if (strmatch(next, "tanh" )) d->a.func0 = tanh; strmatch 429 libavutil/eval.c else if (strmatch(next, "sin" )) d->a.func0 = sin; strmatch 430 libavutil/eval.c else if (strmatch(next, "cos" )) d->a.func0 = cos; strmatch 431 libavutil/eval.c else if (strmatch(next, "tan" )) d->a.func0 = tan; strmatch 432 libavutil/eval.c else if (strmatch(next, "atan" )) d->a.func0 = atan; strmatch 433 libavutil/eval.c else if (strmatch(next, "asin" )) d->a.func0 = asin; strmatch 434 libavutil/eval.c else if (strmatch(next, "acos" )) d->a.func0 = acos; strmatch 435 libavutil/eval.c else if (strmatch(next, "exp" )) d->a.func0 = exp; strmatch 436 libavutil/eval.c else if (strmatch(next, "log" )) d->a.func0 = log; strmatch 437 libavutil/eval.c else if (strmatch(next, "abs" )) d->a.func0 = fabs; strmatch 438 libavutil/eval.c else if (strmatch(next, "time" )) d->a.func0 = etime; strmatch 439 libavutil/eval.c else if (strmatch(next, "squish")) d->type = e_squish; strmatch 440 libavutil/eval.c else if (strmatch(next, "gauss" )) d->type = e_gauss; strmatch 441 libavutil/eval.c else if (strmatch(next, "mod" )) d->type = e_mod; strmatch 442 libavutil/eval.c else if (strmatch(next, "max" )) d->type = e_max; strmatch 443 libavutil/eval.c else if (strmatch(next, "min" )) d->type = e_min; strmatch 444 libavutil/eval.c else if (strmatch(next, "eq" )) d->type = e_eq; strmatch 445 libavutil/eval.c else if (strmatch(next, "gte" )) d->type = e_gte; strmatch 446 libavutil/eval.c else if (strmatch(next, "gt" )) d->type = e_gt; strmatch 447 libavutil/eval.c else if (strmatch(next, "lte" )) d->type = e_lte; strmatch 448 libavutil/eval.c else if (strmatch(next, "lt" )) d->type = e_lt; strmatch 449 libavutil/eval.c else if (strmatch(next, "ld" )) d->type = e_ld; strmatch 450 libavutil/eval.c else if (strmatch(next, "isnan" )) d->type = e_isnan; strmatch 451 libavutil/eval.c else if (strmatch(next, "isinf" )) d->type = e_isinf; strmatch 452 libavutil/eval.c else if (strmatch(next, "st" )) d->type = e_st; strmatch 453 libavutil/eval.c else if (strmatch(next, "while" )) d->type = e_while; strmatch 454 libavutil/eval.c else if (strmatch(next, "taylor")) d->type = e_taylor; strmatch 455 libavutil/eval.c else if (strmatch(next, "root" )) d->type = e_root; strmatch 456 libavutil/eval.c else if (strmatch(next, "floor" )) d->type = e_floor; strmatch 457 libavutil/eval.c else if (strmatch(next, "ceil" )) d->type = e_ceil; strmatch 458 libavutil/eval.c else if (strmatch(next, "trunc" )) d->type = e_trunc; strmatch 459 libavutil/eval.c else if (strmatch(next, "round" )) d->type = e_round; strmatch 460 libavutil/eval.c else if (strmatch(next, "sqrt" )) d->type = e_sqrt; strmatch 461 libavutil/eval.c else if (strmatch(next, "not" )) d->type = e_not; strmatch 462 libavutil/eval.c else if (strmatch(next, "pow" )) d->type = e_pow; strmatch 463 libavutil/eval.c else if (strmatch(next, "print" )) d->type = e_print; strmatch 464 libavutil/eval.c else if (strmatch(next, "random")) d->type = e_random; strmatch 465 libavutil/eval.c else if (strmatch(next, "hypot" )) d->type = e_hypot; strmatch 466 libavutil/eval.c else if (strmatch(next, "gcd" )) d->type = e_gcd; strmatch 467 libavutil/eval.c else if (strmatch(next, "if" )) d->type = e_if; strmatch 468 libavutil/eval.c else if (strmatch(next, "ifnot" )) d->type = e_ifnot; strmatch 469 libavutil/eval.c else if (strmatch(next, "bitand")) d->type = e_bitand; strmatch 470 libavutil/eval.c else if (strmatch(next, "bitor" )) d->type = e_bitor; strmatch 471 libavutil/eval.c else if (strmatch(next, "between"))d->type = e_between; strmatch 472 libavutil/eval.c else if (strmatch(next, "clip" )) d->type = e_clip; strmatch 473 libavutil/eval.c else if (strmatch(next, "atan2" )) d->type = e_atan2; strmatch 474 libavutil/eval.c else if (strmatch(next, "lerp" )) d->type = e_lerp; strmatch 475 libavutil/eval.c else if (strmatch(next, "sgn" )) d->type = e_sgn; strmatch 478 libavutil/eval.c if (strmatch(next, p->func1_names[i])) { strmatch 488 libavutil/eval.c if (strmatch(next, p->func2_names[i])) {