Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 252 for spills (3.74 sec)

  1. test/abi/uglyfib.go

    // parameter save area if they aren't saved or spilled
    // there, as appropriate.
    
    //go:registerparams
    //go:noinline
    func f(x int, xm1, xm2, p *int) {
    	var y = [2]int{x - 4, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    	g(*xm1, xm2, &x, p)   // xm1 is no longer live.
    	h(*xm2, &x, &y[0], p) // xm2 is no longer live, but was spilled.
    }
    
    //go:registerparams
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Splitter.java

      }
    
      /**
       * Returns a {@code MapSplitter} which splits entries based on this splitter, and splits entries
       * into keys and values using the specified separator.
       *
       * @since 10.0
       */
      public MapSplitter withKeyValueSeparator(String separator) {
        return withKeyValueSeparator(on(separator));
      }
    
      /**
       * Returns a {@code MapSplitter} which splits entries based on this splitter, and splits entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue16515.go

    // license that can be found in the LICENSE file.
    
    // issue 16515: spilled Duff-adjusted address may be invalid
    
    package main
    
    import "runtime"
    
    type T [62]int // DUFFZERO with non-zero adjustment on AMD64
    
    var sink interface{}
    
    //go:noinline
    func zero(x *T) {
    	// Two DUFFZEROs on the same address with a function call in between.
    	// Duff-adjusted address will be spilled and loaded
    
    	*x = T{} // DUFFZERO
    	runtime.GC()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 29 01:09:55 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/framepointer/framepointer.go

    		return nil, nil
    	}
    
    	// Find assembly files to work on.
    	var sfiles []string
    	for _, fname := range pass.OtherFiles {
    		if strings.HasSuffix(fname, ".s") && pass.Pkg.Path() != "runtime" {
    			sfiles = append(sfiles, fname)
    		}
    	}
    
    	for _, fname := range sfiles {
    		content, tf, err := analysisutil.ReadFile(pass, fname)
    		if err != nil {
    			return nil, err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/crypto/purego_test.go

    			}
    
    			pkg, err := context.Import(pkgName, "", 0)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if len(pkg.SFiles) == 0 {
    				continue
    			}
    			t.Errorf("package %s has purego assembly files on %s: %v", pkgName, GOARCH, pkg.SFiles)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/completion.go

    		"bash": runCompletionBash,
    		"zsh":  runCompletionZsh,
    	}
    )
    
    // GetSupportedShells returns a list of supported shells
    func GetSupportedShells() []string {
    	shells := []string{}
    	for s := range completionShells {
    		shells = append(shells, s)
    	}
    	return shells
    }
    
    // newCmdCompletion returns the "kubeadm completion" command
    func newCmdCompletion(out io.Writer, boilerPlate string) *cobra.Command {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/arch.go

    	// memory. Used in open-coded defer return path.
    	LoadRegResult func(s *State, f *ssa.Func, t *types.Type, reg int16, n *ir.Name, off int64) *obj.Prog
    
    	// SpillArgReg emits instructions that spill reg to n+off.
    	SpillArgReg func(pp *objw.Progs, p *obj.Prog, f *ssa.Func, t *types.Type, reg int16, n *ir.Name, off int64) *obj.Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. pkg/test/util/yml/parts.go

    // accidentally splitting in cases where yaml resources contain nested yaml (which
    // is indented).
    var splitRegex = regexp.MustCompile(`(^|\n)---`)
    
    // SplitYamlByKind splits the given YAML into parts indexed by kind.
    func SplitYamlByKind(content string) map[string]string {
    	cfgs := SplitString(content)
    	result := map[string]string{}
    	for _, cfg := range cfgs {
    		var typeMeta metav1.TypeMeta
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Splitter.java

      }
    
      /**
       * Returns a {@code MapSplitter} which splits entries based on this splitter, and splits entries
       * into keys and values using the specified separator.
       *
       * @since 10.0
       */
      public MapSplitter withKeyValueSeparator(String separator) {
        return withKeyValueSeparator(on(separator));
      }
    
      /**
       * Returns a {@code MapSplitter} which splits entries based on this splitter, and splits entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

                        String[] splits = testSuiteAndCase.
                            replace('[', ' ').
                            replace(']', ' ').
                            split("[. ]");
                        String testSuite;
                        String testCase;
                        if (OperatingSystem.current().isMacOsX()) {
                            testSuite = splits[2];
                            testCase = splits[3];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top