Home
last modified time | relevance | path

Searched defs:Type (Results 1 – 25 of 876) sorted by relevance

12345678910>>...36

/netbsd/external/apache2/llvm/dist/llvm/lib/Object/
H A DRelocationResolver.cpp26 static bool supportsX86_64(uint64_t Type) { in supportsX86_64()
62 static bool supportsAArch64(uint64_t Type) { in supportsAArch64()
90 static bool supportsBPF(uint64_t Type) { in supportsBPF()
112 static bool supportsMips64(uint64_t Type) { in supportsMips64()
140 static bool supportsMSP430(uint64_t Type) { in supportsMSP430()
162 static bool supportsPPC64(uint64_t Type) { in supportsPPC64()
258 static bool supportsX86(uint64_t Type) { in supportsX86()
283 static bool supportsPPC32(uint64_t Type) { in supportsPPC32()
304 static bool supportsARM(uint64_t Type) { in supportsARM()
325 static bool supportsAVR(uint64_t Type) { in supportsAVR()
[all …]
H A DSymbolicFile.cpp32 SymbolicFile::SymbolicFile(unsigned int Type, MemoryBufferRef Source) in SymbolicFile()
38 SymbolicFile::createSymbolicFile(MemoryBufferRef Object, file_magic Type, in createSymbolicFile()
97 bool SymbolicFile::isSymbolicFile(file_magic Type, const LLVMContext *Context) { in isSymbolicFile()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Utils/
H A DWebAssemblyTypeUtilities.cpp19 Optional<wasm::ValType> WebAssembly::parseType(StringRef Type) { in parseType()
40 WebAssembly::HeapType WebAssembly::parseHeapType(StringRef Type) { in parseHeapType()
47 WebAssembly::BlockType WebAssembly::parseBlockType(StringRef Type) { in parseBlockType()
61 MVT WebAssembly::parseMVT(StringRef Type) { in parseMVT()
79 const char *WebAssembly::anyTypeToString(unsigned Type) { in anyTypeToString()
104 const char *WebAssembly::typeToString(wasm::ValType Type) { in typeToString()
110 for (const auto &Type : List) { in typeListToString() local
127 wasm::ValType WebAssembly::toValType(MVT Type) { in toValType()
/netbsd/external/lgpl3/gmp/dist/tests/cxx/
H A Dt-ops2.h29 #define CHECK1(Type,a,fun) \ argument
33 #define CHECK_G(Type,a,b,op) \ argument
35 #define CHECK_UI(Type,a,b,op) \ argument
38 #define CHECK_SI(Type,a,b,op) \ argument
41 #define CHECK_D(Type,a,b,op) \ argument
44 #define CHECK_MPZ(Type,a,b,op) \ argument
47 #define CHECK_MPQ(Type,a,b,op) \ argument
50 #define CHECK_ALL_SIGNED(Type,a,b,op) \ argument
54 #define CHECK_ALL_SIGNS(Type,a,b,op) \ argument
59 #define CHECK_ALL(Type,a,b,op) \ argument
[all …]
/netbsd/external/gpl3/gdb/dist/gdb/testsuite/gdb.rust/
H A Dmodules.rs30 pub struct Type; struct
33 pub struct Type(usize, isize); struct
36 pub struct Type(f64); struct
39 pub struct Type {pub x : u32} argument
46 struct Type(i8); in f1() struct
/netbsd/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.rust/
H A Dmodules.rs30 pub struct Type; struct
33 pub struct Type(usize, isize); struct
36 pub struct Type(f64); struct
39 pub struct Type {pub x : u32} argument
46 struct Type(i8); in f1() struct
/netbsd/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_atomic.h29 typedef u8 Type; typedef
34 typedef u16 Type; typedef
39 typedef s32 Type; typedef
44 typedef u32 Type; typedef
49 typedef u64 Type; typedef
55 typedef uptr Type; typedef
/netbsd/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_atomic.h31 typedef u8 Type; typedef
36 typedef u16 Type; typedef
41 typedef s32 Type; typedef
46 typedef u32 Type; typedef
51 typedef u64 Type; typedef
57 typedef uptr Type; typedef
/netbsd/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_atomic.h29 typedef u8 Type; typedef
34 typedef u16 Type; typedef
39 typedef s32 Type; typedef
44 typedef u32 Type; typedef
49 typedef u64 Type; typedef
55 typedef uptr Type; typedef
/netbsd/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DWasm.cpp11 std::string llvm::wasm::toString(wasm::WasmSymbolType Type) { in toString()
29 std::string llvm::wasm::relocTypetoString(uint32_t Type) { in relocTypetoString()
41 bool llvm::wasm::relocTypeHasAddend(uint32_t Type) { in relocTypeHasAddend()
/netbsd/external/apache2/llvm/dist/llvm/lib/TextAPI/
H A DArchitecture.cpp24 #define ARCHINFO(Arch, Type, Subtype, NumBits) \ in getArchitectureFromCpuType() argument
36 #define ARCHINFO(Arch, Type, Subtype, NumBits) .Case(#Arch, AK_##Arch) in getArchitectureFromName() argument
44 #define ARCHINFO(Arch, Type, Subtype, NumBits) \ in getArchitectureName() argument
60 #define ARCHINFO(Arch, Type, Subtype, NumBits) \ in getCPUTypeFromArchitecture() argument
80 #define ARCHINFO(Arch, Type, Subtype, NumBits) \ in is64Bit() argument
/netbsd/external/gpl2/grep/dist/lib/
H A Dxalloc.h66 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items))) argument
67 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items))) argument
68 # define XREALLOC(Ptr, Type, N_items) \ argument
72 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1) argument
/netbsd/external/gpl2/diffutils/dist/lib/
H A Dxalloc.h61 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items))) argument
62 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items))) argument
63 # define XREALLOC(Ptr, Type, N_items) \ argument
67 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1) argument
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCELFObjectWriter.h33 unsigned Type; // The type of the relocation. member
118 uint8_t getRType(uint32_t Type) const { in getRType()
121 uint8_t getRType2(uint32_t Type) const { in getRType2()
124 uint8_t getRType3(uint32_t Type) const { in getRType3()
127 uint8_t getRSsym(uint32_t Type) const { in getRSsym()
137 unsigned setRSsym(unsigned Value, unsigned Type) const { in setRSsym()
/netbsd/sys/external/bsd/acpica/dist/common/
H A Ddmextern.c164 ACPI_OBJECT_TYPE Type) in AcpiDmGetObjectTypeName()
540 UINT8 Type, in AcpiDmAddOpToExternalList()
724 UINT8 Type, in AcpiDmAddNodeToExternalList()
790 UINT8 Type, in AcpiDmAddPathToExternalList()
883 UINT8 Type, in AcpiDmCreateNewExternal()
1014 UINT8 Type, in AcpiDmResolveExternal()
1065 UINT8 Type, in AcpiDmCreateSubobjectForExternal()
1119 UINT8 Type, in AcpiDmAddOneExternalToNamespace()
1650 UINT8 Type) in AcpiDmUnresolvedWarning()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ELFObjectWriter.cpp91 static void checkIs32(MCContext &Ctx, SMLoc Loc, X86_64RelType Type) { in checkIs32()
97 static void checkIs64(MCContext &Ctx, SMLoc Loc, X86_64RelType Type) { in checkIs64()
105 X86_64RelType Type, bool IsPCRel, in getRelocType64()
248 X86_32RelType Type, bool IsPCRel, in getRelocType32()
333 X86_64RelType Type = getType64(Kind, Modifier, IsPCRel); in getRelocType() local
/netbsd/sys/external/bsd/acpica/dist/dispatcher/
H A Ddsmthdat.c276 UINT8 Type, in AcpiDsMethodDataGetNode()
348 UINT8 Type, in AcpiDsMethodDataSetValue()
407 UINT8 Type, in AcpiDsMethodDataGetValue()
520 UINT8 Type, in AcpiDsMethodDataDeleteValue()
586 UINT8 Type, in AcpiDsStoreObjectToLocal()
/netbsd/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
H A Dasan_asm_test.cc39 #define DECLARE_ASM_WRITE(Type, Size, Mov, Reg) \ argument
49 #define DECLARE_ASM_READ(Type, Size, Mov, Reg) \ argument
61 #define DECLARE_ASM_REP_MOVS(Type, Movs) \ argument
82 #define DECLARE_ASM_WRITE(Type, Size, Mov, Reg) \ argument
92 #define DECLARE_ASM_READ(Type, Size, Mov, Reg) \ argument
104 #define DECLARE_ASM_REP_MOVS(Type, Movs) \ argument
/netbsd/external/apache2/llvm/dist/clang/lib/Driver/
H A DAction.cpp311 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction()
314 JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type) in JobAction()
367 IfsMergeJobAction::IfsMergeJobAction(ActionList &Inputs, types::ID Type) in IfsMergeJobAction()
372 LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type) in LinkJobAction()
377 LipoJobAction::LipoJobAction(ActionList &Inputs, types::ID Type) in LipoJobAction()
382 DsymutilJobAction::DsymutilJobAction(ActionList &Inputs, types::ID Type) in DsymutilJobAction()
388 types::ID Type) in VerifyJobAction()
397 types::ID Type) in VerifyDebugInfoJobAction()
402 VerifyPCHJobAction::VerifyPCHJobAction(Action *Input, types::ID Type) in VerifyPCHJobAction()
418 types::ID Type) in OffloadWrapperJobAction()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.cpp55 uint32_t Type) { in evaluateMIPS32Relocation()
109 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in evaluateMIPS64Relocation()
214 uint32_t Type) { in applyMIPSRelocation()
266 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in resolveMIPSN32Relocation()
275 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in resolveMIPSN64Relocation()
305 uint32_t Value, uint32_t Type, in resolveMIPSO32Relocation()
/netbsd/sys/external/bsd/acpica/dist/namespace/
H A Dnssearch.c101 ACPI_OBJECT_TYPE Type, in AcpiNsSearchOneScope()
204 ACPI_OBJECT_TYPE Type, in AcpiNsSearchParentTree()
299 ACPI_OBJECT_TYPE Type, in AcpiNsSearchAndEnter()
/netbsd/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go34 Type struct { struct
35 C C.LLVMTypeRef
83 func (c Type) IsNil() bool { return c.C == nil }
539 func (t Type) Context() (c Context) {
566 func (t Type) IntTypeWidth() int {
584 func FunctionType(returnType Type, paramTypes []Type, isVarArg bool) (t Type) {
601 func (t Type) ParamTypes() []Type {
644 func (t Type) StructName() string {
660 func (t Type) StructElementTypes() []Type {
669 func (t Type) Subtypes() (ret []Type) {
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp30 void WebAssemblyTargetStreamer::emitValueType(wasm::ValType Type) { in emitValueType()
44 for (auto Type : Types) { in printTypes() local
82 const wasm::WasmTableType &Type = Sym->getTableType(); in emitTableType() local
125 for (auto Type : Types) { in emitLocal() local
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp23 Error llvm::pdb::loadDataForPDB(PDB_ReaderType Type, StringRef Path, in loadDataForPDB()
36 Error llvm::pdb::loadDataForEXE(PDB_ReaderType Type, StringRef Path, in loadDataForEXE()
/netbsd/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_handlers.h20 const TypeDescriptor &Type; member
42 const TypeDescriptor &Type; member
92 const TypeDescriptor &Type; member
117 const TypeDescriptor &Type; member
159 const TypeDescriptor &Type; member
207 const TypeDescriptor &Type; member
213 const TypeDescriptor &Type; member

12345678910>>...36