Lines Matching refs:result_type

4708   Primitive::Type result_type = conversion->GetResultType();
4709 DCHECK_NE(input_type, result_type);
4713 (result_type == Primitive::kPrimNot) || (result_type == Primitive::kPrimVoid)) {
4714 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
4719 ((Primitive::IsFloatingPointType(result_type) && input_type == Primitive::kPrimLong) ||
4720 (result_type == Primitive::kPrimLong && Primitive::IsFloatingPointType(input_type)))) {
4733 if (Primitive::IsFloatingPointType(result_type)) {
4749 locations->SetOut(calling_convention.GetReturnLocation(result_type));
4755 Primitive::Type result_type = conversion->GetResultType();
4761 DCHECK_NE(input_type, result_type);
4763 if (result_type == Primitive::kPrimLong && Primitive::IsIntegralType(input_type)) {
4770 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
4776 switch (result_type) {
4802 << " to " << result_type;
4804 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
4814 if (result_type == Primitive::kPrimFloat) {
4820 int32_t entry_offset = (result_type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pL2f)
4822 bool direct = (result_type == Primitive::kPrimFloat) ? IsDirectEntrypoint(kQuickL2f)
4829 if (result_type == Primitive::kPrimFloat) {
4839 if (result_type == Primitive::kPrimFloat) {
4845 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
4846 CHECK(result_type == Primitive::kPrimInt || result_type == Primitive::kPrimLong);
4847 if (result_type == Primitive::kPrimLong) {
4923 bool direct = (result_type == Primitive::kPrimFloat) ? IsDirectEntrypoint(kQuickF2l)
5007 } else if (Primitive::IsFloatingPointType(result_type) &&
5011 if (result_type == Primitive::kPrimFloat) {
5018 << " to " << result_type;