Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for 0xE000 (0.8 sec)

  1. src/debug/pe/file_test.go

    			{".debug_info", 0xe22, 0xb000, 0x1000, 0x2400, 0x0, 0x0, 0x0, 0x0, 0x42100000},
    			{".debug_abbrev", 0x157, 0xc000, 0x200, 0x3400, 0x0, 0x0, 0x0, 0x0, 0x42100000},
    			{".debug_line", 0x144, 0xd000, 0x200, 0x3600, 0x0, 0x0, 0x0, 0x0, 0x42100000},
    			{".debug_frame", 0x34, 0xe000, 0x200, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x42300000},
    			{".debug_loc", 0x38, 0xf000, 0x200, 0x3a00, 0x0, 0x0, 0x0, 0x0, 0x42100000},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. src/unicode/utf8/utf8_test.go

    }
    
    var utf8map = []Utf8Map{
    	{0x0000, "\x00"},
    	{0x0001, "\x01"},
    	{0x007e, "\x7e"},
    	{0x007f, "\x7f"},
    	{0x0080, "\xc2\x80"},
    	{0x0081, "\xc2\x81"},
    	{0x00bf, "\xc2\xbf"},
    	{0x00c0, "\xc3\x80"},
    	{0x00c1, "\xc3\x81"},
    	{0x00c8, "\xc3\x88"},
    	{0x00d0, "\xc3\x90"},
    	{0x00e0, "\xc3\xa0"},
    	{0x00f0, "\xc3\xb0"},
    	{0x00f8, "\xc3\xb8"},
    	{0x00ff, "\xc3\xbf"},
    	{0x0100, "\xc4\x80"},
    	{0x07ff, "\xdf\xbf"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/scanner.go

    			return false
    		}
    		// d < base
    		x = x*base + d
    		s.nextch()
    	}
    
    	if x > max && base == 8 {
    		s.errorf("octal escape value %d > 255", x)
    		return false
    	}
    
    	if x > max || 0xD800 <= x && x < 0xE000 /* surrogate range */ {
    		s.errorf("escape is invalid Unicode code point %#U", x)
    		return false
    	}
    
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	BS1                              = 0x8000
    	BSDLY                            = 0x8000
    	CBAUD                            = 0xff
    	CBAUDEX                          = 0x0
    	CIBAUD                           = 0xff0000
    	CLOCAL                           = 0x8000
    	CR1                              = 0x1000
    	CR2                              = 0x2000
    	CR3                              = 0x3000
    	CRDLY                            = 0x3000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. src/syscall/zerrors_aix_ppc64.go

    	S_IEXEC                       = 0x40
    	S_IFBLK                       = 0x6000
    	S_IFCHR                       = 0x2000
    	S_IFDIR                       = 0x4000
    	S_IFIFO                       = 0x1000
    	S_IFJOURNAL                   = 0x10000
    	S_IFLNK                       = 0xa000
    	S_IFMPX                       = 0x2200
    	S_IFMT                        = 0xf000
    	S_IFPDIR                      = 0x4000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	BS1                              = 0x8000
    	BSDLY                            = 0x8000
    	CBAUD                            = 0xff
    	CBAUDEX                          = 0x0
    	CIBAUD                           = 0xff0000
    	CLOCAL                           = 0x8000
    	CR1                              = 0x1000
    	CR2                              = 0x2000
    	CR3                              = 0x3000
    	CRDLY                            = 0x3000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	BS1                              = 0x8000
    	BSDLY                            = 0x8000
    	CBAUD                            = 0xff
    	CBAUDEX                          = 0x0
    	CIBAUD                           = 0xff0000
    	CLOCAL                           = 0x8000
    	CR1                              = 0x1000
    	CR2                              = 0x2000
    	CR3                              = 0x3000
    	CRDLY                            = 0x3000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/go/scanner/scanner.go

    			if s.ch < 0 {
    				msg = "escape sequence not terminated"
    			}
    			s.error(s.offset, msg)
    			return false
    		}
    		x = x*base + d
    		s.next()
    		n--
    	}
    
    	if x > max || 0xD800 <= x && x < 0xE000 {
    		s.error(offs, "escape sequence is invalid Unicode code point")
    		return false
    	}
    
    	return true
    }
    
    func (s *Scanner) scanRune() string {
    	// '\'' opening already consumed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    	B1152000                         = 0x1009
    	B1500000                         = 0x100a
    	B2000000                         = 0x100b
    	B230400                          = 0x1003
    	B2500000                         = 0x100c
    	B3000000                         = 0x100d
    	B3500000                         = 0x100e
    	B4000000                         = 0x100f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  10. src/debug/macho/file_test.go

    		[]any{
    			&SegmentHeader{LoadCmdSegment, 0x38, "__PAGEZERO", 0x0, 0x1000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
    			&SegmentHeader{LoadCmdSegment, 0xc0, "__TEXT", 0x1000, 0x1000, 0x0, 0x1000, 0x7, 0x5, 0x2, 0x0},
    			&SegmentHeader{LoadCmdSegment, 0xc0, "__DATA", 0x2000, 0x1000, 0x1000, 0x1000, 0x7, 0x3, 0x2, 0x0},
    			&SegmentHeader{LoadCmdSegment, 0x7c, "__IMPORT", 0x3000, 0x1000, 0x2000, 0x1000, 0x7, 0x7, 0x1, 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
Back to top