Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for 0xd800 (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	BOTHER                           = 0x1000
    	BS1                              = 0x2000
    	BSDLY                            = 0x2000
    	CBAUD                            = 0x100f
    	CBAUDEX                          = 0x1000
    	CIBAUD                           = 0x100f0000
    	CLOCAL                           = 0x800
    	CR1                              = 0x200
    	CR2                              = 0x400
    	CR3                              = 0x600
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	BOTHER                           = 0x1000
    	BS1                              = 0x2000
    	BSDLY                            = 0x2000
    	CBAUD                            = 0x100f
    	CBAUDEX                          = 0x1000
    	CIBAUD                           = 0x100f0000
    	CLOCAL                           = 0x800
    	CR1                              = 0x200
    	CR2                              = 0x400
    	CR3                              = 0x600
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	BOTHER                           = 0x1000
    	BS1                              = 0x2000
    	BSDLY                            = 0x2000
    	CBAUD                            = 0x100f
    	CBAUDEX                          = 0x1000
    	CIBAUD                           = 0x100f0000
    	CLOCAL                           = 0x800
    	CR1                              = 0x200
    	CR2                              = 0x400
    	CR3                              = 0x600
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/syscall/zerrors_netbsd_arm.go

    	S_IEXEC                           = 0x40
    	S_IFBLK                           = 0x6000
    	S_IFCHR                           = 0x2000
    	S_IFDIR                           = 0x4000
    	S_IFIFO                           = 0x1000
    	S_IFLNK                           = 0xa000
    	S_IFMT                            = 0xf000
    	S_IFREG                           = 0x8000
    	S_IFSOCK                          = 0xc000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 66.5K bytes
    - Viewed (0)
  5. src/syscall/zerrors_openbsd_arm.go

    	EV_EOF                            = 0x8000
    	EV_ERROR                          = 0x4000
    	EV_FLAG1                          = 0x2000
    	EV_ONESHOT                        = 0x10
    	EV_SYSFLAGS                       = 0xf000
    	EXTA                              = 0x4b00
    	EXTB                              = 0x9600
    	EXTPROC                           = 0x800
    	FD_CLOEXEC                        = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 62.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go

    	S_IEXEC                           = 0x40
    	S_IFBLK                           = 0x6000
    	S_IFCHR                           = 0x2000
    	S_IFDIR                           = 0x4000
    	S_IFIFO                           = 0x1000
    	S_IFLNK                           = 0xa000
    	S_IFMT                            = 0xf000
    	S_IFREG                           = 0x8000
    	S_IFSOCK                          = 0xc000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 71.9K bytes
    - Viewed (0)
  7. src/syscall/zerrors_openbsd_386.go

    	EV_EOF                            = 0x8000
    	EV_ERROR                          = 0x4000
    	EV_FLAG1                          = 0x2000
    	EV_ONESHOT                        = 0x10
    	EV_SYSFLAGS                       = 0xf000
    	EXTA                              = 0x4b00
    	EXTB                              = 0x9600
    	EXTPROC                           = 0x800
    	FD_CLOEXEC                        = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 62.5K bytes
    - Viewed (0)
  8. src/syscall/zerrors_openbsd_amd64.go

    	EV_EOF                            = 0x8000
    	EV_ERROR                          = 0x4000
    	EV_FLAG1                          = 0x2000
    	EV_ONESHOT                        = 0x10
    	EV_SYSFLAGS                       = 0xf000
    	EXTA                              = 0x4b00
    	EXTB                              = 0x9600
    	EXTPROC                           = 0x800
    	FD_CLOEXEC                        = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 62.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Utf8.java

        int i = 0;
    
        // This loop optimizes for pure ASCII.
        while (i < utf16Length && sequence.charAt(i) < 0x80) {
          i++;
        }
    
        // This loop optimizes for chars less than 0x800.
        for (; i < utf16Length; i++) {
          char c = sequence.charAt(i);
          if (c < 0x800) {
            utf8Length += ((0x7f - c) >>> 31); // branch free!
          } else {
            utf8Length += encodedLengthGeneral(sequence, i);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 14:11:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Utf8.java

        int i = 0;
    
        // This loop optimizes for pure ASCII.
        while (i < utf16Length && sequence.charAt(i) < 0x80) {
          i++;
        }
    
        // This loop optimizes for chars less than 0x800.
        for (; i < utf16Length; i++) {
          char c = sequence.charAt(i);
          if (c < 0x800) {
            utf8Length += ((0x7f - c) >>> 31); // branch free!
          } else {
            utf8Length += encodedLengthGeneral(sequence, i);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 14:11:51 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top