Lines Matching full:mathop
72 int mathOp = -1;
106 mathOp = ADD;
114 mathOp = ADD;
120 mathOp = SUB;
124 mathOp = MUL;
128 mathOp = DIV;
132 mathOp = REM;
135 mathOp = AND;
138 mathOp = OR;
141 mathOp = XOR;
144 mathOp = SHL;
147 mathOp = SHR;
150 mathOp = USHR;
174 accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister);
178 accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister);
186 accessorType = mathOp; fbreak;
203 private static int getIncrementType(int mathOp, int mathType, long constantValue, int putRegister,
245 boolean isAdd = ((mathOp == ADD) && !negativeConstant) ||
246 ((mathOp == SUB) && negativeConstant);