Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OnesCount16 (0.26 sec)

  1. test/codegen/mathbits.go

    	// ppc64x:"POPCNTW"
    	// wasm:"I64Popcnt"
    	return bits.OnesCount32(n)
    }
    
    func OnesCount16(n uint16) int {
    	// amd64/v2:-".*x86HasPOPCNT" amd64/v3:-".*x86HasPOPCNT"
    	// amd64:"POPCNTL"
    	// arm64:"VCNT","VUADDLV"
    	// s390x:"POPCNT"
    	// ppc64x:"POPCNTW"
    	// wasm:"I64Popcnt"
    	return bits.OnesCount16(n)
    }
    
    func OnesCount8(n uint8) int {
    	// s390x:"POPCNT"
    	// ppc64x:"POPCNTB"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			return s.newValue1(ssa.OpPopCount32, types.Types[types.TINT], args[0])
    		},
    		sys.PPC64, sys.ARM64, sys.S390X, sys.Wasm)
    	addF("math/bits", "OnesCount16",
    		makeOnesCountAMD64(ssa.OpPopCount16),
    		sys.AMD64)
    	addF("math/bits", "OnesCount16",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpPopCount16, types.Types[types.TINT], args[0])
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Len16", Func, 9},
    		{"Len32", Func, 9},
    		{"Len64", Func, 9},
    		{"Len8", Func, 9},
    		{"Mul", Func, 12},
    		{"Mul32", Func, 12},
    		{"Mul64", Func, 12},
    		{"OnesCount", Func, 9},
    		{"OnesCount16", Func, 9},
    		{"OnesCount32", Func, 9},
    		{"OnesCount64", Func, 9},
    		{"OnesCount8", Func, 9},
    		{"Rem", Func, 14},
    		{"Rem32", Func, 14},
    		{"Rem64", Func, 14},
    		{"Reverse", Func, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top