Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for new256 (0.14 sec)

  1. src/internal/types/testdata/check/builtins0.go

    	q := new(*float64)
    	_ = *p == **q
    	new /* ERROR "not used" */ (int)
            _ = &new /* ERROR "cannot take address" */ (int)
    
    	_ = new(int... /* ERROR "invalid use of ..." */ )
    }
    
    func new2() {
    	f1 := func() (x []int) { return }
    	_ = new(f0 /* ERROR "not a type" */ ())
    	_ = new(f1 /* ERROR "not a type" */ ())
    }
    
    func panic1() {
    	panic() // ERROR "not enough arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	avxEscape = 1 << 6
    
    	// P field - 2 bits
    	vex66 = 1 << 0
    	vexF3 = 2 << 0
    	vexF2 = 3 << 0
    	// L field - 1 bit
    	vexLZ  = 0 << 2
    	vexLIG = 0 << 2
    	vex128 = 0 << 2
    	vex256 = 1 << 2
    	// W field - 1 bit
    	vexWIG = 0 << 7
    	vexW0  = 0 << 7
    	vexW1  = 1 << 7
    	// M field - 5 bits, but mostly reserved; we can store up to 3
    	vex0F   = 1 << 3
    	vex0F38 = 2 << 3
    	vex0F3A = 3 << 3
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    	},
    	"crypto/sha1": {
    		{"BlockSize", Const, 0},
    		{"New", Func, 0},
    		{"Size", Const, 0},
    		{"Sum", Func, 2},
    	},
    	"crypto/sha256": {
    		{"BlockSize", Const, 0},
    		{"New", Func, 0},
    		{"New224", Func, 0},
    		{"Size", Const, 0},
    		{"Size224", Const, 0},
    		{"Sum224", Func, 2},
    		{"Sum256", Func, 2},
    	},
    	"crypto/sha512": {
    		{"BlockSize", Const, 0},
    		{"New", Func, 0},
    		{"New384", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg crypto/sha256, const BlockSize ideal-int
    pkg crypto/sha256, const Size ideal-int
    pkg crypto/sha256, const Size224 ideal-int
    pkg crypto/sha256, func New() hash.Hash
    pkg crypto/sha256, func New224() hash.Hash
    pkg crypto/sha512, const BlockSize ideal-int
    pkg crypto/sha512, const Size ideal-int
    pkg crypto/sha512, const Size384 ideal-int
    pkg crypto/sha512, func New() hash.Hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top