Home
last modified time | relevance | path

Searched refs:Type (Results 1 – 25 of 6155) sorted by relevance

12345678910>>...247

/external/llvm/test/tools/llvm-readobj/
Dreloc-types.test21 ELF-32: Type: R_386_NONE (0)
22 ELF-32: Type: R_386_32 (1)
23 ELF-32: Type: R_386_PC32 (2)
24 ELF-32: Type: R_386_GOT32 (3)
25 ELF-32: Type: R_386_PLT32 (4)
26 ELF-32: Type: R_386_COPY (5)
27 ELF-32: Type: R_386_GLOB_DAT (6)
28 ELF-32: Type: R_386_JUMP_SLOT (7)
29 ELF-32: Type: R_386_RELATIVE (8)
30 ELF-32: Type: R_386_GOTOFF (9)
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dmathlimits.h80 typedef T Type; typedef
89 static const Type kPosMin;
91 static const Type kPosMax;
93 static const Type kMin;
95 static const Type kMax;
98 static const Type kNegMin;
101 static const Type kNegMax;
107 static const Type kEpsilon;
112 static const Type kStdError;
118 static const Type kNaN;
[all …]
/external/skia/src/sksl/
DSkSLBuiltinTypes.h24 const std::unique_ptr<Type> fFloat;
25 const std::unique_ptr<Type> fFloat2;
26 const std::unique_ptr<Type> fFloat3;
27 const std::unique_ptr<Type> fFloat4;
29 const std::unique_ptr<Type> fHalf;
30 const std::unique_ptr<Type> fHalf2;
31 const std::unique_ptr<Type> fHalf3;
32 const std::unique_ptr<Type> fHalf4;
34 const std::unique_ptr<Type> fInt;
35 const std::unique_ptr<Type> fInt2;
[all …]
DSkSLBuiltinTypes.cpp21 : fFloat(Type::MakeScalarType( in BuiltinTypes()
22 "float", "f", Type::NumberKind::kFloat, /*priority=*/10, /*bitWidth=*/32)) in BuiltinTypes()
23 , fFloat2(Type::MakeVectorType("float2", "f2", *fFloat, /*columns=*/2)) in BuiltinTypes()
24 , fFloat3(Type::MakeVectorType("float3", "f3", *fFloat, /*columns=*/3)) in BuiltinTypes()
25 , fFloat4(Type::MakeVectorType("float4", "f4", *fFloat, /*columns=*/4)) in BuiltinTypes()
26 , fHalf(Type::MakeScalarType( in BuiltinTypes()
27 "half", "h", Type::NumberKind::kFloat, /*priority=*/9, /*bitWidth=*/16)) in BuiltinTypes()
28 , fHalf2(Type::MakeVectorType("half2", "h2", *fHalf, /*columns=*/2)) in BuiltinTypes()
29 , fHalf3(Type::MakeVectorType("half3", "h3", *fHalf, /*columns=*/3)) in BuiltinTypes()
30 , fHalf4(Type::MakeVectorType("half4", "h4", *fHalf, /*columns=*/4)) in BuiltinTypes()
[all …]
/external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
Dany_cast_reference.pass.cpp79 template <class Type, class ConstT = Type>
84 TEST_IGNORE_NODISCARD any_cast<Type>(a); in checkThrows()
103 std::is_lvalue_reference<Type>::value, in checkThrows()
104 typename std::remove_reference<Type>::type&&, in checkThrows()
105 Type in checkThrows()
126 template <class Type>
128 assert(Type::count == 0); in test_cast_to_reference()
129 Type::reset(); in test_cast_to_reference()
131 any a((Type(42))); in test_cast_to_reference()
133 assert(Type::count == 1); in test_cast_to_reference()
[all …]
/external/angle/src/common/
Dvector_utils.h19 template <size_t Dimension, typename Type>
34 template <size_t Dimension, typename Type>
38 using VectorN = Vector<Dimension, Type>;
42 explicit VectorBase(Type element);
51 const Type *data() const { return mData; } in data()
52 Type *data() { return mData; } in data()
56 static VectorN Load(const Type *source);
57 static void Store(const VectorN &source, Type *destination);
60 Type &operator[](size_t i) { return mData[i]; }
61 const Type &operator[](size_t i) const { return mData[i]; }
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/
DObservableProperty.java38 ANNOTATIONS(Type.MULTIPLE_REFERENCE),
39 ANONYMOUS_CLASS_BODY(Type.MULTIPLE_REFERENCE),
40 ARGUMENTS(Type.MULTIPLE_REFERENCE),
41 ASTERISK(Type.SINGLE_ATTRIBUTE),
42 BODY(Type.SINGLE_REFERENCE),
43 CATCH_CLAUSES(Type.MULTIPLE_REFERENCE),
44 CHECK(Type.SINGLE_REFERENCE),
45 CLASS_BODY(Type.MULTIPLE_REFERENCE),
46 CLASS_DECLARATION(Type.SINGLE_REFERENCE),
47 COMMENT(Type.SINGLE_REFERENCE),
[all …]
/external/icing/icing/tokenization/
Draw-query-tokenizer_test.cc64 IsOkAndHolds(ElementsAre(EqualsToken(Token::Type::REGULAR, "Hello"), in TEST_F()
65 EqualsToken(Token::Type::REGULAR, "World")))); in TEST_F()
69 IsOkAndHolds(ElementsAre(EqualsToken(Token::Type::REGULAR, "hElLo"), in TEST_F()
70 EqualsToken(Token::Type::REGULAR, "WORLD")))); in TEST_F()
85 IsOkAndHolds(ElementsAre(EqualsToken(Token::Type::REGULAR, "��"), in TEST_F()
86 EqualsToken(Token::Type::REGULAR, "Hello"), in TEST_F()
87 EqualsToken(Token::Type::REGULAR, "Goodbye")))); in TEST_F()
91 IsOkAndHolds(ElementsAre(EqualsToken(Token::Type::REGULAR, "Hello"), in TEST_F()
92 EqualsToken(Token::Type::REGULAR, "��"), in TEST_F()
93 EqualsToken(Token::Type::REGULAR, "Goodbye")))); in TEST_F()
[all …]
/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/
Dlanguage-subtag-registry3 Type: language
8 Type: language
14 Type: language
19 Type: language
25 Type: language
31 Type: language
37 Type: language
42 Type: language
49 Type: language
55 Type: language
[all …]
/external/angle/src/compiler/translator/TranslatorMetalDirect/
DPipeline.cpp33 case Type::VertexIn: in uses()
43 case Type::VertexOut: in uses()
59 case Type::FragmentIn: in uses()
73 case Type::FragmentOut: in uses()
86 case Type::UserUniforms: in uses()
95 case Type::NonConstantGlobals: in uses()
104 case Type::InvocationVertexGlobals: in uses()
113 case Type::InvocationFragmentGlobals: in uses()
124 case Type::UniformBuffer: in uses()
132 case Type::AngleUniforms: in uses()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCELFObjectWriter.cpp32 unsigned Type) const override;
79 unsigned Type; in getRelocType() local
89 Type = ELF::R_PPC_REL24; in getRelocType()
92 Type = ELF::R_PPC_PLTREL24; in getRelocType()
95 Type = ELF::R_PPC_LOCAL24PC; in getRelocType()
101 Type = ELF::R_PPC_REL14; in getRelocType()
107 Type = ELF::R_PPC_REL16; in getRelocType()
110 Type = ELF::R_PPC_REL16_LO; in getRelocType()
113 Type = ELF::R_PPC_REL16_HI; in getRelocType()
116 Type = ELF::R_PPC_REL16_HA; in getRelocType()
[all …]
/external/javassist/src/main/javassist/bytecode/analysis/
DExecutor.java36 private final Type STRING_TYPE;
37 private final Type CLASS_TYPE;
38 private final Type THROWABLE_TYPE;
77 frame.push(Type.UNINIT); in execute()
86 frame.push(Type.INTEGER); in execute()
90 frame.push(Type.LONG); in execute()
91 frame.push(Type.TOP); in execute()
96 frame.push(Type.FLOAT); in execute()
100 frame.push(Type.DOUBLE); in execute()
101 frame.push(Type.TOP); in execute()
[all …]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCELFObjectWriter.cpp32 unsigned Type) const override;
75 unsigned Type; in getRelocType() local
85 Type = ELF::R_PPC_REL24; in getRelocType()
88 Type = ELF::R_PPC_PLTREL24; in getRelocType()
91 Type = ELF::R_PPC_LOCAL24PC; in getRelocType()
97 Type = ELF::R_PPC_REL14; in getRelocType()
103 Type = ELF::R_PPC_REL16; in getRelocType()
106 Type = ELF::R_PPC_REL16_LO; in getRelocType()
109 Type = ELF::R_PPC_REL16_HI; in getRelocType()
112 Type = ELF::R_PPC_REL16_HA; in getRelocType()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DValueTypes.cpp140 Type *EVT::getTypeForEVT(LLVMContext &Context) const { in getTypeForEVT()
145 case MVT::isVoid: return Type::getVoidTy(Context); in getTypeForEVT()
146 case MVT::i1: return Type::getInt1Ty(Context); in getTypeForEVT()
147 case MVT::i8: return Type::getInt8Ty(Context); in getTypeForEVT()
148 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT()
149 case MVT::i32: return Type::getInt32Ty(Context); in getTypeForEVT()
150 case MVT::i64: return Type::getInt64Ty(Context); in getTypeForEVT()
152 case MVT::f16: return Type::getHalfTy(Context); in getTypeForEVT()
153 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT()
154 case MVT::f64: return Type::getDoubleTy(Context); in getTypeForEVT()
[all …]
/external/tensorflow/tensorflow/java/src/gen/cc/
Djava_defs.h46 class Type {
51 static const Type Byte() { in Byte()
52 return Type(Type::PRIMITIVE, "byte"); in Byte()
54 static const Type Char() { in Char()
55 return Type(Type::PRIMITIVE, "char"); in Char()
57 static const Type Short() { in Short()
58 return Type(Type::PRIMITIVE, "short"); in Short()
60 static const Type Int() { in Int()
61 return Type(Type::PRIMITIVE, "int"); in Int()
63 static const Type Long() { in Long()
[all …]
/external/protobuf/src/google/protobuf/
Dmap_type_handler.h64 template <bool IsEnum, typename Type>
67 static inline void Initialize(Type& type, int default_enum_value);
70 template <typename Type>
71 class MapValueInitializer<true, Type> {
73 static inline void Initialize(Type& value, int default_enum_value) {
74 value = static_cast<Type>(default_enum_value);
78 template <typename Type>
79 class MapValueInitializer<false, Type> {
81 static inline void Initialize(Type& /* value */,
85 template <typename Type, bool is_arena_constructable>
[all …]
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/
Dregistry.cc65 using Type = OperationType; in Registry() typedef
68 const auto insert_op = [&](Type type, NewShaderFunc func) { in Registry()
71 const auto insert_elementwise_op = [&](Type operation_type) { in Registry()
76 insert_op(Type::ADD, NewAddNodeShader); in Registry()
77 insert_op(Type::CONCAT, NewAlignedConcatNodeShader); in Registry()
78 insert_op(Type::CONCAT, NewFlatConcatNodeShader); in Registry()
79 insert_op(Type::CONCAT, NewConcatNodeShader); in Registry()
80 insert_op(Type::CONVOLUTION_2D, NewConvolution1x1NodeShader); in Registry()
81 insert_op(Type::CONVOLUTION_2D, NewConvolutionNodeShader); in Registry()
82 insert_op(Type::CONVOLUTION_TRANSPOSED, NewConvolutionTransposedNodeShader); in Registry()
[all …]
/external/harfbuzz_ng/src/
Dhb-null.hh92 template <typename Type>
94 static Type const & get_null () in get_null()
96 static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); in get_null()
97 return *reinterpret_cast<Type const *> (_hb_NullPool); in get_null()
103 typedef hb_remove_const<hb_remove_reference<QType>> Type; typedef
104 static const Type & get_null () { return Null<Type>::get_null (); } in get_null()
106 #define Null(Type) NullHelper<Type>::get_null () argument
109 #define DECLARE_NULL_NAMESPACE_BYTES(Namespace, Type) \ argument
111 extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[Namespace::Type::null_size]; \
113 struct Null<Namespace::Type> { \
[all …]
Dhb-open-type.hh56 template <typename Type,
57 unsigned int Size = sizeof (Type)>
60 typedef Type type;
63 explicit constexpr IntType (Type V) : v {V} {} in IntType()
64 IntType& operator = (Type i) { v = i; return *this; } in operator =()
67 …operator typename std::conditional<std::is_signed<Type>::value, signed, unsigned>::type () const {… in operator typename std::conditional<std::is_signed<Type>::value,signed,unsigned>::type()
69 bool operator == (const IntType &o) const { return (Type) v == (Type) o.v; } in operator ==()
91 sizeof (Type) < sizeof (int))>
94 Type b = v; in cmp()
98 hb_enable_if (hb_is_convertible (Type2, Type))>
[all …]
/external/deqp-deps/amber/src/
Dtype_test.cc219 EXPECT_TRUE(Type::IsInt(FormatMode::kSInt)); in TEST_F()
220 EXPECT_TRUE(Type::IsInt(FormatMode::kSNorm)); in TEST_F()
221 EXPECT_TRUE(Type::IsInt(FormatMode::kSScaled)); in TEST_F()
222 EXPECT_TRUE(Type::IsInt(FormatMode::kSRGB)); in TEST_F()
223 EXPECT_TRUE(Type::IsInt(FormatMode::kUNorm)); in TEST_F()
224 EXPECT_TRUE(Type::IsInt(FormatMode::kUInt)); in TEST_F()
225 EXPECT_TRUE(Type::IsInt(FormatMode::kUScaled)); in TEST_F()
226 EXPECT_FALSE(Type::IsInt(FormatMode::kSFloat)); in TEST_F()
227 EXPECT_FALSE(Type::IsInt(FormatMode::kUFloat)); in TEST_F()
231 EXPECT_TRUE(Type::IsSignedInt(FormatMode::kSInt)); in TEST_F()
[all …]
/external/libcxx/test/std/utilities/any/any.nonmembers/
Dmake_any.pass.cpp37 template <class Type>
40 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); in test_make_any_type()
41 assert(Type::count == 0); in test_make_any_type()
42 Type::reset(); in test_make_any_type()
44 any a = std::make_any<Type>(); in test_make_any_type()
46 assert(Type::count == 1); in test_make_any_type()
47 assert(Type::copied == 0); in test_make_any_type()
48 assert(Type::moved == 0); in test_make_any_type()
49 assertContains<Type>(a, 0); in test_make_any_type()
51 assert(Type::count == 0); in test_make_any_type()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DDerivedTypes.h39 class IntegerType : public Type {
43 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){ in IntegerType()
91 static inline bool classof(const Type *T) { in classof()
96 unsigned Type::getIntegerBitWidth() const { in getIntegerBitWidth()
102 class FunctionType : public Type {
103 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
110 static FunctionType *get(Type *Result,
111 ArrayRef<Type*> Params, bool isVarArg);
114 static FunctionType *get(Type *Result, bool isVarArg);
117 static bool isValidReturnType(Type *RetTy);
[all …]
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX8632.h358 using TypedEmitGPR = void (AssemblerX8632::*)(Type, GPRRegister);
359 using TypedEmitAddr = void (AssemblerX8632::*)(Type, const AsmAddress &);
365 using TypedEmitGPRGPR = void (AssemblerX8632::*)(Type, GPRRegister,
367 using TypedEmitGPRAddr = void (AssemblerX8632::*)(Type, GPRRegister,
369 using TypedEmitGPRImm = void (AssemblerX8632::*)(Type, GPRRegister,
384 using TypedEmitGPRGPRImm = void (AssemblerX8632::*)(Type, GPRRegister,
394 using TypedEmitAddrGPR = void (AssemblerX8632::*)(Type, const AsmAddress &,
396 using TypedEmitAddrImm = void (AssemblerX8632::*)(Type, const AsmAddress &,
404 using TypedEmitXmmXmm = void (AssemblerX8632::*)(Type, XmmRegister,
406 using TypedEmitXmmAddr = void (AssemblerX8632::*)(Type, XmmRegister,
[all …]
/external/vulkan-validation-layers/layers/generated/
Dvk_typemap_helper.h48 typedef VkApplicationInfo Type;
57 typedef VkInstanceCreateInfo Type;
66 typedef VkDeviceQueueCreateInfo Type;
75 typedef VkDeviceCreateInfo Type;
84 typedef VkSubmitInfo Type;
93 typedef VkMemoryAllocateInfo Type;
102 typedef VkMappedMemoryRange Type;
111 typedef VkBindSparseInfo Type;
120 typedef VkFenceCreateInfo Type;
129 typedef VkSemaphoreCreateInfo Type;
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder.h80 Type* mVoidTy;
81 Type* mHandleTy;
82 Type* mInt1Ty;
83 Type* mInt8Ty;
84 Type* mInt16Ty;
85 Type* mInt32Ty;
86 Type* mInt64Ty;
87 Type* mIntPtrTy;
88 Type* mFP16Ty;
89 Type* mFP32Ty;
[all …]

12345678910>>...247