Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 0x1c1 (0.06 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	ALDEORB:   0<<30 | 0x1c1<<21 | 0x08<<10,
    	ALDEORLD:  3<<30 | 0x1c3<<21 | 0x08<<10,
    	ALDEORLW:  2<<30 | 0x1c3<<21 | 0x08<<10,
    	ALDEORLH:  1<<30 | 0x1c3<<21 | 0x08<<10,
    	ALDEORLB:  0<<30 | 0x1c3<<21 | 0x08<<10,
    	ALDORAD:   3<<30 | 0x1c5<<21 | 0x0c<<10,
    	ALDORAW:   2<<30 | 0x1c5<<21 | 0x0c<<10,
    	ALDORAH:   1<<30 | 0x1c5<<21 | 0x0c<<10,
    	ALDORAB:   0<<30 | 0x1c5<<21 | 0x0c<<10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_STAT                            = 0x1C9 // 457
    	SYS_W_STATFS                        = 0x1CA // 458
    	SYS_SYMLINK                         = 0x1CB // 459
    	SYS_SYSCONF                         = 0x1CC // 460
    	SYS_TCDRAIN                         = 0x1CD // 461
    	SYS_TCFLOW                          = 0x1CE // 462
    	SYS_TCFLUSH                         = 0x1CF // 463
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  3. cni/pkg/iptables/testdata/default_ipv6.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
    iptables -t nat -A ISTIO_OUTPUT ! -d 127.0.0.1/32 -o lo -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/image/draw/draw.go

    			s := spix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    			sr := uint32(s[0]) * 0x101
    			sg := uint32(s[1]) * 0x101
    			sb := uint32(s[2]) * 0x101
    			sa := uint32(s[3]) * 0x101
    
    			// The 0x101 is here for the same reason as in drawRGBA.
    			a := (m - sa) * 0x101
    
    			d := dpix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/net/tcpsockopt_darwin.go

    package net
    
    import (
    	"runtime"
    	"syscall"
    	"time"
    )
    
    // syscall.TCP_KEEPINTVL and syscall.TCP_KEEPCNT might be missing on some darwin architectures.
    const (
    	sysTCP_KEEPINTVL = 0x101
    	sysTCP_KEEPCNT   = 0x102
    )
    
    func setKeepAliveIdle(fd *netFD, d time.Duration) error {
    	if d == 0 {
    		d = defaultTCPKeepAliveIdle
    	} else if d < 0 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. cni/pkg/iptables/iptables.go

    	dep "istio.io/istio/tools/istio-iptables/pkg/dependencies"
    	iptableslog "istio.io/istio/tools/istio-iptables/pkg/log"
    )
    
    var log = scopes.CNIAgent
    
    const (
    	// INPOD marks/masks
    	InpodTProxyMark      = 0x111
    	InpodTProxyMask      = 0xfff
    	InpodMark            = 1337 // this needs to match the inpod config mark in ztunnel.
    	InpodMask            = 0xfff
    	InpodRestoreMask     = 0xffffffff
    	ChainInpodOutput     = "ISTIO_OUTPUT"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/compress/lzw/reader_test.go

    	if nBits != 43255 {
    		t.Fatalf("nBits: got %v, want %v", nBits, 43255)
    	}
    
    	// Construct our input of 43255 zero bits (which gets d.hi and d.width up
    	// to 4095 and 12), followed by 0xfff (4095) as 12 bits, followed by 0x101
    	// (EOF) as 12 bits.
    	//
    	// 43255 = 5406*8 + 7, and codes are read in LSB order. The final bytes are
    	// therefore:
    	//
    	// xwwwwwww xxxxxxxx yyyyyxxx zyyyyyyy
    	// 10000000 11111111 00001111 00001000
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. cni/pkg/iptables/iptables_linux.go

    	var rules []*netlink.Rule
    	families := []int{unix.AF_INET}
    	if cfg.EnableIPv6 {
    		families = append(families, unix.AF_INET6)
    	}
    	for _, family := range families {
    		// Equiv:
    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    		// Adds in-pod rules for marking packets with the istio-specific TPROXY mark.
    		// A very similar mechanism is used for sidecar TPROXY.
    		//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/image/png/writer.go

    						//
    						// The multiplier m combines 0x101 (which converts
    						// 8-bit color to 16-bit color) and 0xffff (which, when
    						// combined with the division-by-a, converts from
    						// alpha-premultiplied to non-alpha-premultiplied).
    						const m = 0x101 * 0xffff
    						a := uint32(s[3]) * 0x101
    						d[0] = uint8((uint32(s[0]) * m / a) >> 8)
    						d[1] = uint8((uint32(s[1]) * m / a) >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	SOL_MPTCP                                   = 0x11c
    	SOL_NETBEUI                                 = 0x10b
    	SOL_NETLINK                                 = 0x10e
    	SOL_NFC                                     = 0x118
    	SOL_PACKET                                  = 0x107
    	SOL_PNPIPE                                  = 0x113
    	SOL_PPPOL2TP                                = 0x111
    	SOL_RAW                                     = 0xff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top