• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/

Lines Matching refs:next

78     char *next;
79 d = strtod(numstr, &next);
81 if (next!=numstr) {
82 if (*next >= 'E' && *next <= 'z') {
83 int e= si_prefixes[*next - 'E'];
85 if (next[1] == 'i') {
87 next+=2;
90 next++;
95 if (*next=='B') {
97 next++;
103 *tail = next;
196 char *next = p->s, *s0 = p->s;
203 d->value = av_strtod(p->s, &next);
204 if (next != p->s) {
206 p->s= next;
226 p->s= next;
231 if (*next == '(') { // special case do-nothing
260 if (strmatch(next, "sinh" )) d->a.func0 = sinh;
261 else if (strmatch(next, "cosh" )) d->a.func0 = cosh;
262 else if (strmatch(next, "tanh" )) d->a.func0 = tanh;
263 else if (strmatch(next, "sin" )) d->a.func0 = sin;
264 else if (strmatch(next, "cos" )) d->a.func0 = cos;
265 else if (strmatch(next, "tan" )) d->a.func0 = tan;
266 else if (strmatch(next, "atan" )) d->a.func0 = atan;
267 else if (strmatch(next, "asin" )) d->a.func0 = asin;
268 else if (strmatch(next, "acos" )) d->a.func0 = acos;
269 else if (strmatch(next, "exp" )) d->a.func0 = exp;
270 else if (strmatch(next, "log" )) d->a.func0 = log;
271 else if (strmatch(next, "abs" )) d->a.func0 = fabs;
272 else if (strmatch(next, "squish")) d->type = e_squish;
273 else if (strmatch(next, "gauss" )) d->type = e_gauss;
274 else if (strmatch(next, "mod" )) d->type = e_mod;
275 else if (strmatch(next, "max" )) d->type = e_max;
276 else if (strmatch(next, "min" )) d->type = e_min;
277 else if (strmatch(next, "eq" )) d->type = e_eq;
278 else if (strmatch(next, "gte" )) d->type = e_gte;
279 else if (strmatch(next, "gt" )) d->type = e_gt;
280 else if (strmatch(next, "lte" )) { AVExpr *tmp = d->param[1]; d->param[1] = d->param[0]; d->param[0] = tmp; d->type = e_gte; }
281 else if (strmatch(next, "lt" )) { AVExpr *tmp = d->param[1]; d->param[1] = d->param[0]; d->param[0] = tmp; d->type = e_gt; }
282 else if (strmatch(next, "ld" )) d->type = e_ld;
283 else if (strmatch(next, "isnan" )) d->type = e_isnan;
284 else if (strmatch(next, "st" )) d->type = e_st;
285 else if (strmatch(next, "while" )) d->type = e_while;
286 else if (strmatch(next, "floor" )) d->type = e_floor;
287 else if (strmatch(next, "ceil" )) d->type = e_ceil;
288 else if (strmatch(next, "trunc" )) d->type = e_trunc;
289 else if (strmatch(next, "sqrt" )) d->type = e_sqrt;
290 else if (strmatch(next, "not" )) d->type = e_not;
293 if (strmatch(next, p->func1_names[i])) {
302 if (strmatch(next, p->func2_names[i])) {