Home
last modified time | relevance | path

Searched refs:Proc (Results 1 – 25 of 119) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
DSparc.td87 class Proc<string Name, list<SubtargetFeature> Features>
90 def : Proc<"generic", []>;
91 def : Proc<"v7", [FeatureSoftMulDiv, FeatureNoFSMULD]>;
92 def : Proc<"v8", []>;
93 def : Proc<"supersparc", []>;
94 def : Proc<"sparclite", []>;
95 def : Proc<"f934", []>;
96 def : Proc<"hypersparc", []>;
97 def : Proc<"sparclite86x", []>;
98 def : Proc<"sparclet", []>;
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTX.td85 class Proc<string Name, list<SubtargetFeature> Features>
88 def : Proc<"sm_20", [SM20]>;
89 def : Proc<"sm_21", [SM21]>;
90 def : Proc<"sm_30", [SM30]>;
91 def : Proc<"sm_32", [SM32, PTX40]>;
92 def : Proc<"sm_35", [SM35]>;
93 def : Proc<"sm_37", [SM37, PTX41]>;
94 def : Proc<"sm_50", [SM50, PTX40]>;
95 def : Proc<"sm_52", [SM52, PTX41]>;
96 def : Proc<"sm_53", [SM53, PTX42]>;
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBPF.td17 class Proc<string Name, list<SubtargetFeature> Features>
20 def : Proc<"generic", []>;
21 def : Proc<"v1", []>;
22 def : Proc<"v2", []>;
23 def : Proc<"v3", []>;
24 def : Proc<"probe", []>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMips.td232 class Proc<string Name, list<SubtargetFeature> Features>
235 def : Proc<"generic", [FeatureMips32]>;
236 def : Proc<"mips1", [FeatureMips1]>;
237 def : Proc<"mips2", [FeatureMips2]>;
238 def : Proc<"mips32", [FeatureMips32]>;
239 def : Proc<"mips32r2", [FeatureMips32r2]>;
240 def : Proc<"mips32r3", [FeatureMips32r3]>;
241 def : Proc<"mips32r5", [FeatureMips32r5]>;
242 def : Proc<"mips32r6", [FeatureMips32r6]>;
244 def : Proc<"mips3", [FeatureMips3]>;
[all …]
/third_party/flutter/engine/flutter/vulkan/
Dvulkan_proc_table.h24 class Proc {
28 Proc(T proc = nullptr) : proc_(proc) {} in proc_()
30 ~Proc() { proc_ = nullptr; } in ~Proc()
32 Proc operator=(T proc) {
37 Proc operator=(PFN_vkVoidFunction proc) {
64 #define DEFINE_PROC(name) Proc<PFN_vk##name> name;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeFunctionSig.cpp79 codeview::ProcedureRecord Proc) in NativeTypeFunctionSig() argument
81 Proc(std::move(Proc)), Index(Index), IsMemberFunction(false) {} in NativeTypeFunctionSig()
95 initializeArgList(Proc.ArgumentList); in initialize()
152 return IsMemberFunction ? MemberFunc.CallConv : Proc.CallConv; in getCallingConvention()
157 : Proc.getParameterCount(); in getCount()
162 IsMemberFunction ? MemberFunc.getReturnType() : Proc.getReturnType(); in getTypeId()
193 IsMemberFunction ? MemberFunc.getOptions() : Proc.getOptions(); in isCxxReturnUdt()
/third_party/flutter/skia/bench/
DRegionContainBench.cpp20 typedef bool (*Proc)(SkRegion& a, SkRegion& b); typedef in RegionContainBench
22 Proc fProc;
36 RegionContainBench(Proc proc, const char name[]) { in RegionContainBench()
56 Proc proc = fProc; in onDraw()
DRegionBench.cpp71 typedef bool (*Proc)(SkRegion& a, SkRegion& b); typedef in RegionBench
74 Proc fProc;
90 RegionBench(int count, Proc proc, const char name[]) { in RegionBench()
109 Proc proc = fProc; in onDraw()
/third_party/skia/bench/
DRegionContainBench.cpp20 typedef bool (*Proc)(SkRegion& a, SkRegion& b); typedef in RegionContainBench
22 Proc fProc;
36 RegionContainBench(Proc proc, const char name[]) { in RegionContainBench()
56 Proc proc = fProc; in onDraw()
DRegionBench.cpp71 typedef bool (*Proc)(SkRegion& a, SkRegion& b); typedef in RegionBench
74 Proc fProc;
90 RegionBench(int count, Proc proc, const char name[]) { in RegionBench()
109 Proc proc = fProc; in onDraw()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DSymbolRecordHelpers.cpp32 ProcSym Proc = createRecord<ProcSym>(Sym); in getScopeEndOffset() local
33 return Proc.End; in getScopeEndOffset()
63 ProcSym Proc = createRecord<ProcSym>(Sym); in getScopeParentOffset() local
64 return Proc.Parent; in getScopeParentOffset()
DSymbolRecordMapping.cpp409 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) { in visitKnownRecord() argument
410 error(IO.mapInteger(Proc.Parent)); in visitKnownRecord()
411 error(IO.mapInteger(Proc.End)); in visitKnownRecord()
412 error(IO.mapInteger(Proc.Next)); in visitKnownRecord()
413 error(IO.mapInteger(Proc.CodeSize)); in visitKnownRecord()
414 error(IO.mapInteger(Proc.DbgStart)); in visitKnownRecord()
415 error(IO.mapInteger(Proc.DbgEnd)); in visitKnownRecord()
416 error(IO.mapInteger(Proc.FunctionType)); in visitKnownRecord()
417 error(IO.mapInteger(Proc.CodeOffset)); in visitKnownRecord()
418 error(IO.mapInteger(Proc.Segment)); in visitKnownRecord()
[all …]
DSymbolDumper.cpp559 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) { in visitKnownRecord() argument
567 W.printHex("PtrParent", Proc.Parent); in visitKnownRecord()
568 W.printHex("PtrEnd", Proc.End); in visitKnownRecord()
569 W.printHex("PtrNext", Proc.Next); in visitKnownRecord()
570 W.printHex("CodeSize", Proc.CodeSize); in visitKnownRecord()
571 W.printHex("DbgStart", Proc.DbgStart); in visitKnownRecord()
572 W.printHex("DbgEnd", Proc.DbgEnd); in visitKnownRecord()
573 printTypeIndex("FunctionType", Proc.FunctionType); in visitKnownRecord()
575 ObjDelegate->printRelocatedField("CodeOffset", Proc.getRelocationOffset(), in visitKnownRecord()
576 Proc.CodeOffset, &LinkageName); in visitKnownRecord()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430.td39 class Proc<string Name, list<SubtargetFeature> Features>
42 def : Proc<"generic", []>;
43 def : Proc<"msp430", []>;
44 def : Proc<"msp430x", [FeatureX]>;
/third_party/boost/libs/math/test/
Dtest_long_double_support.cpp49 template <class R, class Proc, class Arg>
52 simple_binder(Proc p, Arg a) : m_proc(p), m_arg(a) {} in simple_binder()
56 Proc m_proc;
60 template <class A, class Proc>
61 … const char* function_name, const char* test_name, Proc proc, const char* inv_function_name = 0, P… in do_test_std_function()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
DXCore.td33 class Proc<string Name, list<SubtargetFeature> Features>
36 def : Proc<"generic", []>;
37 def : Proc<"xs1b-generic", []>;
/third_party/skia/tools/gpu/dawn/
DDawnTestContext.cpp42 typedef void(*Proc)(); typedef in __anon2ea21c2d0111::ProcGetter
62 Proc getProc(const char* name) { in getProc()
65 return (Proc) proc; in getProc()
68 return (Proc) proc; in getProc()
/third_party/skia/tools/gpu/gl/
DGLTestContext.h59 using Proc = Ret(GR_GL_FUNCTION_TYPE*)(Args...); in Ret() local
66 *out = reinterpret_cast<Proc>(this->onPlatformGetProcAddress(fullname.c_str())); in Ret()
68 *out = reinterpret_cast<Proc>(this->onPlatformGetProcAddress(name)); in Ret()
/third_party/flutter/skia/tools/gpu/gl/
DGLTestContext.h61 using Proc = Ret(GR_GL_FUNCTION_TYPE*)(Args...); in Ret() local
68 *out = reinterpret_cast<Proc>(this->onPlatformGetProcAddress(fullname.c_str())); in Ret()
70 *out = reinterpret_cast<Proc>(this->onPlatformGetProcAddress(name)); in Ret()
/third_party/mksh/
Djobs.c41 typedef struct proc Proc; typedef
44 Proc *next;
53 Proc *next;
93 Proc *proc_list; /* process list */
94 Proc *last_proc; /* last process in list */
160 static Proc *new_proc(void);
224 proc_errorlevel(Proc *p) in proc_errorlevel()
445 static Proc *last_proc;
451 Proc *p;
822 Proc *p;
[all …]
/third_party/skia/src/core/
DSkVertState.h37 typedef bool (*Proc)(VertState*); typedef
43 Proc chooseProc(SkVertices::VertexMode mode);
/third_party/flutter/skia/src/core/
DSkVertState.h37 typedef bool (*Proc)(VertState*); typedef
43 Proc chooseProc(SkVertices::VertexMode mode);
/third_party/flutter/skia/tools/gpu/dawn/
DDawnTestContext.cpp42 typedef void(*Proc)(); typedef in __anon028490220111::ProcGetter
62 Proc getProc(const char* name) { in getProc()
65 return (Proc) proc; in getProc()
68 return (Proc) proc; in getProc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86.td977 class Proc<string Name, list<SubtargetFeature> Features>
982 def : Proc<"generic", [FeatureX87, FeatureSlowUAMem16,
984 def : Proc<"i386", [FeatureX87, FeatureSlowUAMem16,
986 def : Proc<"i486", [FeatureX87, FeatureSlowUAMem16,
988 def : Proc<"i586", [FeatureX87, FeatureSlowUAMem16,
990 def : Proc<"pentium", [FeatureX87, FeatureSlowUAMem16,
992 def : Proc<"pentium-mmx", [FeatureX87, FeatureSlowUAMem16,
996 def : Proc<"i686", [FeatureX87, FeatureSlowUAMem16, FeatureCMPXCHG8B,
998 def : Proc<"pentiumpro", [FeatureX87, FeatureSlowUAMem16, FeatureCMPXCHG8B,
1001 def : Proc<"pentium2", [FeatureX87, FeatureSlowUAMem16, FeatureCMPXCHG8B,
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/
DARC.td17 class Proc<string Name, list<SubtargetFeature> Features>
20 def : Proc<"generic", []>;

12345