Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 191 for 0xffff (0.08 sec)

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

    	IP_IPSEC_REMOTE_AUTH              = 0x1c
    	IP_IPSEC_REMOTE_CRED              = 0x1a
    	IP_IPSEC_REMOTE_ID                = 0x18
    	IP_MAXPACKET                      = 0xffff
    	IP_MAX_MEMBERSHIPS                = 0xfff
    	IP_MF                             = 0x2000
    	IP_MINTTL                         = 0x20
    	IP_MIN_MEMBERSHIPS                = 0xf
    	IP_MSS                            = 0x240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  2. src/image/png/writer.go

    						d[3] = 0
    					} else if s[3] == 0xff {
    						copy(d[:], s[:])
    					} else {
    						// This code does the same as color.NRGBAModel.Convert(
    						// rgba.At(x, y)).(color.NRGBA) but with no extra memory
    						// allocations or interface/function call overhead.
    						//
    						// The multiplier m combines 0x101 (which converts
    						// 8-bit color to 16-bit color) and 0xffff (which, when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/image/draw/draw.go

    	}
    }
    
    // clamp clamps i to the interval [0, 0xffff].
    func clamp(i int32) int32 {
    	if i < 0 {
    		return 0
    	}
    	if i > 0xffff {
    		return 0xffff
    	}
    	return i
    }
    
    // sqDiff returns the squared-difference of x and y, shifted by 2 so that
    // adding four of those won't overflow a uint32.
    //
    // x and y are both assumed to be in the range [0, 0xffff].
    func sqDiff(x, y int32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/syscall/wtf8_windows_test.go

    	},
    	{
    		str:  "\xDF\xBF",
    		wstr: []uint16{0x07FF},
    	},
    
    	// 3-byte
    	{
    		str:  "\xE0\xA0\x80",
    		wstr: []uint16{0x0800},
    	},
    	{
    		str:  "\xE2\xB0\xBC",
    		wstr: []uint16{0x2C3C},
    	},
    	{
    		str:  "\xEF\xBF\xBF",
    		wstr: []uint16{0xFFFF},
    	},
    	// unmatched surrogate halves
    	// high surrogates: 0xD800 to 0xDBFF
    	{
    		str:  "\xED\xA0\x80",
    		wstr: []uint16{0xD800},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	IN_ALL_EVENTS                               = 0xfff
    	IN_ATTRIB                                   = 0x4
    	IN_CLASSA_HOST                              = 0xffffff
    	IN_CLASSA_MAX                               = 0x80
    	IN_CLASSA_NET                               = 0xff000000
    	IN_CLASSA_NSHIFT                            = 0x18
    	IN_CLASSB_HOST                              = 0xffff
    	IN_CLASSB_MAX                               = 0x10000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_mips.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_mips64.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_mips64le.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_mipsle.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	IN_CLASSA_HOST                = 0xffffff
    	IN_CLASSA_MAX                 = 0x80
    	IN_CLASSA_NET                 = 0xff000000
    	IN_CLASSA_NSHIFT              = 0x18
    	IN_CLASSB_HOST                = 0xffff
    	IN_CLASSB_MAX                 = 0x10000
    	IN_CLASSB_NET                 = 0xffff0000
    	IN_CLASSB_NSHIFT              = 0x10
    	IN_CLASSC_HOST                = 0xff
    	IN_CLASSC_NET                 = 0xffffff00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
Back to top