Home
last modified time | relevance | path

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

12345678910>>...174

/netbsd/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCELFObjectWriter.cpp82 unsigned Type; in getRelocType() local
93 Type = ELF::R_PPC_REL24; in getRelocType()
108 Type = ELF::R_PPC_REL14; in getRelocType()
114 Type = ELF::R_PPC_REL16; in getRelocType()
154 Type = ELF::R_PPC_REL32; in getRelocType()
158 Type = ELF::R_PPC64_REL64; in getRelocType()
165 Type = ELF::R_PPC_ADDR24; in getRelocType()
204 Type = ELF::R_PPC_GOT16; in getRelocType()
457 Type = ELF::R_PPC_ADDR32; in getRelocType()
464 return Type; in getRelocType()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DValueTypes.cpp501 MVT MVT::getVT(Type *Ty, bool HandleUnknown){ in getVT()
506 case Type::VoidTyID: in getVT()
508 case Type::IntegerTyID: in getVT()
510 case Type::HalfTyID: return MVT(MVT::f16); in getVT()
512 case Type::FloatTyID: return MVT(MVT::f32); in getVT()
520 case Type::FixedVectorTyID: in getVT()
521 case Type::ScalableVectorTyID: { in getVT()
533 EVT EVT::getEVT(Type *Ty, bool HandleUnknown){ in getEVT()
537 case Type::IntegerTyID: in getEVT()
539 case Type::FixedVectorTyID: in getEVT()
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/
H A Dhash-traits.h41 typed_free_remove <Type>::remove (Type *p) in remove()
66 typed_delete_remove <Type>::remove (Type *p) in remove()
84 typed_noop_remove <Type>::remove (Type &) in remove() argument
94 template <typename Type, Type Empty, Type Deleted = Empty>
109 template <typename Type, Type Empty, Type Deleted>
116 template <typename Type, Type Empty, Type Deleted>
123 template <typename Type, Type Empty, Type Deleted>
131 template <typename Type, Type Empty, Type Deleted>
138 template <typename Type, Type Empty, Type Deleted>
145 template <typename Type, Type Empty, Type Deleted>
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dmtype.h228 Type(TY ty);
230 Type *copy();
246 Type *merge();
247 Type *merge2();
367 Type *next;
510 TypeAArray(Type *t, Type *index);
511 static TypeAArray *create(Type *t, Type *index);
885 TypeTuple(Type *t1, Type *t2);
933 Type *type;
953 bool arrayTypeCompatible(Loc loc, Type *t1, Type *t2);
[all …]
H A Dargtypes.c40 TypeTuple *toArgTypes(Type *t) in toArgTypes()
52 void visit(Type *) in toArgTypes()
64 Type *t1 = NULL; in toArgTypes()
65 Type *t2 = NULL; in toArgTypes()
185 static Type *mergeFloatToInt(Type *t) in toArgTypes()
214 static Type *argtypemerge(Type *t1, Type *t2, unsigned offset2) in toArgTypes()
245 Type *t; in toArgTypes()
283 Type *t = argtypemerge(Type::tsize_t, Type::tvoidptr, offset); in toArgTypes()
290 result = new TypeTuple(Type::tsize_t, Type::tvoidptr); in toArgTypes()
302 Type *t = argtypemerge(Type::tsize_t, Type::tvoidptr, offset); in toArgTypes()
[all …]
H A Dmtype.c72 Type *Type::tvoid;
73 Type *Type::tint8;
74 Type *Type::tuns8;
75 Type *Type::tint16;
76 Type *Type::tuns16;
77 Type *Type::tint32;
78 Type *Type::tuns32;
95 Type *Type::tbool;
96 Type *Type::tchar;
102 Type *Type::tnull;
[all …]
/netbsd/external/lgpl3/gmp/dist/tests/cxx/
H A Dt-ops2.h29 #define CHECK1(Type,a,fun) \ argument
34 CHECK(Type,Type,a,b,op)
40 CHECK(long,Type,a,b,op)
43 CHECK(double,Type,a,b,op)
51 CHECK_G(Type,a,b,op); \
52 CHECK_SI(Type,a,b,op); \
53 CHECK_D(Type,a,b,op)
61 CHECK_UI(Type,a,b,op)
77 CHECK_ALL(Type,a,b,<); \
78 CHECK_ALL(Type,a,b,>); \
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/
H A Dhash-traits.h36 typed_free_remove <Type>::remove (Type *p) in remove()
54 typed_delete_remove <Type>::remove (Type *p) in remove()
72 typed_noop_remove <Type>::remove (Type &) in remove() argument
82 template <typename Type, Type Empty, Type Deleted = Empty>
97 template <typename Type, Type Empty, Type Deleted>
104 template <typename Type, Type Empty, Type Deleted>
111 template <typename Type, Type Empty, Type Deleted>
119 template <typename Type, Type Empty, Type Deleted>
126 template <typename Type, Type Empty, Type Deleted>
133 template <typename Type, Type Empty, Type Deleted>
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dmtype.h44 Type *typeSemantic(Type *t, const Loc &loc, Scope *sc);
45 Type *merge(Type *type);
238 Type *merge2();
270 Type *wildOf();
369 Type *next;
373 Type *nextOf();
417 Type *basetype;
492 static TypeAArray *create(Type *t, Type *index);
563 Type *type;
875 static TypeTuple *create(Type *t1, Type *t2);
[all …]
H A Dmtype.c72 Type *Type::tvoid;
73 Type *Type::tint8;
74 Type *Type::tuns8;
75 Type *Type::tint16;
76 Type *Type::tuns16;
77 Type *Type::tint32;
78 Type *Type::tuns32;
95 Type *Type::tbool;
96 Type *Type::tchar;
102 Type *Type::tnull;
[all …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDerivedTypes.h103 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
152 Type *Type::getFunctionParamType(unsigned i) const { in getFunctionParamType()
354 Type *Type::getStructElementType(unsigned N) const { in getStructElementType()
361 Type *ContainedType;
406 Type *ContainedType;
418 VectorType(Type *ElType, unsigned EQ, Type::TypeID TID);
461 Type *EltTy; in getTruncatedElementVectorType()
638 Type *PointeeTy;
693 Type *Type::getExtendedType() const { in getExtendedType()
703 Type *Type::getWithNewType(Type *EltTy) const { in getWithNewType()
[all …]
H A DType.h46 class Type {
95 ~Type() = default;
386 inline Type *getWithNewType(Type *EltTy) const;
433 return (Type*) Type::getIntNTy(C, noOfBits); in getScalarTy()
445 Type *Ty; in getFloatingPointTy()
447 Ty = Type::getHalfTy(C); in getFloatingPointTy()
449 Ty = Type::getBFloatTy(C); in getFloatingPointTy()
451 Ty = Type::getFloatTy(C); in getFloatingPointTy()
453 Ty = Type::getDoubleTy(C); in getFloatingPointTy()
455 Ty = Type::getX86_FP80Ty(C); in getFloatingPointTy()
[all …]
H A DDataLayout.h554 Type *getIntPtrType(Type *) const;
573 Type *getIndexType(Type *PtrTy) const;
658 case Type::LabelTyID: in getTypeSizeInBits()
660 case Type::PointerTyID: in getTypeSizeInBits()
662 case Type::ArrayTyID: { in getTypeSizeInBits()
667 case Type::StructTyID: in getTypeSizeInBits()
673 case Type::HalfTyID: in getTypeSizeInBits()
674 case Type::BFloatTyID: in getTypeSizeInBits()
676 case Type::FloatTyID: in getTypeSizeInBits()
678 case Type::DoubleTyID: in getTypeSizeInBits()
[all …]
H A DConstants.h92 static Constant *getTrue(Type *Ty);
93 static Constant *getFalse(Type *Ty);
94 static Constant *getBool(Type *Ty, bool V);
260 ConstantFP(Type *Ty, const APFloat &V);
276 static Constant *get(Type *Ty, double V);
337 explicit ConstantAggregateZero(Type *Ty) in ConstantAggregateZero()
625 Type *getElementType() const;
955 static Constant *getAlignOf(Type *Ty);
961 static Constant *getSizeOf(Type *Ty);
1361 static UndefValue *get(Type *T);
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Object/
H A DRelocationResolver.cpp27 switch (Type) { in supportsX86_64()
44 switch (Type) { in resolveX86_64()
63 switch (Type) { in supportsAArch64()
76 switch (Type) { in resolveAArch64()
91 switch (Type) { in supportsBPF()
102 switch (Type) { in resolveBPF()
113 switch (Type) { in supportsMips64()
126 switch (Type) { in resolveMips64()
141 switch (Type) { in supportsMSP430()
152 switch (Type) { in resolveMSP430()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DType.cpp39 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType()
63 bool Type::canLosslesslyBitCastTo(Type *Ty) const { in canLosslesslyBitCastTo()
166 bool Type::isSizedDerivedType(SmallPtrSetImpl<Type*> *Visited) const { in isSizedDerivedType()
180 Type *Type::getVoidTy(LLVMContext &C) { return &C.pImpl->VoidTy; } in getVoidTy()
181 Type *Type::getLabelTy(LLVMContext &C) { return &C.pImpl->LabelTy; } in getLabelTy()
182 Type *Type::getHalfTy(LLVMContext &C) { return &C.pImpl->HalfTy; } in getHalfTy()
184 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy()
187 Type *Type::getTokenTy(LLVMContext &C) { return &C.pImpl->TokenTy; } in getTokenTy()
189 Type *Type::getFP128Ty(LLVMContext &C) { return &C.pImpl->FP128Ty; } in getFP128Ty()
301 FunctionType::FunctionType(Type *Result, ArrayRef<Type*> Params, in FunctionType()
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/d/
H A Druntime.cc73 static Type *libcall_types[LCT_END];
84 static Type *
93 libcall_types[type] = Type::tvoid; in get_libcall_type()
97 libcall_types[type] = Type::tint8; in get_libcall_type()
101 libcall_types[type] = Type::tint32; in get_libcall_type()
105 libcall_types[type] = Type::tuns32; in get_libcall_type()
109 libcall_types[type] = Type::tbool; in get_libcall_type()
113 libcall_types[type] = Type::tdchar; in get_libcall_type()
121 libcall_types[type] = Type::tstring; in get_libcall_type()
137 libcall_types[type] = TypeAArray::create (Type::tvoid, Type::tvoid); in get_libcall_type()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Utils/
H A DWebAssemblyTypeUtilities.cpp22 if (Type == "i32") in parseType()
24 if (Type == "i64") in parseType()
26 if (Type == "f32") in parseType()
28 if (Type == "f64") in parseType()
30 if (Type == "v128" || Type == "i8x16" || Type == "i16x8" || Type == "i32x4" || in parseType()
31 Type == "i64x2" || Type == "f32x4" || Type == "f64x2") in parseType()
33 if (Type == "funcref") in parseType()
35 if (Type == "externref") in parseType()
80 switch (Type) { in anyTypeToString()
111 if (&Type != &List[0]) in typeListToString()
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/d/
H A Druntime.cc72 static Type *libcall_types[LCT_END];
83 static Type *
92 libcall_types[type] = Type::tvoid; in get_libcall_type()
96 libcall_types[type] = Type::tint8; in get_libcall_type()
100 libcall_types[type] = Type::tint32; in get_libcall_type()
104 libcall_types[type] = Type::tuns32; in get_libcall_type()
108 libcall_types[type] = Type::tbool; in get_libcall_type()
112 libcall_types[type] = Type::tdchar; in get_libcall_type()
120 libcall_types[type] = Type::tstring; in get_libcall_type()
136 libcall_types[type] = TypeAArray::create (Type::tvoid, Type::tvoid); in get_libcall_type()
[all …]
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTypeNodes.td53 def Type : TypeNode<?, 1>;
55 def ComplexType : TypeNode<Type>;
56 def PointerType : TypeNode<Type>;
62 def ArrayType : TypeNode<Type, 1>;
69 def VectorType : TypeNode<Type>;
72 def MatrixType : TypeNode<Type, 1>;
88 def TagType : TypeNode<Type, 1>;
97 def DeducedType : TypeNode<Type, 1>;
108 def PipeType : TypeNode<Type>;
109 def AtomicType : TypeNode<Type>;
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DType.cpp126 : Type(tc, can, in ArrayType()
369 const Type *Type::getArrayElementTypeNoTypeQual() const { in getArrayElementTypeNoTypeQual()
539 const Type *Type::getUnqualifiedDesugaredType() const { in getUnqualifiedDesugaredType()
868 QualType Visit##Class##Type(const Class##Type *T) { \
2141 Type::ScalarTypeKind Type::getScalarTypeKind() const { in getScalarTypeKind()
2377 case Type::Enum: in isCXX98PODType()
3833 case Type::Auto: in computeCachedProperties()
3906 case Type::Pipe: in computeCachedProperties()
3943 case Type::Auto: in computeTypeLinkageInfo()
3948 case Type::Enum: in computeTypeLinkageInfo()
[all …]
/netbsd/external/bsd/tcpdump/dist/tests/
H A Dlmp-v.out6 Message ID Object (5), Class-Type: 1 (1) Flags: [non-negotiable], length: 8
10 Verify Begin Object (8), Class-Type: 1 (1) Flags: [negotiable], length: 24
23 Hello Object (7), Class-Type: 1 (1) Flags: [non-negotiable], length: 12
82 Subobject, Type: Interface Switching Type (1), Length: 12
83 Switching Type: Lambda-Switch Capable (150)
84 Encoding Type: Lambda (photonic) (8)
87 Subobject, Type: Wavelength (2), Length: 8
93 Subobject, Type: Interface Switching Type (1), Length: 12
94 Switching Type: Lambda-Switch Capable (150)
95 Encoding Type: ANSI/ETSI PDH (3)
[all …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h33 Type Kind;
83 assert(getKind() == Type::Int); in getInt()
103 assert(getKind() == Type::Int); in getInt()
141 if (getKind() != Type::Map) {
161 case Type::Int:
163 case Type::UInt:
165 case Type::Nil:
167 case Type::Boolean:
169 case Type::Float:
171 case Type::String:
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DMsgPackReader.cpp36 Obj.Kind = Type::Nil; in read()
47 Obj.Kind = Type::Int; in read()
50 Obj.Kind = Type::Int; in read()
53 Obj.Kind = Type::Int; in read()
56 Obj.Kind = Type::Int; in read()
59 Obj.Kind = Type::UInt; in read()
62 Obj.Kind = Type::UInt; in read()
65 Obj.Kind = Type::UInt; in read()
68 Obj.Kind = Type::UInt; in read()
113 Obj.Kind = Type::Map; in read()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h61 class Type; variable
119 Type *RetTy = nullptr;
134 Intrinsic::ID Id, Type *RTy, ArrayRef<Type *> Tys,
700 bool isTruncateFree(Type *Ty1, Type *Ty2) const;
1104 getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
1128 getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy = nullptr,
1219 Function *F, Type *RetTy, ArrayRef<Type *> Tys,
1527 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) = 0;
1917 bool isTruncateFree(Type *Ty1, Type *Ty2) override { in isTruncateFree()
2104 InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, in getCastInstrCost()
[all …]

12345678910>>...174