Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for 0x7fff (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.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
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.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.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.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)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.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.6K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/internal/obj/arm64/asm7.go

    }
    
    func ADR(p uint32, o uint32, rt uint32) uint32 {
    	return p<<31 | (o&3)<<29 | 0x10<<24 | ((o>>2)&0x7FFFF)<<5 | rt&31
    }
    
    func OPBIT(x uint32) uint32 {
    	return 1<<30 | 0<<29 | 0xD6<<21 | 0<<16 | x<<10
    }
    
    func MOVCONST(d int64, s int, rt int) uint32 {
    	return uint32(((d>>uint(s*16))&0xFFFF)<<5) | uint32(s)&3<<21 | uint32(rt&31)
    }
    
    const (
    	// Optab.flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM.go

    	}
    	// match: (ADDconst [c] x)
    	// cond: buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && uint32(-c)<=0xffff
    	// result: (SUBconst [-c] x)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		x := v_0
    		if !(buildcfg.GOARM.Version == 7 && !isARMImmRot(uint32(c)) && uint32(c) > 0xffff && uint32(-c) <= 0xffff) {
    			break
    		}
    		v.reset(OpARMSUBconst)
    		v.AuxInt = int32ToAuxInt(-c)
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  8. src/strconv/makeisprint.go

    	for _, v := range x {
    		if uint32(uint16(v)) != v {
    			panic("bad 32->16 conversion")
    		}
    		y = append(y, uint16(v))
    	}
    	return y
    }
    
    func main() {
    	flag.Parse()
    
    	rang, except := scan(0, 0xFFFF)
    	range16 = to16(rang)
    	except16 = to16(except)
    	range32, except32 = scan(0x10000, unicode.MaxRune)
    
    	for i := rune(0); i <= unicode.MaxRune; i++ {
    		if isPrint(i) != unicode.IsPrint(i) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/bytealg/count_amd64.s

    	// Get the number of bytes to consider in the last 16 bytes
    	ANDQ $15, BX
    	JZ end
    
    	// Create mask to ignore overlap between previous 16 byte block
    	// and the next.
    	MOVQ $16,CX
    	SUBQ BX, CX
    	MOVQ $0xFFFF, R10
    	SARQ CL, R10
    	SALQ CL, R10
    
    	// Process the last 16-byte chunk. This chunk may overlap with the
    	// chunks we've already searched so we need to mask part of it.
    	MOVOU	(AX), X1
    	PCMPEQB	X0, X1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:54:43 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/mips64/asm.go

    	switch r.Type() {
    	case objabi.R_ADDRMIPS,
    		objabi.R_ADDRMIPSU:
    		t := ldr.SymValue(rs) + r.Add()
    		if r.Type() == objabi.R_ADDRMIPS {
    			return int64(val&0xffff0000 | t&0xffff), noExtReloc, isOk
    		}
    		return int64(val&0xffff0000 | ((t+1<<15)>>16)&0xffff), noExtReloc, isOk
    	case objabi.R_ADDRMIPSTLS:
    		// thread pointer is at 0x7000 offset from the start of TLS data area
    		t := ldr.SymValue(rs) + r.Add() - 0x7000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top