Lines Matching refs:st_op
20821 char st_op[4] = { 0 };
20823 if (cimg_sscanf(s1," %3[=+-*/&|minaxor]%c",st_op,&sep)==2 && (sep==')' ||
20826 cimg::strpare(st_op,' ',false,true);
20827 if (!st_op[1])
20828 arg1 = *st_op=='='?0:*st_op=='+'?1:*st_op=='-'?2:*st_op=='*'?3:*st_op=='/'?4:
20829 *st_op=='&'?5:*st_op=='|'?6:~0U;
20830 else if (*st_op=='x' && st_op[1]=='o' && st_op[2]=='r' && !st_op[3]) arg1 = 7;
20831 else if (*st_op=='&' && st_op[1]=='&' && !st_op[2]) arg1 = 8;
20832 else if (*st_op=='|' && st_op[1]=='|' && !st_op[2]) arg1 = 9;
20833 else if (*st_op=='m' && st_op[1]=='i' && st_op[2]=='n' && !st_op[3]) arg1 = 10;
20834 else if (*st_op=='m' && st_op[1]=='a' && st_op[2]=='x' && !st_op[3]) arg1 = 11;