Searched refs:Type (Results 226 - 250 of 1170) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp36 Type *IntPtrTy = DAG.getDataLayout().getIntPtrType(*DAG.getContext());
46 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DR600TextureIntrinsicsReplacer.cpp31 Type *FloatType;
32 Type *Int32Type;
33 Type *V4f32Type;
34 Type *V4i32Type;
87 llvm_unreachable("Unknow Texture Type");
215 FloatType = Type::getFloatTy(Ctx);
216 Int32Type = Type::getInt32Ty(Ctx);
219 Type *ArgsType[] = {
232 Type *ArgsQType[] = {
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DTypeOrdering.h23 #include "clang/AST/Type.h"
45 return QualType::getFromOpaquePtr(reinterpret_cast<clang::Type *>(-1));
65 return CanQualType::getFromOpaquePtr(reinterpret_cast<clang::Type *>(-1));
/freebsd-11.0-release/contrib/compiler-rt/lib/ubsan/
H A Dubsan_flags.cc30 #define UBSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
36 #define UBSAN_FLAG(Type, Name, DefaultValue, Description) \
/freebsd-11.0-release/lib/libdevdctl/
H A Dexception.cc88 ParseException::ParseException(Type type, const std::string &parsedBuffer,
99 switch (Type()) {
/freebsd-11.0-release/sys/contrib/dev/acpica/components/debugger/
H A Ddbstats.c210 if (ObjDesc->Common.Type > ACPI_TYPE_NS_NODE_MAX)
216 AcpiGbl_ObjTypeCount [ObjDesc->Common.Type]++;
221 switch (ObjDesc->Common.Type)
301 UINT32 Type; local
311 Type = Node->Type;
312 if (Type > ACPI_TYPE_NS_NODE_MAX)
318 AcpiGbl_NodeTypeCount [Type]++;
/freebsd-11.0-release/sys/contrib/dev/acpica/components/executer/
H A Dexconvrt.c95 switch (ObjDesc->Common.Type)
131 switch (ObjDesc->Common.Type)
231 switch (ObjDesc->Common.Type)
426 * Type - String flags (base and conversion type)
438 UINT32 Type)
451 switch (ObjDesc->Common.Type)
462 switch (Type)
507 switch (Type)
663 if (DestinationType != SourceDesc->Common.Type)
435 AcpiExConvertToString( ACPI_OPERAND_OBJECT *ObjDesc, ACPI_OPERAND_OBJECT **ResultDesc, UINT32 Type) argument
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DModule.cpp153 Type *RetTy, ...) {
158 std::vector<Type*> ArgTys;
159 while (Type *ArgTy = va_arg(Args, Type*))
171 Type *RetTy, ...) {
176 std::vector<Type*> ArgTys;
177 while (Type *ArgTy = va_arg(Args, Type*))
220 Constant *Module::getOrInsertGlobal(StringRef Name, Type *Ty) {
233 Type *GVT
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h21 #include "clang/AST/Type.h"
26 class Type;
77 llvm::Type *TypeData; // isDirect() || isExtend()
78 llvm::Type *PaddingType;
101 static ABIArgInfo getDirect(llvm::Type *T = nullptr, unsigned Offset = 0,
102 llvm::Type *Padding = nullptr,
111 static ABIArgInfo getDirectInReg(llvm::Type *T = nullptr) {
116 static ABIArgInfo getExtend(llvm::Type *T = nullptr) {
122 static ABIArgInfo getExtendInReg(llvm::Type *T = nullptr) {
132 llvm::Type *Paddin
[all...]
/freebsd-11.0-release/contrib/llvm/lib/MC/
H A DELFObjectWriter.cpp180 unsigned Type) const;
215 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
415 uint8_t Type = newType;
426 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
427 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
428 Type = ELF::STT_GNU_IFUNC;
431 if (Type == ELF::STT_OBJECT || Type
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeValidator.h219 enum class Type class in class:lldb_private::TypeValidatorImpl
230 virtual Type
233 return Type::eTypeUnknown;
282 TypeValidatorImpl::Type
285 return TypeValidatorImpl::Type::eTypeCXX;
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DFunction.h324 /// The abstract information is found in the function type (Type) that
350 /// The type UID for the function Type to allow for lazy type
371 Type * func_type,
389 /// The type UID for the function Type to allow for lazy type
410 Type * func_type,
561 Type*
571 const Type*
675 lldb::user_id_t m_type_uid; ///< The user ID of for the prototype Type for this function.
676 Type * m_type; ///< The function prototype type for this function that include the function info (FunctionInfo), return type and parameters.
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTTypeTraits.cpp37 { NKI_None, "Type" },
38 #define TYPE(DERIVED, BASE) { NKI_##BASE, #DERIVED "Type" },
102 ASTNodeKind ASTNodeKind::getFromNode(const Type &T) {
105 case Type::Class: return ASTNodeKind(NKI_##Class##Type);
128 else if (const Type *T = get<Type>())
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h129 Type *getCurrentFunctionReturnType() const;
293 // Type creation methods
298 return Type::getInt1Ty(Context);
303 return Type::getInt8Ty(Context);
308 return Type::getInt16Ty(Context);
313 return Type::getInt32Ty(Context);
318 return Type::getInt64Ty(Context);
322 IntegerType *getInt128Ty() { return Type::getInt128Ty(Context); }
326 return Type::getIntNTy(Context, N);
330 Type *getHalfT
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h26 class Type;
44 typedef std::vector<Type*> TypeList;
52 typedef DenseMap<Type*, unsigned> TypeMapType;
130 unsigned getTypeID(Type *T) const {
132 assert(I != TypeMap.end() && "Type not in ValueEnumerator!");
199 void EnumerateType(Type *T);
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DStackMaps.h142 LocationType Type; member in struct:llvm::StackMaps::Location
146 Location() : Type(Unprocessed), Size(0), Reg(0), Offset(0) {}
147 Location(LocationType Type, unsigned Size, unsigned Reg, int64_t Offset) argument
148 : Type(Type), Size(Size), Reg(Reg), Offset(Offset) {}
H A DMIRYamlMapping.h193 ObjectType Type = DefaultType; member in struct:llvm::yaml::MachineStackObject
205 static void enumeration(yaml::IO &IO, MachineStackObject::ObjectType &Type) { argument
206 IO.enumCase(Type, "default", MachineStackObject::DefaultType);
207 IO.enumCase(Type, "spill-slot", MachineStackObject::SpillSlot);
208 IO.enumCase(Type, "variable-sized", MachineStackObject::VariableSized);
218 "type", Object.Type,
221 if (Object.Type != MachineStackObject::VariableSized)
243 ObjectType Type = DefaultType; member in struct:llvm::yaml::FixedMachineStackObject
255 FixedMachineStackObject::ObjectType &Type) {
256 IO.enumCase(Type, "defaul
254 enumeration(yaml::IO &IO, FixedMachineStackObject::ObjectType &Type) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Object/
H A DFunctionIndexObjectFile.cpp54 sys::fs::file_magic Type = sys::fs::identify_magic(Object.getBuffer()); local
55 switch (Type) {
62 ObjectFile::createObjectFile(Object, Type);
113 sys::fs::file_magic Type = sys::fs::identify_magic(Object.getBuffer()); local
114 switch (Type) {
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.cpp27 Type *MaskTy = C->getType();
76 Type *MaskTy = C->getType();
97 Type *VecEltTy = MaskTy->getVectorElementType();
138 Type *MaskTy = C->getType();
171 Type *MaskTy = C->getType();
/freebsd-11.0-release/sys/dev/acpica/
H A Dacpi_package.c53 if (obj == NULL || obj->Type != ACPI_TYPE_INTEGER)
84 switch (obj->Type) {
113 if (obj == NULL || obj->Type != ACPI_TYPE_BUFFER ||
130 if (obj == NULL || obj->Type != ACPI_TYPE_BUFFER ||
152 switch (obj->Type) {
/freebsd-11.0-release/sys/contrib/dev/acpica/components/events/
H A Devgpeinit.c341 UINT8 Type; local
378 Type = ACPI_GPE_LEVEL_TRIGGERED;
383 Type = ACPI_GPE_EDGE_TRIGGERED;
439 if (Type != (GpeEventInfo->Flags & ACPI_GPE_XRUPT_TYPE_MASK))
457 GpeEventInfo->Flags |= (UINT8) (Type | ACPI_GPE_DISPATCH_METHOD);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp601 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
679 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
691 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
692 Type *Params[] = {
726 Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
762 Type *Args[] = {
763 Type::getInt8PtrTy(*Ctx), // const char *orig_filename
764 Type::getInt8PtrTy(*Ctx), // const char version[4]
765 Type
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/components/utilities/
H A Dutcopy.c155 ExternalObject->Type = InternalObject->Common.Type;
159 switch (InternalObject->Common.Type)
240 AcpiUtGetTypeName (InternalObject->Common.Type)));
300 TargetObject->Type = ACPI_TYPE_PACKAGE;
377 ExternalObject->Type = InternalObject->Common.Type;
424 if (InternalObject->Common.Type == ACPI_TYPE_PACKAGE)
484 switch (ExternalObject->Type)
492 (UINT8) ExternalObject->Type);
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/MC/
H A DMCContext.h320 MCSectionELF *getELFSection(StringRef Section, unsigned Type, argument
322 return getELFSection(Section, Type, Flags, nullptr);
325 MCSectionELF *getELFSection(StringRef Section, unsigned Type, argument
327 return getELFSection(Section, Type, Flags, 0, "", BeginSymName);
330 MCSectionELF *getELFSection(StringRef Section, unsigned Type, argument
333 return getELFSection(Section, Type, Flags, EntrySize, Group, nullptr);
336 MCSectionELF *getELFSection(StringRef Section, unsigned Type, argument
339 return getELFSection(Section, Type, Flags, EntrySize, Group, ~0,
343 MCSectionELF *getELFSection(StringRef Section, unsigned Type, argument
346 return getELFSection(Section, Type, Flag
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp26 #include "llvm/IR/Type.h"
53 llvm::Type *Padding) const {
124 bool ABIInfo::isHomogeneousAggregateSmallEnough(const Type *Base,
138 OS << "Direct Type=";
139 if (llvm::Type *Ty = getCoerceToType())
198 llvm::Type *DirectTy,
265 llvm::Type *DirectTy = CGF.ConvertTypeForMem(ValueTy);
392 static const Type *isSingleElementStruct(QualType T, ASTContext &Context) {
401 const Type *Found = nullptr;
640 if (const Type *SeltT
[all...]

Completed in 244 milliseconds

1234567891011>>