HomeSort by relevance Sort by last modified time
    Searched refs:Func (Results 401 - 425 of 911) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
fuse.go 8 func fuse(f *Func) {
34 func fuseBlockIf(b *Block) bool {
111 func fuseBlockPlain(b *Block) bool {
138 f := b.Func
copyelim.go 9 func copyelim(f *Func) {
38 func copySource(v *Value) *Value {
76 func copyelimValue(v *Value) {
deadcode.go 8 func findlive(f *Func) (reachable []bool, live []bool) {
15 func reachableBlocks(f *Func) []bool {
41 func liveValues(f *Func, reachable []bool) []bool {
99 func deadcode(f *Func) {
231 func (b *Block) removeEdge(i int) {
  /prebuilts/go/darwin-x86/src/go/types/
lookup.go 10 // in T and returns the corresponding *Var or *Func, an index sequence, and a
35 func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {
46 if _, ok := obj.(*Func); ok {
61 func lookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {
184 if f, _ := obj.(*Func); f != nil && ptrRecv(f) && !indirect && !addressable {
207 func consolidateMultiples(list []embeddedType) []embeddedType {
237 func MissingMethod(V Type, T *Interface, static bool) (method *Func, wrongType bool) {
265 f, _ := obj.(*Func)
281 func assertableTo(V *Interface, T Type) (method *Func, wrongType bool)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
fuse.go 8 func fuse(f *Func) {
34 func fuseBlockIf(b *Block) bool {
111 func fuseBlockPlain(b *Block) bool {
138 f := b.Func
  /prebuilts/go/linux-x86/src/go/types/
lookup.go 10 // in T and returns the corresponding *Var or *Func, an index sequence, and a
35 func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {
46 if _, ok := obj.(*Func); ok {
61 func lookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {
184 if f, _ := obj.(*Func); f != nil && ptrRecv(f) && !indirect && !addressable {
207 func consolidateMultiples(list []embeddedType) []embeddedType {
237 func MissingMethod(V Type, T *Interface, static bool) (method *Func, wrongType bool) {
265 f, _ := obj.(*Func)
281 func assertableTo(V *Interface, T Type) (method *Func, wrongType bool)
    [all...]
  /external/llvm/unittests/CodeGen/
DIEHashTest.cpp 544 // struct { static void func(); };
550 auto Func = DIE::get(Alloc, dwarf::DW_TAG_subprogram);
551 DIEString FuncStr = getString("func");
552 Func->addValue(Alloc, dwarf::DW_AT_name, dwarf::DW_FORM_strp, FuncStr);
554 Unnamed.addChild(std::move(Func));
563 // static void func();
574 auto Func = DIE::get(Alloc, dwarf::DW_TAG_subprogram);
575 DIEString FuncStr = getString("func");
578 Func->addValue(Alloc, dwarf::DW_AT_external, dwarf::DW_FORM_flag_present,
580 Func->addValue(Alloc, dwarf::DW_AT_name, dwarf::DW_FORM_strp, FuncStr)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringMIPS32.h 47 static std::unique_ptr<::Ice::TargetLowering> create(Cfg *Func) {
48 return makeUnique<TargetMIPS32>(Func);
58 Computations.dump(Func);
131 void emitJumpTable(const Cfg *Func,
761 explicit TargetMIPS32(Cfg *Func);
865 OperandMIPS32Mem *formAddressingMode(Type Ty, Cfg *Func, const Inst *LdSt,
890 void dump(const Cfg *Func) const {
891 if (!BuildDefs::dump() || !Func->isVerbose(IceV_Folding))
893 OstreamLocker L(Func->getContext());
894 Ostream &Str = Func->getContext()->getStrDump()
    [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/PlatformBdsLib/
BdsPlatform.h 86 #define PCI_DEVICE_PATH_NODE(Func, Dev) \
96 (Func), \
  /external/clang/test/SemaCXX/
friend.cpp 36 void Func(int x);
40 friend void ::test2::foo::Func(int x);
  /external/llvm/lib/Transforms/Instrumentation/
CFGMST.h 206 CFGMST(Function &Func, BranchProbabilityInfo *BPI_ = nullptr,
208 : F(Func), BPI(BPI_), BFI(BFI_) {
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...]
  /external/llvm/tools/llvm-pdbdump/
VariableDumper.cpp 104 if (auto Func = dyn_cast<PDBSymbolFunc>(PointeeType.get())) {
109 NestedDumper.start(*Func, Pointer);
  /external/skia/bench/
GLVec4ScalarBench.cpp 190 template<typename Func>
191 static void setup_matrices(int numQuads, Func f) {
  /external/swiftshader/third_party/LLVM/lib/MC/
MCLoggingStreamer.cpp 71 virtual void EmitThumbFunc(MCSymbol *Func) {
73 return Child->EmitThumbFunc(Func);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
  /prebuilts/go/darwin-x86/src/cmd/vet/
nilfunc.go 18 func init() {
25 func checkNilFuncComparison(f *File, node ast.Node) {
56 if _, ok := obj.(*types.Func); !ok {
65 func (f *File) isNil(e ast.Expr) bool {

Completed in 4782 milliseconds

<<11121314151617181920>>