Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 0x8000 (0.13 sec)

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

    	CLONE_PTRACE                                = 0x2000
    	CLONE_SETTLS                                = 0x80000
    	CLONE_SIGHAND                               = 0x800
    	CLONE_SYSVSEM                               = 0x40000
    	CLONE_THREAD                                = 0x10000
    	CLONE_UNTRACED                              = 0x800000
    	CLONE_VFORK                                 = 0x4000
    	CLONE_VM                                    = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	WSA_FLAG_NO_HANDLE_INHERIT      = 0x80
    	WSA_FLAG_REGISTERED_IO          = 0x100
    )
    
    // Invented values to support what package os expects.
    const (
    	S_IFMT   = 0x1f000
    	S_IFIFO  = 0x1000
    	S_IFCHR  = 0x2000
    	S_IFDIR  = 0x4000
    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    	S_ISGID  = 0x400
    	S_ISVTX  = 0x200
    	S_IRUSR  = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v0.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (MOVHreg (ANDconst [c] x))
    	// cond: c & 0x8000 == 0
    	// result: (ANDconst [c&0x7fff] x)
    	for {
    		if v_0.Op != OpMIPSANDconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		if !(c&0x8000 == 0) {
    			break
    		}
    		v.reset(OpMIPSANDconst)
    		v.AuxInt = int32ToAuxInt(c & 0x7fff)
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    		// GOT section is present, compute it as suggested by the ELFv2 ABI. Otherwise,
    		// choose a similar offset from the start of the data segment.
    		tocAddr := int64(Segdata.Vaddr) + 0x8000
    		if gotAddr := ldr.SymValue(ctxt.GOT); gotAddr != 0 {
    			tocAddr = gotAddr + 0x8000
    		}
    		for i := range ctxt.DotTOC {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_BAL     uint32 = 0x4500 // FORMAT_RX1        BRANCH AND LINK
    	op_BALR    uint32 = 0x0500 // FORMAT_RR         BRANCH AND LINK
    	op_BAS     uint32 = 0x4D00 // FORMAT_RX1        BRANCH AND SAVE
    	op_BASR    uint32 = 0x0D00 // FORMAT_RR         BRANCH AND SAVE
    	op_BASSM   uint32 = 0x0C00 // FORMAT_RR         BRANCH AND SAVE AND SET MODE
    	op_BC      uint32 = 0x4700 // FORMAT_RX2        BRANCH ON CONDITION
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		}
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    	// cond: c <= -0x8000
    	// result: (MOVVconst [0])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpLOONG64MOVHreg || !(c <= -0x8000) {
    			break
    		}
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHUreg _))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    	// cond: c <= -0x8000
    	// result: (MOVVconst [0])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpMIPS64MOVHreg || !(c <= -0x8000) {
    			break
    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHUreg _))
    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/unicode/tables.go

    	"Zs": Zs,
    }
    
    var _C = &RangeTable{
    	R16: []Range16{
    		{0x0000, 0x001f, 1},
    		{0x007f, 0x009f, 1},
    		{0x00ad, 0x0600, 1363},
    		{0x0601, 0x0605, 1},
    		{0x061c, 0x06dd, 193},
    		{0x070f, 0x0890, 385},
    		{0x0891, 0x08e2, 81},
    		{0x180e, 0x200b, 2045},
    		{0x200c, 0x200f, 1},
    		{0x202a, 0x202e, 1},
    		{0x2060, 0x2064, 1},
    		{0x2066, 0x206f, 1},
    		{0xd800, 0xf8ff, 1},
    		{0xfeff, 0xfff9, 250},
    		{0xfffa, 0xfffb, 1},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    		OPVCC(42, 0, 0, 0), // lha
    		OPVCC(43, 0, 0, 0), // lhau
    		OPVCC(46, 0, 0, 0), // lmw
    		OPVCC(48, 0, 0, 0), // lfs
    		OPVCC(49, 0, 0, 0), // lfsu
    		OPVCC(50, 0, 0, 0), // lfd
    		OPVCC(51, 0, 0, 0), // lfdu
    		OPVCC(36, 0, 0, 0), // stw
    		OPVCC(37, 0, 0, 0), // stwu
    		OPVCC(38, 0, 0, 0), // stb
    		OPVCC(39, 0, 0, 0), // stbu
    		OPVCC(44, 0, 0, 0), // sth
    		OPVCC(45, 0, 0, 0), // sthu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy mark-for-masquerade
    		add rule ip kube-proxy mark-for-masquerade mark set mark or 0x4000
    		add chain ip kube-proxy masquerading
    		add rule ip kube-proxy masquerading mark and 0x4000 == 0 return
    		add rule ip kube-proxy masquerading mark set mark xor 0x4000
    		add rule ip kube-proxy masquerading masquerade fully-random
    		add chain ip kube-proxy services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top