Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for 0x7fff (0.1 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Fold extensions and ANDs together.
    (MOVBQZX (ANDLconst [c] x)) => (ANDLconst [c & 0xff] x)
    (MOVWQZX (ANDLconst [c] x)) => (ANDLconst [c & 0xffff] x)
    (MOVLQZX (ANDLconst [c] x)) => (ANDLconst [c] x)
    (MOVBQSX (ANDLconst [c] x)) && c & 0x80 == 0 => (ANDLconst [c & 0x7f] x)
    (MOVWQSX (ANDLconst [c] x)) && c & 0x8000 == 0 => (ANDLconst [c & 0x7fff] x)
    (MOVLQSX (ANDLconst [c] x)) && uint32(c) & 0x80000000 == 0 => (ANDLconst [c & 0x7fffffff] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/syscall/zerrors_netbsd_386.go

    	F_GETNOSIGPIPE                    = 0xd
    	F_GETOWN                          = 0x5
    	F_MAXFD                           = 0xb
    	F_OK                              = 0x0
    	F_PARAM_MASK                      = 0xfff
    	F_PARAM_MAX                       = 0xfff
    	F_RDLCK                           = 0x1
    	F_SETFD                           = 0x2
    	F_SETFL                           = 0x4
    	F_SETLK                           = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	IPV6_LEAVE_GROUP                        = 0xd
    	IPV6_MAXHLIM                            = 0xff
    	IPV6_MAXOPTHDR                          = 0x800
    	IPV6_MAXPACKET                          = 0xffff
    	IPV6_MAX_GROUP_SRC_FILTER               = 0x200
    	IPV6_MAX_MEMBERSHIPS                    = 0xfff
    	IPV6_MAX_SOCK_SRC_FILTER                = 0x80
    	IPV6_MIN_MEMBERSHIPS                    = 0x1f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.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)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	F_GETNOSIGPIPE                    = 0xd
    	F_GETOWN                          = 0x5
    	F_MAXFD                           = 0xb
    	F_OK                              = 0x0
    	F_PARAM_MASK                      = 0xfff
    	F_PARAM_MAX                       = 0xfff
    	F_RDLCK                           = 0x1
    	F_SETFD                           = 0x2
    	F_SETFL                           = 0x4
    	F_SETLK                           = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  6. src/runtime/defs_arm_linux.go

    	SIGSYS    = C.SIGSYS
    
    	FPE_INTDIV = C.FPE_INTDIV & 0xFFFF
    	FPE_INTOVF = C.FPE_INTOVF & 0xFFFF
    	FPE_FLTDIV = C.FPE_FLTDIV & 0xFFFF
    	FPE_FLTOVF = C.FPE_FLTOVF & 0xFFFF
    	FPE_FLTUND = C.FPE_FLTUND & 0xFFFF
    	FPE_FLTRES = C.FPE_FLTRES & 0xFFFF
    	FPE_FLTINV = C.FPE_FLTINV & 0xFFFF
    	FPE_FLTSUB = C.FPE_FLTSUB & 0xFFFF
    
    	BUS_ADRALN = C.BUS_ADRALN & 0xFFFF
    	BUS_ADRERR = C.BUS_ADRERR & 0xFFFF
    	BUS_OBJERR = C.BUS_OBJERR & 0xFFFF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    	// cond: 0x7fff < c
    	// result: (MOVVconst [1])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpMIPS64MOVHreg || !(0x7fff < c) {
    			break
    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  8. src/image/color/ycbcr.go

    	// returns values in the range [0, 0xffff] instead of [0, 0xff].
    
    	w := 0xffff - uint32(c.K)*0x101
    	r := (0xffff - uint32(c.C)*0x101) * w / 0xffff
    	g := (0xffff - uint32(c.M)*0x101) * w / 0xffff
    	b := (0xffff - uint32(c.Y)*0x101) * w / 0xffff
    	return r, g, b, 0xffff
    }
    
    // CMYKModel is the [Model] for CMYK colors.
    var CMYKModel Model = ModelFunc(cmykModel)
    
    func cmykModel(c Color) Color {
    	if _, ok := c.(CMYK); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. cni/pkg/iptables/testdata/default.golden

    iptables -t mangle -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff
    iptables -t nat -A ISTIO_OUTPUT ! -o lo -p udp -m udp --dport 53 -j REDIRECT --to-port 15053
    iptables -t nat -A ISTIO_OUTPUT -p tcp -m mark --mark 0x111/0xfff -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_386.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
    - 57.4K bytes
    - Viewed (0)
Back to top