Lines Matching full:mathop
79 int mathOp = -1;
113 mathOp = ADD;
121 mathOp = ADD;
127 mathOp = SUB;
131 mathOp = MUL;
135 mathOp = DIV;
139 mathOp = REM;
142 mathOp = AND;
145 mathOp = OR;
148 mathOp = XOR;
151 mathOp = SHL;
154 mathOp = SHR;
157 mathOp = USHR;
181 accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister);
185 accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister);
193 accessorType = mathOp; fbreak;
210 private static int getIncrementType(int mathOp, int mathType, long constantValue, int putRegister,
252 boolean isAdd = ((mathOp == ADD) && !negativeConstant) ||
253 ((mathOp == SUB) && negativeConstant);