/external/swiftshader/third_party/subzero/src/ |
D | IceInstMIPS32.cpp | 48 OperandMIPS32Mem::OperandMIPS32Mem(Cfg *Func, Type Ty, Variable *Base, in OperandMIPS32Mem() argument 52 (void)Func; in OperandMIPS32Mem() 157 template <> void InstMIPS32Lui::emit(const Cfg *Func) const { in emit() 160 Ostream &Str = Func->getContext()->getStrEmit(); in emit() 163 getDest()->emit(Func); in emit() 169 CR->emitWithoutPrefix(Func->getTarget()); in emit() 172 Src0->emit(Func); in emit() 176 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, in InstMIPS32Br() argument 179 : InstMIPS32(Func, InstMIPS32::Br, 0, nullptr), TargetTrue(TargetTrue), in InstMIPS32Br() 182 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, in InstMIPS32Br() argument [all …]
|
D | IceInstMIPS32.h | 81 static OperandMIPS32FCC *create(Cfg *Func, OperandMIPS32FCC::FCC FCC) { in create() argument 82 return new (Func->allocate<OperandMIPS32FCC>()) OperandMIPS32FCC(FCC); in create() 87 void emit(const Cfg *Func) const override { in emit() argument 90 Ostream &Str = Func->getContext()->getStrEmit(); in emit() 98 void dump(const Cfg *Func, Ostream &Str) const override { in dump() argument 101 (void)Func; in dump() 129 static OperandMIPS32Mem *create(Cfg *Func, Type Ty, Variable *Base, 131 return new (Func->allocate<OperandMIPS32Mem>()) 132 OperandMIPS32Mem(Func, Ty, Base, ImmOffset, Mode); 139 void emit(const Cfg *Func) const override; [all …]
|
D | IceInstARM32.h | 105 static OperandARM32Mem *create(Cfg *Func, Type Ty, Variable *Base, 108 return new (Func->allocate<OperandARM32Mem>()) 109 OperandARM32Mem(Func, Ty, Base, ImmOffset, Mode); 113 static OperandARM32Mem *create(Cfg *Func, Type Ty, Variable *Base, 117 return new (Func->allocate<OperandARM32Mem>()) 118 OperandARM32Mem(Func, Ty, Base, Index, ShiftOp, ShiftAmt, Mode); 137 void emit(const Cfg *Func) const override; 139 void dump(const Cfg *Func, Ostream &Str) const override; 152 OperandARM32Mem(Cfg *Func, Type Ty, Variable *Base, 154 OperandARM32Mem(Cfg *Func, Type Ty, Variable *Base, Variable *Index, [all …]
|
D | IceInst.cpp | 79 Inst::Inst(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest) in Inst() argument 80 : Kind(Kind), Number(Func->newInstNumber()), Dest(Dest), MaxSrcs(MaxSrcs), in Inst() 127 void Inst::renumber(Cfg *Func) { in renumber() argument 128 Number = isDeleted() ? NumberDeleted : Func->newInstNumber(); in renumber() 199 void Inst::livenessLightweight(Cfg *Func, LivenessBV &Live) { in livenessLightweight() argument 202 VariablesMetadata *VMetadata = Func->getVMetadata(); in livenessLightweight() 273 InstAlloca::InstAlloca(Cfg *Func, Variable *Dest, Operand *ByteCount, in InstAlloca() argument 275 : InstHighLevel(Func, Inst::Alloca, 1, Dest), AlignInBytes(AlignInBytes) { in InstAlloca() 281 InstArithmetic::InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest, in InstArithmetic() argument 283 : InstHighLevel(Func, Inst::Arithmetic, 2, Dest), Op(Op) { in InstArithmetic() [all …]
|
D | IceInstX86Base.h | 208 void dump(const Cfg *Func) const override; 211 void emitTwoAddress(const Cfg *Func, const char *Opcode, 214 static TargetLowering *getTarget(const Cfg *Func) { in getTarget() 215 return static_cast<TargetLowering *>(Func->getTarget()); in getTarget() 219 InstX86Base(Cfg *Func, InstKindX86 Kind, SizeT Maxsrcs, Variable *Dest) in InstX86Base() 220 : InstTarget(Func, static_cast<InstKind>(Kind), Maxsrcs, Dest) {} in InstX86Base() 262 static InstX86FakeRMW *create(Cfg *Func, Operand *Data, Operand *Addr, 267 return new (Func->allocate<InstX86FakeRMW>()) 268 InstX86FakeRMW(Func, Data, Addr, Op, Beacon); 276 void dump(const Cfg *Func) const override; [all …]
|
D | IceInstARM32.cpp | 120 void InstARM32::startNextInst(const Cfg *Func) const { in startNextInst() 121 if (auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>()) in startNextInst() 125 void InstARM32::emitUsingTextFixup(const Cfg *Func) const { in emitUsingTextFixup() 128 GlobalContext *Ctx = Func->getContext(); in emitUsingTextFixup() 129 auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>(); in emitUsingTextFixup() 145 emit(Func); in emitUsingTextFixup() 160 void InstARM32::emitIAS(const Cfg *Func) const { emitUsingTextFixup(Func); } in emitIAS() 163 const InstARM32Pred *Instr, const Cfg *Func, in emitUnaryopGPR() argument 165 Ostream &Str = Func->getContext()->getStrEmit(); in emitUnaryopGPR() 172 Instr->getDest()->emit(Func); in emitUnaryopGPR() [all …]
|
D | IceInstX86BaseImpl.h | 50 InstImpl<TraitsType>::InstX86FakeRMW::InstX86FakeRMW(Cfg *Func, Operand *Data, in InstX86FakeRMW() argument 54 : InstX86Base(Func, InstX86Base::FakeRMW, 3, nullptr), Op(Op) { in InstX86FakeRMW() 61 InstImpl<TraitsType>::InstX86GetIP::InstX86GetIP(Cfg *Func, Variable *Dest) in InstX86GetIP() argument 62 : InstX86Base(Func, InstX86Base::GetIP, 0, Dest) {} in InstX86GetIP() 65 InstImpl<TraitsType>::InstX86Mul::InstX86Mul(Cfg *Func, Variable *Dest, in InstX86Mul() argument 68 : InstX86Base(Func, InstX86Base::Mul, 2, Dest) { in InstX86Mul() 74 InstImpl<TraitsType>::InstX86Shld::InstX86Shld(Cfg *Func, Variable *Dest, in InstX86Shld() argument 77 : InstX86Base(Func, InstX86Base::Shld, 3, Dest) { in InstX86Shld() 84 InstImpl<TraitsType>::InstX86Shrd::InstX86Shrd(Cfg *Func, Variable *Dest, in InstX86Shrd() argument 87 : InstX86Base(Func, InstX86Base::Shrd, 3, Dest) { in InstX86Shrd() [all …]
|
D | IceInst.h | 86 void renumber(Cfg *Func); 161 void livenessLightweight(Cfg *Func, LivenessBV &Live); 184 virtual void emitIAS(const Cfg *Func) const { emit(Func); } in emitIAS() argument 185 virtual void dump(const Cfg *Func) const; 186 virtual void dumpExtras(const Cfg *Func) const; 187 void dumpDecorated(const Cfg *Func) const; 188 void emitSources(const Cfg *Func) const; 189 void dumpSources(const Cfg *Func) const; 190 void dumpDest(const Cfg *Func) const; 206 Inst(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest); [all …]
|
D | WasmTranslator.cpp | 264 explicit IceBuilder(class Cfg *Func) in IceBuilder() argument 265 : ControlPtr(nullptr), Func(Func), Ctx(Func->getContext()) {} in IceBuilder() 270 return Func->allocateArrayOf<Node>(Count); in Buffer() 276 auto *Entry = Func->getEntryNode(); in Start() 286 Entry->appendInst(InstLoad::create(Func, WasmMemoryV, WasmMemoryPtr)); in Start() 295 Func->addArg(Arg); in Param() 301 auto *Loop = Func->makeNode(); in Loop() 303 Entry->appendInst(InstBr::create(Func, Loop)); in Loop() 318 auto *MergedNode = Func->makeNode(); in Merge() 322 Control->appendInst(InstBr::create(Func, MergedNode)); in Merge() [all …]
|
D | IceCfgNode.cpp | 45 Func->setError("Phi instruction added to the middle of a block"); in appendInst() 71 template <typename List> void removeDeletedAndRenumber(List *L, Cfg *Func) { in removeDeletedAndRenumber() argument 79 I->renumber(Func); in removeDeletedAndRenumber() 86 InstNumberT FirstNumber = Func->getNextInstNumber(); in renumberInstructions() 87 removeDeletedAndRenumber(&Phis, Func); in renumberInstructions() 88 removeDeletedAndRenumber(&Insts, Func); in renumberInstructions() 89 InstCountEstimate = Func->getNextInstNumber() - FirstNumber; in renumberInstructions() 168 Insts.insert(Insts.begin(), Phi->lower(Func)); in placePhiLoads() 264 auto *NewInst = InstAssign::create(Func, Dest, Operand); in placePhiStores() 287 CfgNode *NewNode = Func->makeNode(); in splitIncomingEdge() [all …]
|
D | IceCfgNode.h | 31 static CfgNode *create(Cfg *Func, SizeT Number) { in create() argument 32 return new (Func->allocate<CfgNode>()) CfgNode(Func, Number); in create() 35 Cfg *getCfg() const { return Func; } in getCfg() 48 Name = NodeString::createWithString(Func, NewName); in setName() 51 return ".L" + Func->getFunctionName() + "$" + getName(); in getAsmName() 113 void emit(Cfg *Func) const; 114 void emitIAS(Cfg *Func) const; 115 void dump(Cfg *Func) const; 134 CfgNode(Cfg *Func, SizeT Number) in CfgNode() argument 135 : Func(Func), Number(Number), NumberOrig(Number), in CfgNode() [all …]
|
D | IceInstX8664.cpp | 66 TargetX8664Traits::X86OperandMem::X86OperandMem(Cfg *Func, Type Ty, in X86OperandMem() argument 81 Vars = Func->allocateArrayOf<Variable *>(NumVars); in X86OperandMem() 105 void TargetX8664Traits::X86OperandMem::emit(const Cfg *Func) const { in emit() 109 static_cast<const ::Ice::X8664::TargetX8664 *>(Func->getTarget()); in emit() 122 Ostream &Str = Func->getContext()->getStrEmit(); in emit() 169 B = B->asType(Func, IceType_i32, X8664::Traits::getGprForType( in emit() 174 B->emit(Func); in emit() 180 I->emit(Func); in emit() 188 void TargetX8664Traits::X86OperandMem::dump(const Cfg *Func, in dump() argument 196 static_cast<const ::Ice::X8664::TargetX8664 *>(Func->getTarget()); in dump() [all …]
|
/external/mdnsresponder/mDNSWindows/DLLStub/ |
D | DLLStub.cpp | 86 typedef int (DNSSD_API * Func)(DNSServiceRef sdRef); in DNSServiceRefSockFD() typedef 87 static Func func = NULL; in DNSServiceRefSockFD() 102 typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef sdRef); in DNSServiceProcessResult() typedef 103 static Func func = NULL; in DNSServiceProcessResult() 118 typedef void (DNSSD_API * Func)(DNSServiceRef sdRef); in DNSServiceRefDeallocate() typedef 119 static Func func = NULL; in DNSServiceRefDeallocate() 138 …typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef*, DNSServiceFlags, uint32_t, DNSServi… in DNSServiceEnumerateDomains() typedef 139 static Func func = NULL; in DNSServiceEnumerateDomains() 168 …typedef DNSServiceErrorType (DNSSD_API * Func)(DNSServiceRef*, DNSServiceFlags, uint32_t, const ch… in DNSServiceRegister() typedef 169 static Func func = NULL; in DNSServiceRegister() [all …]
|
/external/eigen/Eigen/src/Core/ |
D | Redux.h | 26 template<typename Func, typename Derived> 40 && (functor_traits<Func>::PacketAccess), 55 …CompileTime * Derived::CoeffReadCost + (Derived::SizeAtCompileTime-1) * functor_traits<Func>::Cost, 90 template<typename Func, typename Derived, int Start, int Length> 100 static EIGEN_STRONG_INLINE Scalar run(const Derived &mat, const Func& func) in run() 102 return func(redux_novec_unroller<Func, Derived, Start, HalfLength>::run(mat,func), in run() 103 … redux_novec_unroller<Func, Derived, Start+HalfLength, Length-HalfLength>::run(mat,func)); in run() 107 template<typename Func, typename Derived, int Start> 108 struct redux_novec_unroller<Func, Derived, Start, 1> 118 static EIGEN_STRONG_INLINE Scalar run(const Derived &mat, const Func&) [all …]
|
/external/protobuf/src/google/protobuf/ |
D | repeated_field_reflection_unittest.cc | 53 static int Func(int i, int j) { return i * j; } in Func() function 57 SStringPrintf(&str, "%d", Func(i, 4)); in StrFunc() 67 message.add_repeated_int32(Func(i, 1)); in TEST() 68 message.add_repeated_double(Func(i, 2)); in TEST() 70 message.add_repeated_foreign_message()->set_c(Func(i, 6)); in TEST() 117 EXPECT_EQ(rf_int32.Get(i), Func(i, 1)); in TEST() 118 EXPECT_EQ(rf_double.Get(i), Func(i, 2)); in TEST() 120 EXPECT_EQ(rpf_foreign_message.Get(i).c(), Func(i, 6)); in TEST() 122 Func(i, 6)); in TEST() 125 EXPECT_EQ(mrf_int32->Get(i), Func(i, 1)); in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-profdata/Inputs/ |
D | multiple-profdata-merge.proftext | 4 # Func Hash: 15 # Func Hash: 28 # Func Hash: 38 # Func Hash: 51 # Func Hash: 59 # Func Hash: 67 # Func Hash: 75 # Func Hash: 83 # Func Hash: 91 # Func Hash: [all …]
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RPCUtils.h | 188 template <typename ChannelT, typename SequenceNumberT, typename Func> 207 template <typename ChannelT, typename SequenceNumberT, typename Func> 221 typedef FunctionHelper<FunctionIdT, FuncId, RetT(ArgTs...)> Func; typedef 244 return Func::template respond<ChannelT, SequenceNumberT>(C, SeqNo, in readAndHandle() 382 template <typename Func> 383 using AsyncCallResult = std::future<typename Func::OptionalReturn>; 386 template <typename Func> 388 std::pair<std::future<typename Func::OptionalReturn>, SequenceNumberT>; 400 template <typename Func, typename... ArgTs> 401 Expected<AsyncCallWithSeqResult<Func>> [all …]
|
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
D | copy_assign.pass.cpp | 93 typedef std::function<int()> Func; in main() typedef 94 Func f = g0; in main() 95 Func& fr = (f = (Func &)f); in main() 100 typedef std::function<int(int)> Func; in main() typedef 101 Func f = g; in main() 102 Func& fr = (f = (Func &)f); in main() 107 typedef std::function<int(int, int)> Func; in main() typedef 108 Func f = g2; in main() 109 Func& fr = (f = (Func &)f); in main() 114 typedef std::function<int(int, int, int)> Func; in main() typedef [all …]
|
/external/libunwind/doc/ |
D | libunwind-setjmp.tex | 16 \Type{int} \Func{setjmp}(\Type{jmp\_buf}~\Var{env});\\ 17 \Type{void} \Func{longjmp}(\Type{jmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\ 18 \Type{int} \Func{\_setjmp}(\Type{jmp\_buf}~\Var{env});\\ 19 \Type{void} \Func{\_longjmp}(\Type{jmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\ 20 \Type{int} \Func{sigsetjmp}(\Type{sigjmp\_buf}~\Var{env}, \Type{int}~\Var{savemask});\\ 21 \Type{void} \Func{siglongjmp}(\Type{sigjmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\ 30 \Func{setjmp}() routines is very fast. Typically, just 2 or 3 words 32 \Func{sigprocmask}(2), in the case of \Func{sigsetjmp}). On the 34 \Func{longjmp}() routines tends to be much slower than with the 36 \Func{longjmp}() will be proportional to the number of call frames [all …]
|
/external/llvm/bindings/go/llvm/ |
D | IRBindings.cpp | 25 Function *Func = unwrap<Function>(Fn); in LLVMAddFunctionAttr2() local 26 const AttributeSet PAL = Func->getAttributes(); in LLVMAddFunctionAttr2() 29 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex, in LLVMAddFunctionAttr2() 30 AttributeSet::get(Func->getContext(), in LLVMAddFunctionAttr2() 32 Func->setAttributes(PALnew); in LLVMAddFunctionAttr2() 36 Function *Func = unwrap<Function>(Fn); in LLVMGetFunctionAttr2() local 37 const AttributeSet PAL = Func->getAttributes(); in LLVMGetFunctionAttr2() 42 Function *Func = unwrap<Function>(Fn); in LLVMRemoveFunctionAttr2() local 43 const AttributeSet PAL = Func->getAttributes(); in LLVMRemoveFunctionAttr2() 46 PAL.removeAttributes(Func->getContext(), AttributeSet::FunctionIndex, in LLVMRemoveFunctionAttr2() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | LibCallsShrinkWrap.cpp | 96 bool performCallDomainErrorOnly(CallInst *CI, const LibFunc &Func); 97 bool performCallErrors(CallInst *CI, const LibFunc &Func); 98 bool performCallRangeErrorOnly(CallInst *CI, const LibFunc &Func); 99 Value *generateOneRangeCond(CallInst *CI, const LibFunc &Func); 100 Value *generateTwoRangeCond(CallInst *CI, const LibFunc &Func); 101 Value *generateCondForPow(CallInst *CI, const LibFunc &Func); 137 const LibFunc &Func) { in performCallDomainErrorOnly() argument 140 switch (Func) { in performCallDomainErrorOnly() 189 const LibFunc &Func) { in performCallRangeErrorOnly() argument 192 switch (Func) { in performCallRangeErrorOnly() [all …]
|
/external/angle/third_party/glslang/src/Test/baseResults/ |
D | hlsl.tx.overload.frag.out | 5 0:8 Function Definition: Func(t211; ( temp float) 12 0:9 Function Definition: Func(t21; ( temp 4-component vector of float) 22 0:11 Function Definition: Func(I211; ( temp float) 29 0:12 Function Definition: Func(I21; ( temp 4-component vector of float) 46 0:16 Function Call: Func(t211; ( temp float) 48 0:16 Function Call: Func(t21; ( temp 4-component vector of float) 50 0:16 Function Call: Func(I211; ( temp float) 52 0:16 Function Call: Func(I21; ( temp 4-component vector of float) 74 0:8 Function Definition: Func(t211; ( temp float) 81 0:9 Function Definition: Func(t21; ( temp 4-component vector of float) [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | hlsl.tx.overload.frag.out | 5 0:8 Function Definition: Func(t211; ( temp float) 12 0:9 Function Definition: Func(t21; ( temp 4-component vector of float) 22 0:11 Function Definition: Func(I211; ( temp float) 29 0:12 Function Definition: Func(I21; ( temp 4-component vector of float) 46 0:16 Function Call: Func(t211; ( temp float) 48 0:16 Function Call: Func(t21; ( temp 4-component vector of float) 50 0:16 Function Call: Func(I211; ( temp float) 52 0:16 Function Call: Func(I21; ( temp 4-component vector of float) 74 0:8 Function Definition: Func(t211; ( temp float) 81 0:9 Function Definition: Func(t21; ( temp 4-component vector of float) [all …]
|
/external/eigen/Eigen/src/Core/util/ |
D | Meta.h | 300 template<typename Func, typename ArgType, int SizeOf=sizeof(has_none)> 303 template<typename Func, typename ArgType> 304 struct unary_result_of_select<Func, ArgType, sizeof(has_std_result_type)> {typedef typename Func::r… 306 template<typename Func, typename ArgType> 307 struct unary_result_of_select<Func, ArgType, sizeof(has_tr1_result)> {typedef typename Func::templa… 309 template<typename Func, typename ArgType> 310 struct result_of<Func(ArgType)> { 318 enum {FunctorType = sizeof(testFunctor(static_cast<Func*>(0)))}; 319 typedef typename unary_result_of_select<Func, ArgType, FunctorType>::type type; 322 template<typename Func, typename ArgType0, typename ArgType1, int SizeOf=sizeof(has_none)> [all …]
|
/external/clang/test/Layout/ |
D | ms-vtordisp-local.cpp | 15 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
|