Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 764 for falign (0.52 sec)

  1. src/cmd/link/link_test.go

    	src := filepath.Join(tmpdir, "go.mod")
    	err := os.WriteFile(src, []byte("module cmd/link/TestFuncAlign/falign"), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    	src = filepath.Join(tmpdir, "falign.go")
    	err = os.WriteFile(src, []byte(testFuncAlignSrc), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    	src = filepath.Join(tmpdir, "falign.s")
    	err = os.WriteFile(src, []byte(testFuncAlignAsmSrc), 0666)
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    				// PC.
    				switch p.Pc & 31 {
    				case 28: // 32B crossing
    					falign = 64
    				case 12: // 16B crossing
    					if falign < 64 {
    						falign = 32
    					}
    				}
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    	}
    
    	c.cursym.Size = pc
    	c.cursym.Func().Align = falign
    	c.cursym.Grow(c.cursym.Size)
    
    	// lay out the code, emitting code and data relocations.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/crypto/subtle/xor_test.go

    	for n := 1; n <= 1024; n++ {
    		if n > 16 && testing.Short() {
    			n += n >> 3
    		}
    		for alignP := 0; alignP < 8; alignP++ {
    			for alignQ := 0; alignQ < 8; alignQ++ {
    				for alignD := 0; alignD < 8; alignD++ {
    					p := make([]byte, alignP+n, alignP+n+10)[alignP:]
    					q := make([]byte, alignQ+n, alignQ+n+10)[alignQ:]
    					if n&1 != 0 {
    						p = p[:n]
    					} else {
    						q = q[:n]
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:51:19 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/failing-test.yaml

    name: Failing Test
    description: Report continuously failing tests or jobs in Kubernetes CI
    labels: kind/failing-test
    body:
      - type: textarea
        id: jobs
        attributes:
          label: Which jobs are failing?
          placeholder: |
            Please only use this template for submitting reports about continuously failing tests or jobs in Kubernetes CI.
        validations:
          required: true
    
      - type: textarea
        id: tests
        attributes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/x86/galign.go

    Austin Clements <******@****.***> 1627328662 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 887 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/loong64/galign.go

    Guoqi Chen <******@****.***> 1692101433 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:16 UTC 2023
    - 649 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go

    package unix
    
    // Round the length of a raw sockaddr up to align it properly.
    func cmsgAlignOf(salen int) int {
    	salign := SizeofPtr
    	if SizeofPtr == 8 && !supportsABI(_dragonflyABIChangeVersion) {
    		// 64-bit Dragonfly before the September 2019 ABI changes still requires
    		// 32-bit aligned access to network subsystem.
    		salign = 4
    	}
    	return (salen + salign - 1) & ^(salign - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 544 bytes
    - Viewed (0)
  8. src/syscall/sockcmsg_unix_other.go

    		// subsystem.
    		if sizeofPtr == 8 {
    			salign = 4
    		}
    	case "netbsd", "openbsd":
    		// NetBSD and OpenBSD armv7 require 64-bit alignment.
    		if runtime.GOARCH == "arm" {
    			salign = 8
    		}
    		// NetBSD aarch64 requires 128-bit alignment.
    		if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
    			salign = 16
    		}
    	}
    
    	return (salen + salign - 1) & ^(salign - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/arm64/galign.go

    Austin Clements <******@****.***> 1627328662 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 666 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/mips64/galign.go

    Austin Clements <******@****.***> 1627328662 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 718 bytes
    - Viewed (0)
Back to top