Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Wn (0.14 sec)

  1. src/math/rand/v2/export_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package rand
    
    func GetNormalDistributionParameters() (float64, [128]uint32, [128]float32, [128]float32) {
    	return rn, kn, wn, fn
    }
    
    func GetExponentialDistributionParameters() (float64, [256]uint32, [256]float32, [256]float32) {
    	return re, ke, we, fe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:08:37 UTC 2023
    - 414 bytes
    - Viewed (0)
  2. src/strings/replace.go

    		if match {
    			wn, err = sw.WriteString(s[last:i])
    			n += wn
    			if err != nil {
    				return
    			}
    			wn, err = sw.WriteString(val)
    			n += wn
    			if err != nil {
    				return
    			}
    			i += keylen
    			last = i
    			continue
    		}
    		i++
    	}
    	if last != len(s) {
    		wn, err = sw.WriteString(s[last:])
    		n += wn
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	{0xffe0fc00, 0x1ac05000, CRC32CB, instArgs{arg_Wd, arg_Wn, arg_Wm}, nil},
    	// CRC32CH <Wd>, <Wn>, <Wm>
    	{0xffe0fc00, 0x1ac05400, CRC32CH, instArgs{arg_Wd, arg_Wn, arg_Wm}, nil},
    	// CRC32CW <Wd>, <Wn>, <Wm>
    	{0xffe0fc00, 0x1ac05800, CRC32CW, instArgs{arg_Wd, arg_Wn, arg_Wm}, nil},
    	// CRC32CX <Wd>, <Wn>, <Xm>
    	{0xffe0fc00, 0x9ac05c00, CRC32CX, instArgs{arg_Wd, arg_Wn, arg_Xm}, nil},
    	// CSEL <Wd>, <Wn>, <Wm>, <cond>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"CRC32B, CRC32H, CRC32W, CRC32X","Bits":"0|0|0|1|1|0|1|0|1|1|0|Rm:5|0|1|0|0|01:2|Rn:5|Rd:5","Arch":"CRC32H variant","Syntax":"CRC32H <Wd>, <Wn>, <Wm>","Code":"","Alias":""},
    {"Name":"CRC32B, CRC32H, CRC32W, CRC32X","Bits":"0|0|0|1|1|0|1|0|1|1|0|Rm:5|0|1|0|0|10:2|Rn:5|Rd:5","Arch":"CRC32W variant","Syntax":"CRC32W <Wd>, <Wn>, <Wm>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  5. src/math/rand/export_test.go

    package rand
    
    func Int31nForTest(r *Rand, n int32) int32 {
    	return r.int31n(n)
    }
    
    func GetNormalDistributionParameters() (float64, [128]uint32, [128]float32, [128]float32) {
    	return rn, kn, wn, fn
    }
    
    func GetExponentialDistributionParameters() (float64, [256]uint32, [256]float32, [256]float32) {
    	return re, ke, we, fe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 28 16:06:21 UTC 2021
    - 482 bytes
    - Viewed (0)
  6. src/math/rand/rand_test.go

    	if i := compareUint32Slices(kn[0:], testKn); i >= 0 {
    		t.Errorf("kn disagrees at index %v; %v != %v", i, kn[i], testKn[i])
    	}
    	if i := compareFloat32Slices(wn[0:], testWn); i >= 0 {
    		t.Errorf("wn disagrees at index %v; %v != %v", i, wn[i], testWn[i])
    	}
    	if i := compareFloat32Slices(fn[0:], testFn); i >= 0 {
    		t.Errorf("fn disagrees at index %v; %v != %v", i, fn[i], testFn[i])
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. src/math/rand/v2/normal.go

    //
    //	sample = NormFloat64() * desiredStdDev + desiredMean
    func (r *Rand) NormFloat64() float64 {
    	for {
    		u := r.Uint64()
    		j := int32(u) // Possibly negative
    		i := u >> 32 & 0x7F
    		x := float64(j) * float64(wn[i])
    		if absInt32(j) < kn[i] {
    			// This case should be hit better than 99% of the time.
    			return x
    		}
    
    		if i == 0 {
    			// This extra work is only required for the base strip.
    			for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:08:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. src/math/rand/normal.go

    // adjust the output using:
    //
    //	sample = NormFloat64() * desiredStdDev + desiredMean
    func (r *Rand) NormFloat64() float64 {
    	for {
    		j := int32(r.Uint32()) // Possibly negative
    		i := j & 0x7F
    		x := float64(j) * float64(wn[i])
    		if absInt32(j) < kn[i] {
    			// This case should be hit better than 99% of the time.
    			return x
    		}
    
    		if i == 0 {
    			// This extra work is only required for the base strip.
    			for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/math/rand/v2/rand_test.go

    	if i := compareUint32Slices(kn[0:], testKn); i >= 0 {
    		t.Errorf("kn disagrees at index %v; %v != %v", i, kn[i], testKn[i])
    	}
    	if i := compareFloat32Slices(wn[0:], testWn); i >= 0 {
    		t.Errorf("wn disagrees at index %v; %v != %v", i, wn[i], testWn[i])
    	}
    	if i := compareFloat32Slices(fn[0:], testFn); i >= 0 {
    		t.Errorf("fn disagrees at index %v; %v != %v", i, fn[i], testFn[i])
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-ExportKeyingMaterial

    00000030  16 03 03 00 40 82 78 f0  1e e6 03 20 67 66 4e d6  |....@.x.... gfN.|
    00000040  93 25 69 9e 38 c6 dd 17  92 02 18 7f 5f 9c 9c f0  |.%i.8......._...|
    00000050  a3 f7 45 d3 ba 82 e3 01  38 e5 4f cf 8b 0e 77 6e  |..E.....8.O...wn|
    00000060  91 99 83 e0 f1 3d e8 a1  39 d4 ea b3 2e 1c 67 59  |.....=..9.....gY|
    00000070  c5 5d 83 30 dc                                    |.].0.|
    >>> Flow 4 (server to client)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top