Lines Matching refs:C3V
1173 APFloat C3V = C1V; // copy for modification in ConstantFoldBinaryInstruction() local
1178 (void)C3V.add(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
1179 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()
1181 (void)C3V.subtract(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
1182 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()
1184 (void)C3V.multiply(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
1185 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()
1187 (void)C3V.divide(C2V, APFloat::rmNearestTiesToEven); in ConstantFoldBinaryInstruction()
1188 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()
1190 (void)C3V.mod(C2V); in ConstantFoldBinaryInstruction()
1191 return ConstantFP::get(C1->getContext(), C3V); in ConstantFoldBinaryInstruction()