Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for two64r (0.26 sec)

  1. src/cmd/compile/internal/test/shift_test.go

    		}
    	}
    }
    
    //go:noinline
    func two64l(x int64) int64 {
    	return x << 1 << 1
    }
    
    //go:noinline
    func two64r(x int64) int64 {
    	return x >> 1 >> 1
    }
    
    //go:noinline
    func two64ur(x uint64) uint64 {
    	return x >> 1 >> 1
    }
    
    //go:noinline
    func two32l(x int32) int32 {
    	return x << 1 << 1
    }
    
    //go:noinline
    func two32r(x int32) int32 {
    	return x >> 1 >> 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. test/float_lit3.go

    package main
    
    // See float_lit2.go for motivation for these values.
    const (
    	two24   = 1.0 * (1 << 24)
    	two53   = 1.0 * (1 << 53)
    	two64   = 1.0 * (1 << 64)
    	two128  = two64 * two64
    	two256  = two128 * two128
    	two512  = two256 * two256
    	two768  = two512 * two256
    	two1024 = two512 * two512
    
    	ulp32 = two128 / two24
    	max32 = two128 - ulp32
    
    	ulp64 = two1024 / two53
    	max64 = two1024 - ulp64
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 03 16:24:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. test/float_lit2.go

    	{0x7f7fffff, float32(max32), float32(max32 - ulp32 + ulp32/2 + ulp32/two64), "max32 - ulp32 + ulp32/2 + ulp32/two64"},
    	{0x7f7fffff, float32(max32), float32(max32 - ulp32/2 + ulp32/two64), "max32 - ulp32/2 + ulp32/two64"},
    	{0x7f7fffff, float32(max32), float32(max32), "max32"},
    	{0x7f7fffff, float32(max32), float32(max32 + ulp32/2 - ulp32/two64), "max32 + ulp32/2 - ulp32/two64"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:39:47 UTC 2016
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/arith_test.go

    	var (
    		two4  int64 = 1 << 4
    		two15 int64 = 1 << 15
    		two26 int64 = 1 << 26
    		two34 int64 = 1 << 34
    		two48 int64 = 1 << 48
    		two57 int64 = 1 << 57
    	)
    	var xs = []int64{two4, two4 + 3, -3 * two4, -3*two4 + 1,
    		two15, two15 + 3, -3 * two15, -3*two15 + 1,
    		two26, two26 + 37, -5 * two26, -5*two26 + 2,
    		two34, two34 + 356, -7 * two34, -7*two34 + 13,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  5. src/cmd/api/testdata/src/pkg/p2/golden.txt

    pkg p2, func F() string
    pkg p2, func F //deprecated
    pkg p2, func G() Twoer
    pkg p2, func NewError(string) error
    pkg p2, type Twoer interface { PackageTwoMeth }
    pkg p2, type Twoer interface, PackageTwoMeth()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 265 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedArtifactsApiIntegrationTest.groovy

                        var2 {
                            artifact twoJar
                            attributes.attribute(flavor, 'two')
                        }
                    }
                }
            }
        }
        dependencies {
            compile project(':b')
        }
    }
    project(':b') {
        task oneJar(type: Jar) { archiveBaseName = 'b1' }
        task twoJar(type: Jar) { archiveBaseName = 'b2' }
        configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/cmd/api/testdata/src/pkg/p2/p2.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p2
    
    type Twoer interface {
    	// Deprecated: No good.
    	PackageTwoMeth()
    }
    
    // Deprecated: No good.
    func F() string {}
    
    func G() Twoer {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 337 bytes
    - Viewed (0)
  8. src/debug/dwarf/typeunit.go

    			return err
    		}
    		asize := b.uint8()
    		sig := b.uint64()
    
    		var toff uint32
    		if !dwarf64 {
    			toff = b.uint32()
    		} else {
    			to64 := b.uint64()
    			if to64 != uint64(uint32(to64)) {
    				b.error("type unit type offset overflow")
    				return b.err
    			}
    			toff = uint32(to64)
    		}
    
    		boff := b.off
    		d.typeSigs[sig] = &typeUnit{
    			unit: unit{
    				base:   base,
    				off:    boff,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Lsh64x(32|16|8) [c] x y) => (Lsh64x64 [c] x (ZeroExt(32|16|8)to64 y))
    
    (Lsh32x64 ...) => (Lsh64x64 ...)
    (Lsh32x(32|16|8) [c] x y) => (Lsh64x64 [c] x (ZeroExt(32|16|8)to64 y))
    
    (Lsh16x64 ...) => (Lsh64x64 ...)
    (Lsh16x(32|16|8) [c] x y) => (Lsh64x64 [c] x (ZeroExt(32|16|8)to64 y))
    
    (Lsh8x64 ...) => (Lsh64x64 ...)
    (Lsh8x(32|16|8) [c] x y) => (Lsh64x64 [c] x (ZeroExt(32|16|8)to64 y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, var ChecksumError error
    pkg p1, var SIPtr *SI
    pkg p1, var SIPtr2 *SI
    pkg p1, var SIVal SI
    pkg p1, var StrConv string
    pkg p1, var V string
    pkg p1, var V1 uint64
    pkg p1, var V2 p2.Twoer
    pkg p1, var VError Error
    pkg p1, var VError //deprecated
    pkg p1, var X I
    pkg p1, var X0 int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top