HomeSort by relevance Sort by last modified time
    Searched defs:Func (Results 151 - 175 of 246) sorted by null

1 2 3 4 5 67 8 910

  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/StaticAnalyzer/Core/
CheckerManager.h 53 typedef RET (*Func)(void *, Ps...);
54 Func Fn;
57 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { }
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/StaticAnalyzer/Core/
CheckerManager.h 53 typedef RET (*Func)(void *, Ps...);
54 Func Fn;
57 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { }
  /external/icu/icu4c/source/test/perf/collperf/
collperf.cpp 88 typedef void (CmdKeyGen::* Func)(int32_t);
94 Func fn;
102 CmdKeyGen(UErrorCode, UCollator * col,DWORD win_langid, int32_t count, DataIndex * data,Func fn,int32_t)
140 typedef void (CmdIter::* Func)(UErrorCode* , int32_t );
143 Func fn;
147 CmdIter(UErrorCode & status, UCollator * col, int32_t count, CA_uchar *data, Func fn, int32_t,int32_t)
189 typedef void (CmdIterAll::* Func)(UErrorCode* status);
192 Func fn;
330 #define QFUNC(name, func, data) \
333 return func(da->data, db->data);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 532 GCOVFunction &Func = *Funcs.back();
535 GCOVBlock &Block = Func.getBlock(&BB);
539 Block.addEdge(Func.getBlock(TI->getSuccessor(i)));
542 Block.addEdge(Func.getReturnBlock());
567 EdgeDestinations += Func.getEdgeDestinations();
575 for (auto &Func : Funcs) {
576 Func->setCfgChecksum(FileChecksums.back());
577 Func->writeOut();
    [all...]
DataFlowSanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp     [all...]
StructurizeCFG.cpp 173 Function *Func;
536 PhiInserter.AddAvailableValue(&Func->getEntryBlock(), Default);
611 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
702 LLVMContext &Context = Func->getContext();
706 Func, Insert);
914 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
965 Func = R->getEntry()->getParent();
RewriteStatepointsForGC.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAsmStreamer.cpp 135 virtual void EmitThumbFunc(MCSymbol *Func);
347 void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
353 OS << '\t' << *Func;
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceCfgNode.cpp 45 Func->setError("Phi instruction added to the middle of a block");
71 template <typename List> void removeDeletedAndRenumber(List *L, Cfg *Func) {
79 I->renumber(Func);
86 InstNumberT FirstNumber = Func->getNextInstNumber();
87 removeDeletedAndRenumber(&Phis, Func);
88 removeDeletedAndRenumber(&Insts, Func);
89 InstCountEstimate = Func->getNextInstNumber() - FirstNumber;
168 Insts.insert(Insts.begin(), Phi->lower(Func));
264 auto *NewInst = InstAssign::create(Func, Dest, Operand);
287 CfgNode *NewNode = Func->makeNode()
    [all...]
IceGlobalContext.cpp 249 void GlobalContext::CodeStats::dump(const Cfg *Func, GlobalContext *Ctx) {
255 (Func == nullptr ? "_FINAL_" : Func->getFunctionNameAndSize());
285 if (Func != nullptr) {
286 Str << "|" << Name << "|Cfg Memory |" << Func->getTotalMemoryMB()
288 Str << "|" << Name << "|Liveness Memory |" << Func->getLivenessMemoryMB()
384 auto Func = OptItem->getParsedCfg();
385 // Install Func in TLS for Cfg-specific container allocators.
386 CfgLocalAllocatorScope _(Func.get());
391 if (!getFlags().matchVerboseFocusOn(Func->getFunctionName()
    [all...]
WasmTranslator.cpp 264 explicit IceBuilder(class Cfg *Func)
265 : ControlPtr(nullptr), Func(Func), Ctx(Func->getContext()) {}
270 return Func->allocateArrayOf<Node>(Count);
276 auto *Entry = Func->getEntryNode();
286 Entry->appendInst(InstLoad::create(Func, WasmMemoryV, WasmMemoryPtr));
295 Func->addArg(Arg);
301 auto *Loop = Func->makeNode();
303 Entry->appendInst(InstBr::create(Func, Loop))
    [all...]
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...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
Pci.c     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 70 ResultT (*Func)(ArrayRef<const ArgT *>)>
72 ResultT operator()() const { return Func(None); }
85 return Func(InnerArgs);
93 return Func(ArrayRef<const ArgT *>(ArgsArray, sizeof...(ArgsT)));
    [all...]
  /external/clang/lib/AST/
Expr.cpp 452 case Func:
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.cpp     [all...]
CGExprComplex.cpp 228 ComplexPairTy (ComplexExprEmitter::*Func)
232 ComplexPairTy (ComplexExprEmitter::*Func)
602 llvm::Constant *Func = CGF.CGM.CreateBuiltinFunction(FTy, LibCallName);
605 RValue Res = CGF.EmitCall(FuncInfo, Func, ReturnValueSlot(), Args,
825 ComplexPairTy (ComplexExprEmitter::*Func)(const BinOpInfo&),
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDILCFGStructurizer.cpp 660 MachineFunction *Func = MBB->getParent();
661 MachineBasicBlock *NewMBB = Func->CreateMachineBasicBlock();
662 Func->push_back(NewMBB); //insert to function
664 NewMBB->push_back(Func->CloneMachineInstr(&It));
909 //walk through all the block in func to check for unreachable
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFGraph.h 162 // - Func: The whole function. The members are basic block nodes.
244 Func = 0x0006 << 2, // 110
275 case Func:
613 return Func;
787 NodeAddr<FuncNode*> Func;
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
  /external/protobuf/src/google/protobuf/
map_test.cc 922 static int Func(int i, int j) {
928 SStringPrintf(&str, "%d", Func(i, j));
955 (*map_int32_int32)[i] = Func(i, 1);
956 (*map_int32_double)[i] = Func(i, 2);
958 (*map_int32_foreign_message)[i].set_c(Func(i, 6));
1020 EXPECT_EQ(value_int32_int32, Func(key_int32_int32, 1));
1028 EXPECT_EQ(value_int32_double, Func(key_int32_double, 2));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp     [all...]

Completed in 2061 milliseconds

1 2 3 4 5 67 8 910