Home
last modified time | relevance | path

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

12345678910>>...205

/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/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/skia/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/v8/src/compiler/
Doperation-typer.cc22 infinity_ = Type::NewConstant(factory->infinity_value(), zone); in OperationTyper()
23 minus_infinity_ = Type::NewConstant(factory->minus_infinity_value(), zone); in OperationTyper()
24 Type* truncating_to_zero = Type::MinusZeroOrNaN(); in OperationTyper()
25 DCHECK(!truncating_to_zero->Maybe(Type::Integral32())); in OperationTyper()
27 singleton_false_ = Type::HeapConstant(factory->false_value(), zone); in OperationTyper()
28 singleton_true_ = Type::HeapConstant(factory->true_value(), zone); in OperationTyper()
29 singleton_the_hole_ = Type::HeapConstant(factory->the_hole_value(), zone); in OperationTyper()
30 signed32ish_ = Type::Union(Type::Signed32(), truncating_to_zero, zone); in OperationTyper()
31 unsigned32ish_ = Type::Union(Type::Unsigned32(), truncating_to_zero, zone); in OperationTyper()
34 Type* OperationTyper::Merge(Type* left, Type* right) { in Merge()
[all …]
Dtype-cache.h26 Type* const kInt8 = CreateRange<int8_t>();
27 Type* const kUint8 = CreateRange<uint8_t>();
28 Type* const kUint8Clamped = kUint8;
29 Type* const kUint8OrMinusZeroOrNaN =
30 Type::Union(kUint8, Type::MinusZeroOrNaN(), zone());
31 Type* const kInt16 = CreateRange<int16_t>();
32 Type* const kUint16 = CreateRange<uint16_t>();
33 Type* const kInt32 = Type::Signed32();
34 Type* const kUint32 = Type::Unsigned32();
35 Type* const kFloat32 = Type::Number();
[all …]
Dtyper.cc46 singleton_empty_string_ = Type::HeapConstant(factory->empty_string(), zone); in Typer()
49 falsish_ = Type::Union( in Typer()
50 Type::Undetectable(), in Typer()
51 Type::Union(Type::Union(singleton_false_, cache_.kZeroish, zone), in Typer()
52 Type::Union(singleton_empty_string_, Type::Hole(), zone), in Typer()
55 truish_ = Type::Union( in Typer()
57 Type::Union(Type::DetectableReceiver(), Type::Symbol(), zone), zone); in Typer()
87 return UpdateType(node, Type##x(node)); in Reduce()
145 Type* TypeNode(Node* node) { in TypeNode()
152 #define DECLARE_CASE(x) case IrOpcode::k##x: return Type##x(node); in TypeNode()
[all …]
Doperation-typer.h23 class Type; variable
31 Type* Merge(Type* left, Type* right);
33 Type* ToPrimitive(Type* type);
36 Type* ToNumber(Type* type);
37 Type* WeakenRange(Type* current_range, Type* previous_range);
40 #define DECLARE_METHOD(Name) Type* Name(Type* type);
45 #define DECLARE_METHOD(Name) Type* Name(Type* lhs, Type* rhs);
50 Type* TypeTypeGuard(const Operator* sigma_op, Type* input);
58 Type* singleton_false() const { return singleton_false_; } in singleton_false()
59 Type* singleton_true() const { return singleton_true_; } in singleton_true()
[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.cpp78 template <class Type, class ConstT = Type>
83 TEST_IGNORE_NODISCARD any_cast<Type>(a); in checkThrows()
102 std::is_lvalue_reference<Type>::value, in checkThrows()
103 typename std::remove_reference<Type>::type&&, in checkThrows()
104 Type in checkThrows()
125 template <class Type>
127 assert(Type::count == 0); in test_cast_to_reference()
128 Type::reset(); in test_cast_to_reference()
130 any a((Type(42))); in test_cast_to_reference()
132 assert(Type::count == 1); in test_cast_to_reference()
[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/javassist/src/main/javassist/bytecode/analysis/
DExecutor.java35 private final Type STRING_TYPE;
36 private final Type CLASS_TYPE;
37 private final Type THROWABLE_TYPE;
76 frame.push(Type.UNINIT); in execute()
85 frame.push(Type.INTEGER); in execute()
89 frame.push(Type.LONG); in execute()
90 frame.push(Type.TOP); in execute()
95 frame.push(Type.FLOAT); in execute()
99 frame.push(Type.DOUBLE); in execute()
100 frame.push(Type.TOP); in execute()
[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/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/harfbuzz_ng/src/
Dhb-open-type-private.hh46 template<typename Type, typename TObject>
47 static inline const Type& CastR(const TObject &X) in CastR()
48 { return reinterpret_cast<const Type&> (X); } in CastR()
49 template<typename Type, typename TObject>
50 static inline Type& CastR(TObject &X) in CastR()
51 { return reinterpret_cast<Type&> (X); } in CastR()
54 template<typename Type, typename TObject>
55 static inline const Type* CastP(const TObject *X) in CastP()
56 { return reinterpret_cast<const Type*> (X); } in CastP()
57 template<typename Type, typename TObject>
[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/v8/src/base/
Dflags.h79 #define DEFINE_OPERATORS_FOR_FLAGS(Type) \ argument
80 inline Type operator&( \
81 Type::flag_type lhs, \
82 Type::flag_type rhs)ALLOW_UNUSED_TYPE WARN_UNUSED_RESULT; \
83 inline Type operator&(Type::flag_type lhs, Type::flag_type rhs) { \
84 return Type(lhs) & rhs; \
86 inline Type operator&(Type::flag_type lhs, \
87 const Type& rhs)ALLOW_UNUSED_TYPE WARN_UNUSED_RESULT; \
88 inline Type operator&(Type::flag_type lhs, const Type& rhs) { \
91 inline void operator&(Type::flag_type lhs, \
[all …]
/external/tensorflow/tensorflow/java/src/gen/cc/
Djava_defs.h44 class Type {
49 static const Type Byte() { in Byte()
50 return Type(Type::PRIMITIVE, "byte"); in Byte()
52 static const Type Char() { in Char()
53 return Type(Type::PRIMITIVE, "char"); in Char()
55 static const Type Short() { in Short()
56 return Type(Type::PRIMITIVE, "short"); in Short()
58 static const Type Int() { in Int()
59 return Type(Type::PRIMITIVE, "int"); in Int()
61 static const Type Long() { in Long()
[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/LLVM/lib/VMCore/
DType.cpp25 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType()
43 Type *Type::getScalarType() { in getScalarType()
50 bool Type::isIntegerTy(unsigned Bitwidth) const { in isIntegerTy()
57 bool Type::isIntOrIntVectorTy() const { in isIntOrIntVectorTy()
60 if (ID != Type::VectorTyID) return false; in isIntOrIntVectorTy()
67 bool Type::isFPOrFPVectorTy() const { in isFPOrFPVectorTy()
68 if (ID == Type::FloatTyID || ID == Type::DoubleTyID || in isFPOrFPVectorTy()
69 ID == Type::FP128TyID || ID == Type::X86_FP80TyID || in isFPOrFPVectorTy()
70 ID == Type::PPC_FP128TyID) in isFPOrFPVectorTy()
72 if (ID != Type::VectorTyID) return false; in isFPOrFPVectorTy()
[all …]
/external/llvm/include/llvm/IR/
DDerivedTypes.h37 class IntegerType : public Type {
41 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){ in IntegerType()
88 static inline bool classof(const Type *T) { in classof()
93 unsigned Type::getIntegerBitWidth() const { in getIntegerBitWidth()
99 class FunctionType : public Type {
102 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
106 static FunctionType *get(Type *Result,
107 ArrayRef<Type*> Params, bool isVarArg);
110 static FunctionType *get(Type *Result, bool isVarArg);
113 static bool isValidReturnType(Type *RetTy);
[all …]
/external/libcxx/test/std/utilities/any/any.nonmembers/
Dmake_any.pass.cpp36 template <class Type>
39 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); in test_make_any_type()
40 assert(Type::count == 0); in test_make_any_type()
41 Type::reset(); in test_make_any_type()
43 any a = std::make_any<Type>(); in test_make_any_type()
45 assert(Type::count == 1); in test_make_any_type()
46 assert(Type::copied == 0); in test_make_any_type()
47 assert(Type::moved == 0); in test_make_any_type()
48 assertContains<Type>(a, 0); in test_make_any_type()
50 assert(Type::count == 0); in test_make_any_type()
[all …]
/external/annotation-tools/asmx/src/org/objectweb/asm/commons/
DGeneratorAdapter.java40 import org.objectweb.asm.Type;
84 private final static Type BYTE_TYPE = Type.getType("Ljava/lang/Byte;");
86 private final static Type BOOLEAN_TYPE = Type.getType("Ljava/lang/Boolean;");
88 private final static Type SHORT_TYPE = Type.getType("Ljava/lang/Short;");
90 private final static Type CHARACTER_TYPE = Type.getType("Ljava/lang/Character;");
92 private final static Type INTEGER_TYPE = Type.getType("Ljava/lang/Integer;");
94 private final static Type FLOAT_TYPE = Type.getType("Ljava/lang/Float;");
96 private final static Type LONG_TYPE = Type.getType("Ljava/lang/Long;");
98 private final static Type DOUBLE_TYPE = Type.getType("Ljava/lang/Double;");
100 private final static Type NUMBER_TYPE = Type.getType("Ljava/lang/Number;");
[all …]
/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h39 class Type; variable
137 int getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy = nullptr) const;
144 int getGEPCost(Type *PointeeType, const Value *Ptr,
180 int getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
181 ArrayRef<Type *> ParamTys) const;
186 int getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
329 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
335 bool isLegalMaskedStore(Type *DataType) const;
336 bool isLegalMaskedLoad(Type *DataType) const;
341 bool isLegalMaskedScatter(Type *DataType) const;
[all …]
/external/llvm/lib/IR/
DType.cpp26 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType()
44 Type *Type::getScalarType() const { in getScalarType()
47 return const_cast<Type*>(this); in getScalarType()
50 bool Type::isIntegerTy(unsigned Bitwidth) const { in isIntegerTy()
54 bool Type::canLosslesslyBitCastTo(Type *Ty) const { in canLosslesslyBitCastTo()
69 if (Ty->getTypeID() == Type::X86_MMXTyID && in canLosslesslyBitCastTo()
74 if (this->getTypeID() == Type::X86_MMXTyID) in canLosslesslyBitCastTo()
91 bool Type::isEmptyTy() const { in isEmptyTy()
108 unsigned Type::getPrimitiveSizeInBits() const { in getPrimitiveSizeInBits()
110 case Type::HalfTyID: return 16; in getPrimitiveSizeInBits()
[all …]

12345678910>>...205