Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for 1e0 (0.03 sec)

  1. src/go/printer/testdata/declarations.input

    const (
    	_ = "foobar"
    	_ = "a۰۱۸"
    	_ = "foo६४"
    	_ = "bar9876"
    	_ = 0
    	_ = 1
    	_ = 123456789012345678890
    	_ = 01234567
    	_ = 0xcafebabe
    	_ = 0.
    	_ = .0
    	_ = 3.14159265
    	_ = 1e0
    	_ = 1e+100
    	_ = 1e-100
    	_ = 2.71828e-1000
    	_ = 0i
    	_ = 1i
    	_ = 012345678901234567889i
    	_ = 123456789012345678890i
    	_ = 0.i
    	_ = .0i
    	_ = 3.14159265i
    	_ = 1e0i
    	_ = 1e+100i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. src/math/big/nat_test.go

    		got := string(fibo(n).utoa(10))
    		if got != want {
    			t.Errorf("fibo(%d) failed: got %s want %s", n, got, want)
    		}
    	}
    }
    
    func BenchmarkFibo(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		fibo(1e0)
    		fibo(1e1)
    		fibo(1e2)
    		fibo(1e3)
    		fibo(1e4)
    		fibo(1e5)
    	}
    }
    
    var bitTests = []struct {
    	x    string
    	i    uint
    	want uint
    }{
    	{"0", 0, 0},
    	{"0", 1, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	0x2b800000, 0x2b8000b0, 0x2bf00000, 0x2bf0009c,
    	0x2bf0009d, 0x2c000000, 0x2c0000b7, 0x2c200000,
    	0x2c20004b, 0x2c400000, 0x2c4000a5, 0x2c500000,
    	0x2c5000a5, 0x2c700000, 0x2c7000b9, 0x2d100000,
    	// Entry 1E0 - 1FF
    	0x2d1000a5, 0x2d100130, 0x2e900000, 0x2e9000a5,
    	0x2ed00000, 0x2ed000cd, 0x2f100000, 0x2f1000c0,
    	0x2f200000, 0x2f2000d2, 0x2f400000, 0x2f400052,
    	0x2ff00000, 0x2ff000c3, 0x30400000, 0x3040009a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  4. src/strconv/eisel_lemire.go

    	{0x645A1CAC083126E9, 0x83126E978D4FDF3B}, // 1e-3
    	{0x3D70A3D70A3D70A3, 0xA3D70A3D70A3D70A}, // 1e-2
    	{0xCCCCCCCCCCCCCCCC, 0xCCCCCCCCCCCCCCCC}, // 1e-1
    	{0x0000000000000000, 0x8000000000000000}, // 1e0
    	{0x0000000000000000, 0xA000000000000000}, // 1e1
    	{0x0000000000000000, 0xC800000000000000}, // 1e2
    	{0x0000000000000000, 0xFA00000000000000}, // 1e3
    	{0x0000000000000000, 0x9C40000000000000}, // 1e4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
Back to top