Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for Vector3 (0.09 sec)

  1. src/crypto/internal/hpke/testdata/rfc9180-vectors.json

    Roland Shoemaker <******@****.***> 1715710616 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/crypto/ecdh/ecdh_test.go

    			t.Errorf("expected GenerateKey to consume at most %v bytes, got %v", expected, got)
    		}
    	})
    }
    
    var vectors = map[ecdh.Curve]struct {
    	PrivateKey, PublicKey string
    	PeerPublicKey         string
    	SharedSecret          string
    }{
    	// NIST vectors from CAVS 14.1, ECC CDH Primitive (SP800-56A).
    	ecdh.P256(): {
    		PrivateKey: "7d7dc5f71eb29ddaf80d6214632eeae03d9058af1fb6d22ed80badb62bc1a534",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAVX512GFNI       bool // Advanced vector extension 512 Galois field New Instructions
    	HasAVX512VAES       bool // Advanced vector extension 512 Vector AES instructions
    	HasAVX512VBMI2      bool // Advanced vector extension 512 Vector Byte Manipulation Instructions 2
    	HasAVX512BITALG     bool // Advanced vector extension 512 Bit Algorithms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/internal/notsha256/sha256block_ppc64x.s

    DATA  ·kcon+0x418(SB)/8, $0x1011121300010203
    DATA  ·kcon+0x420(SB)/8, $0x1011121310111213
    DATA  ·kcon+0x428(SB)/8, $0x0405060700010203
    DATA  ·kcon+0x430(SB)/8, $0x1011121308090a0b
    DATA  ·kcon+0x438(SB)/8, $0x0405060700010203
    #else
    DATA  ·kcon+0x410(SB)/8, $0x1011121300010203
    DATA  ·kcon+0x418(SB)/8, $0x1011121310111213 // permutation control vectors
    DATA  ·kcon+0x420(SB)/8, $0x0405060700010203
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_VR9                  = 83  // Vector register 9
    	PT_VR10                 = 84  // Vector register 10
    	PT_VR11                 = 85  // Vector register 11
    	PT_VR12                 = 86  // Vector register 12
    	PT_VR13                 = 87  // Vector register 13
    	PT_VR14                 = 88  // Vector register 14
    	PT_VR15                 = 89  // Vector register 15
    	PT_VR16                 = 90  // Vector register 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. src/math/big/arith_test.go

    		arg = argVW{z, x, y, 0}
    		testFunVWext(t, "addVW, vector of max uint", addVW, addVW_g, arg)
    
    		// vector of '0', to force carry flag set in each 'sub'
    		x = makeWordVec(0, n)
    		arg = argVW{z, x, 1, 0}
    		testFunVWext(t, "subVW, vector of zero", subVW, subVW_g, arg)
    	}
    }
    
    type argVU struct {
    	d  []Word // d is a Word slice, the input parameters x and z come from this array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  7. src/crypto/internal/mlkem768/mlkem768_test.go

    	return dk.EncapsulationKey(), dk
    }
    
    var millionFlag = flag.Bool("million", false, "run the million vector test")
    
    // TestPQCrystalsAccumulated accumulates the 10k vectors generated by the
    // reference implementation and checks the hash of the result, to avoid checking
    // in 150MB of test vectors.
    func TestPQCrystalsAccumulated(t *testing.T) {
    	n := 10000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/runtime/os_linux.go

    		exit(1)
    	}
    }
    
    const (
    	_AT_NULL     = 0  // End of vector
    	_AT_PAGESZ   = 6  // System physical page size
    	_AT_PLATFORM = 15 // string identifying platform
    	_AT_HWCAP    = 16 // hardware capability bit vector
    	_AT_SECURE   = 23 // secure mode boolean
    	_AT_RANDOM   = 25 // introduced in 2.6.29
    	_AT_HWCAP2   = 26 // hardware capability bit vector 2
    )
    
    var procAuxv = []byte("/proc/self/auxv\x00")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. src/archive/tar/writer_test.go

    			ops     fileOps
    			wantCnt int64
    			wantErr error
    		}
    		testClose struct { // Close() == wantErr
    			wantErr error
    		}
    		testFnc any // testHeader | testWrite | testReadFrom | testClose
    	)
    
    	vectors := []struct {
    		file  string // Optional filename of expected output
    		tests []testFnc
    	}{{
    		// The writer test file was produced with this command:
    		// tar (GNU tar) 1.26
    		//   ln -s small.txt link.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    	CBitFieldMaskBit62 = 0x2
    	CBitFieldMaskBit63 = 0x1
    )
    
    type SockaddrStorage struct {
    	Family uint16
    	Data   [118]byte
    	_      uint64
    }
    
    type HDGeometry struct {
    	Heads     uint8
    	Sectors   uint8
    	Cylinders uint16
    	Start     uint64
    }
    
    type Statfs_t struct {
    	Type    uint32
    	Bsize   uint32
    	Blocks  uint64
    	Bfree   uint64
    	Bavail  uint64
    	Files   uint64
    	Ffree   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top