Home
last modified time | relevance | path

Searched refs:Int4 (Results 1 – 4 of 4) sorted by relevance

/llvm-project/flang/unittests/Evaluate/
H A Dintrinsics.cpp156 using Int4 = Type<TypeCategory::Integer, 4>; in TestIntrinsics() typedef
166 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
169 .Push(Named("a", Const(Scalar<Int4>{}))) in TestIntrinsics()
170 .DoCall(Int4::GetType()); in TestIntrinsics()
172 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
173 .DoCall(Int4::GetType()); in TestIntrinsics()
175 .Push(Named("bad", Const(Scalar<Int4>{}))) in TestIntrinsics()
179 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
180 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
183 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
[all …]
/llvm-project/clang/test/Index/
H A Dcomplete-interfaces.m4 @class Int1, Int2, Int3, Int4;
26 // CHECK-CC1: ObjCInterfaceDecl:{TypedText Int4}
31 // CHECK-CC2-NEXT: ObjCInterfaceDecl:{TypedText Int4}
35 // CHECK-CC3-NEXT: ObjCInterfaceDecl:{TypedText Int4}
40 // CHECK-CC4-NEXT: ObjCInterfaceDecl:{TypedText Int4}
44 // CHECK-CC5-NEXT: ObjCInterfaceDecl:{TypedText Int4}
60 // CHECK-USE-NOT: Int4
/llvm-project/flang/lib/Evaluate/
H A Dfold-integer.cpp612 using Int4 = Type<TypeCategory::Integer, 4>; in FoldIntrinsicFunction()
647 // than BIT_SIZE. It can be converted to Int4 to simplify. in FoldIntrinsicFunction()
650 } else if (const auto *shiftCon{Folder<Int4>(context).Folding(args[2])}) { in FoldIntrinsicFunction()
665 return FoldElementalIntrinsic<T, T, T, Int4>(context, std::move(funcRef), in FoldIntrinsicFunction()
666 ScalarFunc<T, T, T, Int4>( in FoldIntrinsicFunction()
668 const Scalar<Int4> &shift) -> Scalar<T> { in FoldIntrinsicFunction()
691 // than BIT_SIZE. It can be converted to Int4 to simplify. in FoldIntrinsicFunction()
701 } else if (const auto *posCon{Folder<Int4>(context).Folding(args[1])}) { in FoldIntrinsicFunction()
717 return FoldElementalIntrinsic<T, T, Int4>(context, std::move(funcRef), in FoldIntrinsicFunction()
718 ScalarFunc<T, T, Int4>( in FoldIntrinsicFunction()
554 using Int4 = Type<TypeCategory::Integer, 4>; FoldIntrinsicFunction() typedef
[all...]
H A Dfold-real.cpp20 /// arguments to Int4, any overflow error will be reported during the in FoldTransformationalBessel()
22 using Int4 = Type<TypeCategory::Integer, 4>; in FoldTransformationalBessel() typedef
23 if (auto args{GetConstantArguments<Int4, Int4, T>( in FoldTransformationalBessel()
26 if (auto elementalBessel{GetHostRuntimeWrapper<T, Int4, T>(name)}) { in FoldTransformationalBessel()
34 results.emplace_back((*elementalBessel)(context, Scalar<Int4>{i}, x)); in FoldTransformationalBessel()
151 using Int4 = Type<TypeCategory::Integer, 4>; in FoldIntrinsicFunction() typedef
191 if (auto callable{GetHostRuntimeWrapper<T, Int4, T>(name)}) { in FoldIntrinsicFunction()
192 return FoldElementalIntrinsic<T, Int4, T>( in FoldIntrinsicFunction()