Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0x2000000000000000000000000000 (2.16 sec)

  1. src/math/big/int_test.go

    	{"1", 0, 1},
    	{"1", 1, 0},
    	{"-1", 0, 1},
    	{"-1", 200, 1},
    	{"0x2000000000000000000000000000", 108, 0},
    	{"0x2000000000000000000000000000", 109, 1},
    	{"0x2000000000000000000000000000", 110, 0},
    	{"-0x2000000000000000000000000001", 108, 1},
    	{"-0x2000000000000000000000000001", 109, 0},
    	{"-0x2000000000000000000000000001", 110, 1},
    }
    
    func TestBitSet(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. src/debug/pe/file_test.go

    	// (see https://golang.org/issue/30250 and https://golang.org/issue/32126 for details).
    	// Input generated by gofuzz
    	data := []byte("\x00\x00\x00\x0000000\x00\x00\x00\x00\x00\x00\x000000" +
    		"00000000000000000000" +
    		"000000000\x00\x00\x0000000000" +
    		"00000000000000000000" +
    		"0000000000000000")
    
    	_, err := NewFile(bytes.NewReader(data))
    	if err == nil {
    		t.Fatal("NewFile succeeded unexpectedly")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
Back to top