Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for 1e0i (0.19 sec)

  1. src/math/pow10.go

    var pow10tab = [...]float64{
    	1e00, 1e01, 1e02, 1e03, 1e04, 1e05, 1e06, 1e07, 1e08, 1e09,
    	1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19,
    	1e20, 1e21, 1e22, 1e23, 1e24, 1e25, 1e26, 1e27, 1e28, 1e29,
    	1e30, 1e31,
    }
    
    // pow10postab32 stores the pre-computed value for 10**(i*32) at index i.
    var pow10postab32 = [...]float64{
    	1e00, 1e32, 1e64, 1e96, 1e128, 1e160, 1e192, 1e224, 1e256, 1e288,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner_test.go

    		{ImagLit, "0.i", "0.i", ""},
    		{ImagLit, ".123i", ".123i", ""},
    		{ImagLit, "123.123i", "123.123i", ""},
    		{ImagLit, "123e+0i", "123e+0i", ""},
    		{ImagLit, "123.E-10i", "123.E-10i", ""},
    		{ImagLit, ".123E+10i", ".123E+10i", ""},
    
    		// hexadecimals
    		{IntLit, "0x0", "0x0", ""},
    		{IntLit, "0x1234", "0x1234", ""},
    		{IntLit, "0xcafef00d", "0xcafef00d", ""},
    		{IntLit, "0XCAFEF00D", "0XCAFEF00D", ""},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    		{token.IMAG, "0.i", "0.i", ""},
    		{token.IMAG, ".123i", ".123i", ""},
    		{token.IMAG, "123.123i", "123.123i", ""},
    		{token.IMAG, "123e+0i", "123e+0i", ""},
    		{token.IMAG, "123.E-10i", "123.E-10i", ""},
    		{token.IMAG, ".123E+10i", ".123E+10i", ""},
    
    		// hexadecimals
    		{token.INT, "0x0", "0x0", ""},
    		{token.INT, "0x1234", "0x1234", ""},
    		{token.INT, "0xcafef00d", "0xcafef00d", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. src/go/constant/value_test.go

    	{"0e9999999999", "0", "0"},   // issue #16176
    	{"-6e-1886451601", "0", "0"}, // issue #20228
    
    	// Complex
    	{"0i", "(0 + 0i)", "(0 + 0i)"},
    	{"-0i", "(0 + 0i)", "(0 + 0i)"},
    	{"10i", "(0 + 10i)", "(0 + 10i)"},
    	{"-10i", "(0 + -10i)", "(0 + -10i)"},
    	{"1e9999i", "(0 + 1e+9999i)", "(0 + 0x.f8d4a9da224650a8cb2959e10d985ad92adbd44c62917e608b1f24c0e1b76b6f61edffeb15c135a4b601637315f7662f325f82325422b244286a07663c9415d2p+33216i)"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/css/fonts.css

      font-weight: 100;
      src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrEz4dL-vwnYh2eg.woff2) format('woff2');
      unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    /* latin */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 100;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/literals.go

    	assert(1_234i == 1234i)
    	assert(1_234_567i == 1234567i)
    
    	assert(0.i == 0i)
    	assert(123.i == 123i)
    	assert(0123.i == 123i)
    
    	assert(0.e+1i == 0i)
    	assert(123.E-1_0i == 123e-10i)
    	assert(01_23.e123i == 123e123i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/panicprint.go

    type MyUint16 uint16
    type MyUint32 uint32
    type MyUint64 uint64
    type MyUintptr uintptr
    
    func panicCustomComplex64() {
    	panic(MyComplex64(0.11 + 3i))
    }
    
    func panicCustomComplex128() {
    	panic(MyComplex128(32.1 + 10i))
    }
    
    func panicCustomString() {
    	panic(MyString("Panic\nline two"))
    }
    
    func panicCustomBool() {
    	panic(MyBool(true))
    }
    
    func panicCustomInt() {
    	panic(MyInt(93))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/math/big/ratconv_test.go

    	{in: "4/3."},
    	{in: "4/"},
    	{in: "13e-9223372036854775808"}, // CVE-2022-23772
    
    	// valid
    	{"0", "0", true},
    	{"-0", "0", true},
    	{"1", "1", true},
    	{"-1", "-1", true},
    	{"1.", "1", true},
    	{"1e0", "1", true},
    	{"1.e1", "10", true},
    	{"-0.1", "-1/10", true},
    	{"-.1", "-1/10", true},
    	{"2/4", "1/2", true},
    	{".25", "1/4", true},
    	{"-1/5", "-1/5", true},
    	{"8129567.7690E14", "812956776900000000000", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  9. src/fmt/scan_test.go

    	{"2345678\n", &bytesVal, []byte("2345678")},
    	{"(3.4e1-2i)\n", &complex128Val, 3.4e1 - 2i},
    	{"-3.45e1-3i\n", &complex64Val, complex64(-3.45e1 - 3i)},
    	{"-.45e1-1e2i\n", &complex128Val, complex128(-.45e1 - 100i)},
    	{"-.4_5e1-1E2i\n", &complex128Val, complex128(-.45e1 - 100i)},
    	{"0x1.0p1+0x1.0P2i\n", &complex128Val, complex128(2 + 4i)},
    	{"-0x1p1-0x1p2i\n", &complex128Val, complex128(-2 - 4i)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. src/text/scanner/scanner_test.go

    	{Float, ".42"},
    	{Float, ".0123456789"},
    	{Float, "0.0"},
    	{Float, "1.0"},
    	{Float, "42.0"},
    	{Float, "01234567890.0"},
    	{Float, "0e0"},
    	{Float, "1e0"},
    	{Float, "42e0"},
    	{Float, "01234567890e0"},
    	{Float, "0E0"},
    	{Float, "1E0"},
    	{Float, "42E0"},
    	{Float, "01234567890E0"},
    	{Float, "0e+10"},
    	{Float, "1e-10"},
    	{Float, "42e+10"},
    	{Float, "01234567890e-10"},
    	{Float, "0E+10"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
Back to top