Home
last modified time | relevance | path

Searched defs:Func (Results 1 – 25 of 217) sorted by relevance

123456789

/external/swiftshader/third_party/subzero/src/
DIceInstX86BaseImpl.h50 InstImpl<TraitsType>::InstX86FakeRMW::InstX86FakeRMW(Cfg *Func, Operand *Data, in InstX86FakeRMW()
61 InstImpl<TraitsType>::InstX86GetIP::InstX86GetIP(Cfg *Func, Variable *Dest) in InstX86GetIP()
65 InstImpl<TraitsType>::InstX86Mul::InstX86Mul(Cfg *Func, Variable *Dest, in InstX86Mul()
74 InstImpl<TraitsType>::InstX86Shld::InstX86Shld(Cfg *Func, Variable *Dest, in InstX86Shld()
84 InstImpl<TraitsType>::InstX86Shrd::InstX86Shrd(Cfg *Func, Variable *Dest, in InstX86Shrd()
94 InstImpl<TraitsType>::InstX86Label::InstX86Label(Cfg *Func, in InstX86Label()
108 InstImpl<TraitsType>::InstX86Br::InstX86Br(Cfg *Func, const CfgNode *TargetTrue, in InstX86Br()
170 InstImpl<TraitsType>::InstX86Jmp::InstX86Jmp(Cfg *Func, Operand *Target) in InstX86Jmp()
176 InstImpl<TraitsType>::InstX86Call::InstX86Call(Cfg *Func, Variable *Dest, in InstX86Call()
184 InstImpl<TraitsType>::InstX86Movmsk::InstX86Movmsk(Cfg *Func, Variable *Dest, in InstX86Movmsk()
[all …]
DIceInstMIPS32.h81 static OperandMIPS32FCC *create(Cfg *Func, OperandMIPS32FCC::FCC FCC) { in create()
87 void emit(const Cfg *Func) const override { in emit()
98 void dump(const Cfg *Func, Ostream &Str) const override { in dump()
152 void dump(const Cfg *Func, Ostream &Str) const override { in dump()
319 InstMIPS32(Cfg *Func, InstKindMIPS32 Kind, SizeT Maxsrcs, Variable *Dest) in InstMIPS32()
367 void emit(const Cfg *Func) const override { in emit()
372 void emitIAS(const Cfg *Func) const override { in emitIAS()
376 void dump(const Cfg *Func) const override { in dump()
408 static InstMIPS32TwoAddrFPR *create(Cfg *Func, Variable *Dest, in create()
413 void emit(const Cfg *Func) const override { in emit()
[all …]
DIceInstARM32.h174 static OperandARM32ShAmtImm *create(Cfg *Func, ConstantInteger32 *ShAmt) { in create()
254 static OperandARM32FlexFpImm *create(Cfg *Func, Type Ty, in create()
285 static OperandARM32FlexFpZero *create(Cfg *Func, Type Ty) { in create()
310 static OperandARM32FlexReg *create(Cfg *Func, Type Ty, Variable *Reg, in create()
349 static StackVariable *create(Cfg *Func, Type Ty, SizeT Index) { in create()
362 StackVariable(const Cfg *Func, Type Ty, SizeT Index) in StackVariable()
482 InstARM32(Cfg *Func, InstKindARM32 Kind, SizeT Maxsrcs, Variable *Dest) in InstARM32()
501 InstARM32Pred(Cfg *Func, InstKindARM32 Kind, SizeT Maxsrcs, Variable *Dest, in InstARM32Pred()
543 static InstARM32UnaryopGPR *create(Cfg *Func, Variable *Dest, Operand *Src, in create()
548 void emit(const Cfg *Func) const override { in emit()
[all …]
DIceInst.cpp79 Inst::Inst(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest) in Inst()
127 void Inst::renumber(Cfg *Func) { in renumber()
199 void Inst::livenessLightweight(Cfg *Func, LivenessBV &Live) { in livenessLightweight()
273 InstAlloca::InstAlloca(Cfg *Func, Variable *Dest, Operand *ByteCount, in InstAlloca()
281 InstArithmetic::InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest, in InstArithmetic()
304 InstAssign::InstAssign(Cfg *Func, Variable *Dest, Operand *Source) in InstAssign()
314 InstBr::InstBr(Cfg *Func, Operand *Source, CfgNode *TargetTrue_, in InstBr()
331 InstBr::InstBr(Cfg *Func, CfgNode *Target) in InstBr()
357 InstCast::InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source) in InstCast()
362 InstExtractElement::InstExtractElement(Cfg *Func, Variable *Dest, in InstExtractElement()
[all …]
DIceTargetLoweringX8632.h40 static std::unique_ptr<::Ice::TargetLowering> create(Cfg *Func) { in create()
70 explicit TargetX8632(Cfg *Func) : TargetX86Base(Func) {} in TargetX8632()
DIceTargetLoweringX8664.h40 static std::unique_ptr<::Ice::TargetLowering> create(Cfg *Func) { in create()
73 explicit TargetX8664(Cfg *Func) : TargetX86Base(Func) {} in TargetX8664()
DIceInst.h184 virtual void emitIAS(const Cfg *Func) const { emit(Func); } in emitIAS()
263 InstHighLevel(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest) in InstHighLevel()
282 static InstAlloca *create(Cfg *Func, Variable *Dest, Operand *ByteCount, in create()
318 static InstArithmetic *create(Cfg *Func, OpKind Op, Variable *Dest, in create()
353 static InstAssign *create(Cfg *Func, Variable *Dest, Operand *Source) { in create()
375 static InstBr *create(Cfg *Func, Operand *Source, CfgNode *TargetTrue, in create()
381 static InstBr *create(Cfg *Func, CfgNode *Target) { in create()
444 InstCall(Cfg *Func, SizeT NumArgs, Variable *Dest, Operand *CallTarget, in InstCall()
474 static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest, in create()
497 static InstExtractElement *create(Cfg *Func, Variable *Dest, Operand *Source1, in create()
[all …]
DIceCfgNode.h31 static CfgNode *create(Cfg *Func, SizeT Number) { in create()
131 CfgNode(Cfg *Func, SizeT Number) in CfgNode()
135 Cfg *const Func; variable
DIceLiveness.h110 static std::unique_ptr<Liveness> create(Cfg *Func, LivenessMode Mode) { in create()
123 Liveness(Cfg *Func, LivenessMode Mode) in Liveness()
138 Cfg *Func; variable
DIceInstARM32.cpp163 const InstARM32Pred *Instr, const Cfg *Func, in emitUnaryopGPR()
178 const InstARM32Pred *Instr, const Cfg *Func) { in emitUnaryopFP()
201 const Cfg *Func) { in emitTwoAddr()
215 const InstARM32Pred *Instr, const Cfg *Func, in emitThreeAddr()
231 const InstARM32 *Instr, const Cfg *Func, in emitThreeAddrFP()
246 const InstARM32 *Instr, const Cfg *Func) { in emitFourAddrFP()
262 const Cfg *Func) { in emitFourAddr()
314 const Cfg *Func) { in emitCmpLike()
335 OperandARM32Mem::OperandARM32Mem(Cfg *Func, Type Ty, Variable *Base, in OperandARM32Mem()
475 OperandARM32FlexReg::OperandARM32FlexReg(Cfg *Func, Type Ty, Variable *Reg, in OperandARM32FlexReg()
[all …]
DIceOperand.h87 void dump(const Cfg *Func) const { in dump()
139 void emit(const Cfg *Func) const override { emit(Func->getTarget()); } in emit()
700 static Variable *create(Cfg *Func, Type Ty, SizeT Index) { in create()
711 virtual void setName(const Cfg *Func, const std::string &NewName) { in setName()
858 Variable(const Cfg *Func, OperandKind K, Type Ty, SizeT Index) in Variable()
908 static Variable64On32 *create(Cfg *Func, Type Ty, SizeT Index) { in create()
913 void setName(const Cfg *Func, const std::string &NewName) override { in setName()
938 void initHiLo(Cfg *Func) { in initHiLo()
957 Variable64On32(const Cfg *Func, OperandKind K, Type Ty, SizeT Index) in Variable64On32()
974 static VariableVecOn32 *create(Cfg *Func, Type Ty, SizeT Index) { in create()
[all …]
DIceASanInstrumentation.cpp76 bool ASanInstrumentation::isInstrumentable(Cfg *Func) { in isInstrumentable()
223 Cfg *Func = Context.getNode()->getCfg(); in instrumentFuncStart() local
374 Constant *Func = in instrumentLoad() local
390 Constant *Func = in instrumentStore() local
461 Cfg *Func = Context.getNode()->getCfg(); in instrumentRet() local
471 void ASanInstrumentation::instrumentStart(Cfg *Func) { in instrumentStart()
/external/clang/test/Parser/
Dobjcxx0x-lambda-expressions.mm44 struct Func { struct
46 Func(F&&); field
53 Func{ argument
/external/mdnsresponder/mDNSWindows/DLLStub/
DDLLStub.cpp86 typedef int (DNSSD_API * Func)(DNSServiceRef sdRef); in DNSServiceRefSockFD() typedef
102 typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef sdRef); in DNSServiceProcessResult() typedef
118 typedef void (DNSSD_API * Func)(DNSServiceRef sdRef); in DNSServiceRefDeallocate() typedef
138 …typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef*, DNSServiceFlags, uint32_t, DNSServi… in DNSServiceEnumerateDomains() typedef
168 …typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef*, DNSServiceFlags, uint32_t, const ch… in DNSServiceRegister() typedef
193 …typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef, DNSRecordRef*, DNSServiceFlags, uint… in DNSServiceAddRecord() typedef
217 …typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef, DNSRecordRef, DNSServiceFlags, uint1… in DNSServiceUpdateRecord() typedef
238 typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef, DNSRecordRef, DNSServiceFlags ); in DNSServiceRemoveRecord() typedef
263 …typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef*, DNSServiceFlags, uint32_t, const ch… in DNSServiceBrowse() typedef
289 …typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef*, DNSServiceFlags, uint32_t, const ch… in DNSServiceResolve() typedef
[all …]
/external/clang/test/Layout/
Dms-vtordisp-local.cpp15 virtual void Func() {} in f() function
38 virtual void Func() {} in Func() function
60 virtual void Func() {} in f1() function
81 virtual void Func() {} in f1() function
102 virtual void Func() {} in f1() function
122 virtual void Func() {} in f1() function
144 virtual void Func() {} in f1() function
170 virtual void Func() {} in f2() function
193 virtual void Func() {} in Func() function
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
DFunctionDelegates.cs37 public delegate TResult Func<TResult>(); in Func() method
39 public delegate TResult Func<T, TResult>(T arg); in Func() method
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Dcopy_assign.pass.cpp93 typedef std::function<int()> Func; in main() typedef
100 typedef std::function<int(int)> Func; in main() typedef
107 typedef std::function<int(int, int)> Func; in main() typedef
114 typedef std::function<int(int, int, int)> Func; in main() typedef
/external/harfbuzz_ng/test/api/
Dhb-test.h170 #define hb_test_add(Func) hb_test_add_func (#Func, Func) argument
181 #define hb_test_add_flavor(Flavor, Func) hb_test_add_func (#Func, Flavor, Func) argument
192 #define hb_test_add_data(UserData, Func) hb_test_add_data_func (#Func, UserData, Func) argument
204 #define hb_test_add_data_flavor(UserData, Flavor, Func) hb_test_add_data_func_flavor (#Func, Flavor… argument
219 #define hb_test_add_fixture(FixturePrefix, UserData, Func) \ argument
247 #define hb_test_add_fixture_flavor(FixturePrefix, UserData, Flavor, Func) \ argument
/external/llvm/bindings/go/llvm/
DIRBindings.cpp25 Function *Func = unwrap<Function>(Fn); in LLVMAddFunctionAttr2() local
36 Function *Func = unwrap<Function>(Fn); in LLVMGetFunctionAttr2() local
42 Function *Func = unwrap<Function>(Fn); in LLVMRemoveFunctionAttr2() local
102 void LLVMSetSubprogram(LLVMValueRef Func, LLVMMetadataRef SP) { in LLVMSetSubprogram()
/external/clang/test/CodeGen/
D2003-10-06-NegateExprType.c5 void Func(int *B) { in Func() function
/external/clang/test/SemaTemplate/
Dinstantiate-overloaded-arrow.cpp18 void Func() { in Func() function
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DEnumerableExtensions.cs40 public delegate TResult Func<TResult>(); in Func() method
41 public delegate TResult Func<T, TResult>(T arg1); in Func() method
42 public delegate TResult Func<T1, T2, TResult>(T1 arg1, T2 arg2); in Func() method
43 public delegate TResult Func<T1, T2, T3, TResult>(T1 arg1, T2 arg2, T3 arg3); in Func() method
44 public delegate TResult Func<T1, T2, T3, T4, TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4); in Func() method
/external/clang/test/Rewriter/
Drewrite-protocol-type-1.m15 INTF <MyProto1> * Func(INTF <MyProto1> *p2, INTF<MyProto1> *p3, INTF *p4, INTF<MyProto1> *p5) function
/external/clang/test/CodeGenCXX/
D2009-08-11-VectorRetTy.cpp3 typedef void (*Func) (); typedef
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVFunction.cpp60 std::function<void(SPIRVFuncParamAttrKind)>Func){ in foreachAttr()
160 std::function<void(SPIRVFuncParamAttrKind)>Func){ in foreachReturnValueAttr()

123456789