Home
last modified time | relevance | path

Searched refs:Type2 (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dreloc-types-mips64.test72 Type2: R_MIPS_16
75 Type2: R_MIPS_32
78 Type2: R_MIPS_REL32
81 Type2: R_MIPS_26
84 Type2: R_MIPS_HI16
87 Type2: R_MIPS_LO16
99 Type2: R_MIPS_PC16
114 Type2: R_MIPS_64
132 Type2: R_MIPS_SUB
171 Type2: R_MIPS_JALR
[all …]
/llvm-project-15.0.7/llvm/test/Object/Mips/
H A Delf-mips64-rel.yaml20 # YAML-NEXT: Type2: R_MIPS_SUB
26 # YAML-NEXT: Type2: R_MIPS_SUB
41 # YAML-NEXT: Type2: R_MIPS_LO16
67 Type2: R_MIPS_SUB
73 Type2: R_MIPS_SUB
91 Type2: R_MIPS_LO16
/llvm-project-15.0.7/flang/runtime/
H A Dfindloc.cpp23 using Type2 = CppTypeFor<CAT2, KIND2>; typedef
26 return *array.Element<Type1>(at) == *target.OffsetElement<Type2>(); in operator ()()
33 using Type2 = CppTypeFor<TypeCategory::Complex, KIND2>; typedef
37 const Type2 &tz{*target.OffsetElement<Type2>()}; in operator ()()
45 using Type2 = CppTypeFor<CAT2, KIND2>; typedef
49 return z.imag() == 0 && z.real() == *target.OffsetElement<Type2>(); in operator ()()
56 using Type2 = CppTypeFor<TypeCategory::Complex, KIND2>; typedef
59 const Type2 &z{*target.OffsetElement<Type2>()}; in operator ()()
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-cpp/
H A Dmain.cpp18 typedef Type1 Type2; // should show as hex typedef
19 typedef Type2 Type3; // should show as char
80 Type2 T2ILookHex = 12; in main()
/llvm-project-15.0.7/clang/test/Misc/
H A Dinteger-literal-printing.cpp7 template <unsigned short T> class Type2 {}; class
8 template <unsigned short T> void Function2(Type2<T>& x) {} // expected-note{{candidate function [wi… in Function2()
69 Function2(Type2<42>()); // expected-error{{no matching function for call to 'Function2'}} in Function()
/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/libcxx/test/libcxx/utilities/function.objects/func.require/
H A Dbullet_1_2_3.pass.cpp256 template <class Type2,
257 … class = typename std::enable_if<!std::__is_same_uncvref<Type2, ReferenceWrapper>::value>::type>
258 constexpr ReferenceWrapper(Type2&& t) noexcept : ptr(&t) {} in ReferenceWrapper()
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dmangle-ms-templates.cpp239 struct Type2 {}; struct
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1752 Type2(ELFYAML::ELF_REL(ELF::R_MIPS_NONE)), in NormalizedMips64RelType()
1756 : Type(Original & 0xFF), Type2(Original >> 8 & 0xFF), in NormalizedMips64RelType()
1760 ELFYAML::ELF_REL Res = Type | Type2 << 8 | Type3 << 16 | SpecSym << 24; in denormalize()
1765 ELFYAML::ELF_REL Type2; member
1865 IO.mapOptional("Type2", Key->Type2, ELFYAML::ELF_REL(ELF::R_MIPS_NONE)); in mapping()
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_case.py115 (Type2, instance2, _)) = reversed(MockResult.errors)
117 self.assertEqual((test2, Type2, instance2), (test, Exception, exc2))
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DELF.h565 uint8_t Type2 = (Type >> 8) & 0xFF; in getRelocationTypeName() local
572 Name = getRelocationTypeName(Type2); in getRelocationTypeName()