Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for antcall (0.16 sec)

  1. src/cmd/compile/internal/inline/interleaved/interleaved.go

    		edit := func(n ir.Node) ir.Node {
    			call, ok := n.(*ir.CallExpr)
    			if !ok { // previously inlined
    				return nil
    			}
    
    			devirtualize.StaticCall(call)
    			if inlCall := inline.TryInlineCall(fn, call, bigCaller, profile); inlCall != nil {
    				return inlCall
    			}
    			return nil
    		}
    
    		fixpoint(fn, match, edit)
    	})
    }
    
    // fixpoint repeatedly edits a function until it stabilizes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

          auto optimization_pass =
              std::make_unique<NiceMock<MockMlirOptimizationPass>>();
    
          ON_CALL(*optimization_pass, GetPassState(_, _, _, _))
              .WillByDefault(Return(pass_state));
          ON_CALL(*optimization_pass, Run(_, _, _, _, _))
              .WillByDefault(Return(pass_run_result));
          MlirOptimizationPassRegistry::Global().Add(pass_priority++,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. src/os/dir_windows.go

    			break
    		}
    		// We lost the race: try again.
    		d.close()
    	}
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	if d.buf == nil {
    		d.buf = dirBufPool.Get().(*[]byte)
    	}
    
    	wantAll := n <= 0
    	if wantAll {
    		n = -1
    	}
    	for n != 0 {
    		// Refill the buffer if necessary
    		if d.bufp == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    		switch node := node.(type) {
    		case *ast.FuncDecl:
    			return hasBenchmarkOrTestParams(node)
    
    		case *ast.GoStmt:
    			c := goAsyncCall(pass.TypesInfo, node, toDecl)
    			addCall(c)
    
    		case *ast.CallExpr:
    			c := tRunAsyncCall(pass.TypesInfo, node)
    			addCall(c)
    		}
    		return true
    	})
    
    	// Check for t.Forbidden() calls within each region r that is a
    	// callee in some go r() or a t.Run("name", r).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/cpu.go

    	// 3.1.9: Instructions to Access CSRs
    	ACSRRW
    	ACSRRS
    	ACSRRC
    	ACSRRWI
    	ACSRRSI
    	ACSRRCI
    
    	// 3.2.1: Environment Call and Breakpoint
    	AECALL
    	ASCALL
    	AEBREAK
    	ASBREAK
    
    	// 3.2.2: Trap-Return Instructions
    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    	// 4.2.1: Supervisor Memory-Management Fence Instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x33, 0x5, 0x0, 32, 0x1}
    	case ADIVUW:
    		return &inst{0x3b, 0x5, 0x0, 32, 0x1}
    	case ADIVW:
    		return &inst{0x3b, 0x4, 0x0, 32, 0x1}
    	case AEBREAK:
    		return &inst{0x73, 0x0, 0x1, 1, 0x0}
    	case AECALL:
    		return &inst{0x73, 0x0, 0x0, 0, 0x0}
    	case AFADDD:
    		return &inst{0x53, 0x0, 0x0, 32, 0x1}
    	case AFADDQ:
    		return &inst{0x53, 0x0, 0x0, 96, 0x3}
    	case AFADDS:
    		return &inst{0x53, 0x0, 0x0, 0, 0x0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/check.go

    				}
    				canHaveAux = true
    			case auxCallOff:
    				canHaveAuxInt = true
    				fallthrough
    			case auxCall:
    				if ac, ok := v.Aux.(*AuxCall); ok {
    					if v.Op == OpStaticCall && ac.Fn == nil {
    						f.Fatalf("value %v has *AuxCall with nil Fn", v)
    					}
    				} else {
    					f.Fatalf("value %v has Aux type %T, want *AuxCall", v, v.Aux)
    				}
    				canHaveAux = true
    			case auxNameOffsetInt8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	var codeptr *ssa.Value   // ptr to target code (if dynamic)
    	var dextra *ssa.Value    // defer extra arg
    	var rcvr *ssa.Value      // receiver to set
    	fn := n.Fun
    	var ACArgs []*types.Type    // AuxCall args
    	var ACResults []*types.Type // AuxCall results
    	var callArgs []*ssa.Value   // For late-expansion, the args themselves (not stored, args to the call instead).
    
    	callABI := s.f.ABIDefault
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticinit/sched.go

    	// 	.   AS2-Rhs
    	// 	.   .   LITERAL-400 int tc(1) # x.go:18:14
    	// 	.   INLMARK Index:1 # +x.go:18:13
    	// 	INLCALL PTR-*T tc(1) # x.go:18:13
    	// 	INLCALL-Body
    	// 	.   BLOCK tc(1) # x.go:18:13
    	// 	.   BLOCK-List
    	// 	.   .   DCL tc(1) # x.go:18:13
    	// 	.   .   .   NAME-p.~R0 Class:PAUTO Offset:0 OnStack Used PTR-*T tc(1) # x.go:18:13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

                    }
                    bulkBuilder.add((DeleteRequestBuilder) builder);
                }
            }
            final RequestOptionCall<BulkRequestBuilder> builderCall = bulkList.getCall();
            if (builderCall != null) {
                builderCall.callback(bulkBuilder);
            }
    
            final BulkResponse response = bulkBuilder.execute().actionGet(bulkTimeout);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top