Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 81 (0.1 sec)

  1. src/cmd/compile/internal/typecheck/builtin.go

    	{"deferrangefunc", funcTag, 74},
    	{"rand32", funcTag, 75},
    	{"makemap64", funcTag, 77},
    	{"makemap", funcTag, 78},
    	{"makemap_small", funcTag, 79},
    	{"mapaccess1", funcTag, 80},
    	{"mapaccess1_fast32", funcTag, 81},
    	{"mapaccess1_fast64", funcTag, 82},
    	{"mapaccess1_faststr", funcTag, 83},
    	{"mapaccess1_fat", funcTag, 84},
    	{"mapaccess2", funcTag, 85},
    	{"mapaccess2_fast32", funcTag, 86},
    	{"mapaccess2_fast64", funcTag, 87},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/magic.go

    	// Calculate the multiplicative inverse via Newton's method.
    	// Quadratic convergence doubles the number of correct bits per iteration.
    	m := d0            // initial guess correct to 3-bits d0*d0 mod 8 == 1
    	m = m * (2 - m*d0) // 6-bits
    	m = m * (2 - m*d0) // 12-bits
    	m = m * (2 - m*d0) // 24-bits
    	m = m * (2 - m*d0) // 48-bits
    	m = m * (2 - m*d0) // 96-bits >= 64-bits
    	m = m & mask
    
    	max := mask / d
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/loopbce.go

    	}
    	b.Func.Warnl(b.Pos, "Induction variable: limits %v%v,%v%v, increment %d%s", mb1, mlim1, mlim2, mb2, inc, extra)
    }
    
    func minSignedValue(t *types.Type) int64 {
    	return -1 << (t.Size()*8 - 1)
    }
    
    func maxSignedValue(t *types.Type) int64 {
    	return 1<<((t.Size()*8)-1) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcweb/vcweb.go

    var gitConfig = `
    [user]
    	name = Go Gopher
    	email = ******@****.***
    [init]
    	defaultBranch = main
    [core]
    	eol = lf
    [gui]
    	encoding = utf-8
    `[1:]
    
    // hgrc contains a ~/.hgrc file that attempts to provide
    // deterministic, platform-agnostic behavior for the 'hg' command.
    var hgrc = `
    [ui]
    username=Go Gopher <******@****.***>
    [phases]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/fp_test.go

    	fail64bool(s, f, nan, nan, result&1 == 1)
    
    	fail64(s, g, zero, zero, ev64[result>>16&1])
    	fail64(s, g, zero, one, ev64[result>>12&1])
    	fail64(s, g, zero, inf, ev64[result>>8&1])
    	fail64(s, g, zero, nan, ev64[result>>4&1])
    	fail64(s, g, nan, nan, ev64[result>>0&1])
    
    	{
    		zero := float32(zero)
    		one := float32(one)
    		inf := float32(inf)
    		nan := float32(nan)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
Back to top