Home
last modified time | relevance | path

Searched refs:Type1 (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/CSKY/
H A DCSKYISelDAGToDAG.cpp295 auto Type1 = N->getValueType(1); in selectAddCarry() local
304 Subtarget->has2E3() ? CSKY::CLRC32 : CSKY::CLRC16, Dl, Type1); in selectAddCarry()
306 Subtarget->has2E3() ? CSKY::ADDC32 : CSKY::ADDC16, Dl, {Type0, Type1}, in selectAddCarry()
310 Subtarget->has2E3() ? CSKY::SETC32 : CSKY::SETC16, Dl, Type1); in selectAddCarry()
312 Subtarget->has2E3() ? CSKY::ADDC32 : CSKY::ADDC16, Dl, {Type0, Type1}, in selectAddCarry()
317 Dl, {Type0, Type1}, {Op0, Op1, Op2}); in selectAddCarry()
338 auto Type1 = N->getValueType(1); in selectSubCarry() local
347 Subtarget->has2E3() ? CSKY::SETC32 : CSKY::SETC16, Dl, Type1); in selectSubCarry()
349 Subtarget->has2E3() ? CSKY::SUBC32 : CSKY::SUBC16, Dl, {Type0, Type1}, in selectSubCarry()
353 Subtarget->has2E3() ? CSKY::CLRC32 : CSKY::CLRC16, Dl, Type1); in selectSubCarry()
[all …]
/llvm-project-15.0.7/flang/runtime/
H A Dfindloc.cpp22 using Type1 = CppTypeFor<CAT1, KIND1>; typedef
26 return *array.Element<Type1>(at) == *target.OffsetElement<Type2>(); in operator ()()
32 using Type1 = CppTypeFor<TypeCategory::Complex, KIND1>; typedef
36 const Type1 &xz{*array.Element<Type1>(at)}; in operator ()()
44 using Type1 = CppTypeFor<TypeCategory::Complex, KIND1>; typedef
48 const Type1 &z{*array.Element<Type1>(at)}; in operator ()()
55 using Type1 = CppTypeFor<CAT1, KIND1>; typedef
60 return *array.Element<Type1>(at) == z.real() && z.imag() == 0; in operator ()()
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-cpp/
H A Dmain.cpp17 typedef int Type1; // should show as char typedef
18 typedef Type1 Type2; // should show as hex
79 const Type1& T1ILookChar = 11; in main()
/llvm-project-15.0.7/clang/test/Misc/
H A Dinteger-literal-printing.cpp4 template <short T> class Type1 {}; class
5 template <short T> void Function1(Type1<T>& x) {} // expected-note{{candidate function [with T = -4… in Function1()
68 Function1(Type1<-42>()); // expected-error{{no matching function for call to 'Function1'}} in Function()
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dovl-check.m6 struct Type1 { int a; }; struct
11 - (void) test:(struct Type1 *)arg; argument
50 - (void) testCFTypeRef:(struct Type1 *)arg; argument
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Dobjc-weak-type-traits.mm9 #define TRAIT_IS_TRUE_2(Trait, Type1, Type2) static_assert(Trait(Type1, Type2), "")
10 #define TRAIT_IS_FALSE_2(Trait, Type1, Type2) static_assert(!Trait(Type1, Type2), "")
H A Darc-type-traits.mm13 #define TRAIT_IS_TRUE_2(Trait, Type1, Type2) char JOIN2(Trait,__LINE__)[Trait(Type1, Type2)? 1 : -1]
14 #define TRAIT_IS_FALSE_2(Trait, Type1, Type2) char JOIN2(Trait,__LINE__)[Trait(Type1, Type2)? -1 : …
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h206 LLT Type1; member
211 return Type0 == Other.Type0 && Type1 == Other.Type1 &&
218 return Type0 == Other.Type0 && Type1 == Other.Type1 && in isCompatible()
/llvm-project-15.0.7/clang/test/Parser/
H A Dcxx-decl.cpp124 typedef Class1<Class2> Type1;
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_case.py114 (test1, (Type1, instance1, _)), (test2,
116 self.assertEqual((test1, Type1, instance1), (test, Exception, exc1))
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DELF.h564 uint8_t Type1 = (Type >> 0) & 0xFF; in getRelocationTypeName() local
569 StringRef Name = getRelocationTypeName(Type1); in getRelocationTypeName()