Home
last modified time | relevance | path

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

12345678910>>...253

/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/swiftshader/third_party/llvm-7.0/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/skia/src/sksl/
DSkSLContext.h22 : fInvalid_Type(new Type("<INVALID>")) in Context()
23 , fVoid_Type(new Type("void")) in Context()
24 , fNull_Type(new Type("null")) in Context()
25 , fFloatLiteral_Type(new Type("$floatLiteral", Type::kFloat_NumberKind, 3)) in Context()
26 , fIntLiteral_Type(new Type("$intLiteral", Type::kSigned_NumberKind, 1)) in Context()
27 , fDouble_Type(new Type("double", Type::kFloat_NumberKind, 6, true)) in Context()
28 , fDouble2_Type(new Type("double2", *fDouble_Type, 2)) in Context()
29 , fDouble3_Type(new Type("double3", *fDouble_Type, 3)) in Context()
30 , fDouble4_Type(new Type("double4", *fDouble_Type, 4)) in Context()
31 , fFloat_Type(new Type("float", Type::kFloat_NumberKind, 5, true)) in Context()
[all …]
/external/v8/src/compiler/
Dtype-cache.h28 Type const kInt8 = CreateRange<int8_t>();
29 Type const kUint8 = CreateRange<uint8_t>();
30 Type const kUint8Clamped = kUint8;
31 Type const kUint8OrMinusZeroOrNaN =
32 Type::Union(kUint8, Type::MinusZeroOrNaN(), zone());
33 Type const kInt16 = CreateRange<int16_t>();
34 Type const kUint16 = CreateRange<uint16_t>();
35 Type const kInt32 = Type::Signed32();
36 Type const kUint32 = Type::Unsigned32();
37 Type const kFloat32 = Type::Number();
[all …]
Doperation-typer.cc24 Type::NewConstant(js_heap_broker, factory->infinity_value(), zone); in OperationTyper()
26 Type::NewConstant(js_heap_broker, factory->minus_infinity_value(), zone); in OperationTyper()
27 Type truncating_to_zero = Type::MinusZeroOrNaN(); in OperationTyper()
28 DCHECK(!truncating_to_zero.Maybe(Type::Integral32())); in OperationTyper()
31 Type::HeapConstant(js_heap_broker, factory->empty_string(), zone); in OperationTyper()
33 Type::HeapConstant(js_heap_broker, factory->NaN_string(), zone); in OperationTyper()
35 Type::HeapConstant(js_heap_broker, factory->zero_string(), zone); in OperationTyper()
37 Type::HeapConstant(js_heap_broker, factory->false_value(), zone); in OperationTyper()
39 Type::HeapConstant(js_heap_broker, factory->true_value(), zone); in OperationTyper()
41 Type::HeapConstant(js_heap_broker, factory->the_hole_value(), zone); in OperationTyper()
[all …]
Dtyper.cc77 return UpdateType(node, Type##x(node)); in Reduce()
136 Type TypeNode(Node* node) { in TypeNode()
143 #define DECLARE_CASE(x) case IrOpcode::k##x: return Type##x(node); in TypeNode()
202 Type TypeConstant(Handle<Object> value);
209 #define DECLARE_METHOD(x) inline Type Type##x(Node* node);
218 Type TypeOrNone(Node* node) { in DECLARE_METHOD()
220 : Type::None(); in DECLARE_METHOD()
223 Type Operand(Node* node, int i) { in Operand()
228 Type Weaken(Node* node, Type current_type, Type previous_type);
238 typedef Type (*UnaryTyperFun)(Type, Typer* t);
[all …]
Doperation-typer.h25 class Type; variable
33 Type Merge(Type left, Type right);
35 Type ToPrimitive(Type type);
36 Type ToNumber(Type type);
37 Type ToNumberConvertBigInt(Type type);
38 Type ToNumeric(Type type);
39 Type ToBoolean(Type type);
41 Type WeakenRange(Type current_range, Type previous_range);
44 #define DECLARE_METHOD(Name) Type Name(Type type);
51 #define DECLARE_METHOD(Name) Type Name(Type lhs, Type rhs);
[all …]
/external/skqp/src/sksl/
DSkSLContext.h22 : fInvalid_Type(new Type("<INVALID>")) in Context()
23 , fVoid_Type(new Type("void")) in Context()
24 , fDouble_Type(new Type("double", Type::kFloat_NumberKind, 4)) in Context()
25 , fDouble2_Type(new Type("double2", *fDouble_Type, 2)) in Context()
26 , fDouble3_Type(new Type("double3", *fDouble_Type, 3)) in Context()
27 , fDouble4_Type(new Type("double4", *fDouble_Type, 4)) in Context()
28 , fFloat_Type(new Type("float", Type::kFloat_NumberKind, 3)) in Context()
29 , fFloat2_Type(new Type("float2", *fFloat_Type, 2)) in Context()
30 , fFloat3_Type(new Type("float3", *fFloat_Type, 3)) in Context()
31 , fFloat4_Type(new Type("float4", *fFloat_Type, 4)) in Context()
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dmathlimits.h67 typedef T Type; typedef
76 static const Type kPosMin;
78 static const Type kPosMax;
80 static const Type kMin;
82 static const Type kMax;
85 static const Type kNegMin;
88 static const Type kNegMax;
94 static const Type kEpsilon;
99 static const Type kStdError;
105 static const Type kNaN;
[all …]
Dmathlimits.cc47 #define DEF_COMMON_LIMITS(Type) argument
48 #define DEF_UNSIGNED_INT_LIMITS(Type) argument
49 #define DEF_SIGNED_INT_LIMITS(Type) argument
50 #define DEF_PRECISION_LIMITS(Type) argument
54 #define DEF_COMMON_LIMITS(Type) \
55 const bool MathLimits<Type>::kIsSigned; \
56 const bool MathLimits<Type>::kIsInteger; \
57 const int MathLimits<Type>::kMin10Exp; \
58 const int MathLimits<Type>::kMax10Exp;
60 #define DEF_UNSIGNED_INT_LIMITS(Type) \
[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/cldr/tools/java/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/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 CLASS_EXPR(Type.SINGLE_REFERENCE),
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCELFObjectWriter.cpp33 unsigned Type) const override;
80 unsigned Type; in getRelocType() local
90 Type = ELF::R_PPC_REL24; in getRelocType()
93 Type = ELF::R_PPC_PLTREL24; in getRelocType()
96 Type = ELF::R_PPC_LOCAL24PC; in getRelocType()
102 Type = ELF::R_PPC_REL14; in getRelocType()
108 Type = ELF::R_PPC_REL16; in getRelocType()
111 Type = ELF::R_PPC_REL16_LO; in getRelocType()
114 Type = ELF::R_PPC_REL16_HI; in getRelocType()
117 Type = ELF::R_PPC_REL16_HA; in getRelocType()
[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/protobuf/src/google/protobuf/
Dmap_type_handler.h59 template <bool IsEnum, typename Type>
62 static inline void Initialize(Type& type, int default_enum_value);
65 template <typename Type>
66 class MapValueInitializer<true, Type> {
68 static inline void Initialize(Type& value, int default_enum_value) {
69 value = static_cast<Type>(default_enum_value);
73 template <typename Type>
74 class MapValueInitializer<false, Type> {
76 static inline void Initialize(Type& value, int default_enum_value) {}
79 template <typename Type, bool is_arena_constructable>
[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/harfbuzz_ng/src/
Dhb-open-type.hh60 template <typename Type, unsigned int Size>
63 typedef Type type;
64 typedef typename hb_signedness_int<hb_is_signed<Type>::value>::value wide_type;
68 bool operator == (const IntType<Type,Size> &o) const { return (Type) v == (Type) o.v; } in operator ==()
69 bool operator != (const IntType<Type,Size> &o) const { return !(*this == o); } in operator !=()
70 static int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); } in cmp()
74 Type b = v; in cmp()
75 if (sizeof (Type) < sizeof (int) && sizeof (Type2) < sizeof (int)) in cmp()
86 BEInt<Type, Size> v;
169 template <typename Type, bool has_null=true>
[all …]
Dhb-null.hh107 template <typename Type>
108 static inline Type const & Null () { in Null()
109 static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); in Null()
110 return *reinterpret_cast<Type const *> (_hb_NullPool); in Null()
115 typedef typename hb_remove_const (typename hb_remove_reference (QType)) Type; typedef
116 static const Type & get_null () { return Null<Type> (); } in get_null()
118 #define Null(Type) NullHelper<Type>::get_null () argument
121 #define DECLARE_NULL_NAMESPACE_BYTES(Namespace, Type) \ argument
123 extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[Namespace::Type::null_size]; \
125 /*static*/ inline const Namespace::Type& Null<Namespace::Type> () { \
[all …]
/external/v8/src/base/
Dflags.h90 #define DEFINE_OPERATORS_FOR_FLAGS(Type) \ argument
91 inline Type operator&( \
92 Type::flag_type lhs, \
93 Type::flag_type rhs)ALLOW_UNUSED_TYPE V8_WARN_UNUSED_RESULT; \
94 inline Type operator&(Type::flag_type lhs, Type::flag_type rhs) { \
95 return Type(lhs) & rhs; \
97 inline Type operator&( \
98 Type::flag_type lhs, \
99 const Type& rhs)ALLOW_UNUSED_TYPE V8_WARN_UNUSED_RESULT; \
100 inline Type operator&(Type::flag_type lhs, const Type& rhs) { \
[all …]
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX86Base.h179 using TypedEmitGPR = void (AssemblerX86Base::*)(Type, GPRRegister);
180 using TypedEmitAddr = void (AssemblerX86Base::*)(Type, const Address &);
186 using TypedEmitGPRGPR = void (AssemblerX86Base::*)(Type, GPRRegister,
188 using TypedEmitGPRAddr = void (AssemblerX86Base::*)(Type, GPRRegister,
190 using TypedEmitGPRImm = void (AssemblerX86Base::*)(Type, GPRRegister,
205 using TypedEmitGPRGPRImm = void (AssemblerX86Base::*)(Type, GPRRegister,
215 using TypedEmitAddrGPR = void (AssemblerX86Base::*)(Type, const Address &,
217 using TypedEmitAddrImm = void (AssemblerX86Base::*)(Type, const Address &,
225 using TypedEmitXmmXmm = void (AssemblerX86Base::*)(Type, XmmRegister,
227 using TypedEmitXmmAddr = void (AssemblerX86Base::*)(Type, XmmRegister,
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder.h52 Type* mVoidTy;
53 Type* mInt1Ty;
54 Type* mInt8Ty;
55 Type* mInt16Ty;
56 Type* mInt32Ty;
57 Type* mInt64Ty;
58 Type* mIntPtrTy;
59 Type* mFP16Ty;
60 Type* mFP32Ty;
61 Type* mFP32PtrTy;
[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-7.0/llvm/include/llvm/IR/
DDerivedTypes.h40 class IntegerType : public Type {
44 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){ in IntegerType()
92 static bool classof(const Type *T) { in classof()
97 unsigned Type::getIntegerBitWidth() const { in getIntegerBitWidth()
103 class FunctionType : public Type {
104 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
111 static FunctionType *get(Type *Result,
112 ArrayRef<Type*> Params, bool isVarArg);
115 static FunctionType *get(Type *Result, bool isVarArg);
118 static bool isValidReturnType(Type *RetTy);
[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 …]

12345678910>>...253