Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0x0000000c (1.25 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SE_GROUP_MANDATORY          = 0x00000001
    	SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002
    	SE_GROUP_ENABLED            = 0x00000004
    	SE_GROUP_OWNER              = 0x00000008
    	SE_GROUP_USE_FOR_DENY_ONLY  = 0x00000010
    	SE_GROUP_INTEGRITY          = 0x00000020
    	SE_GROUP_INTEGRITY_ENABLED  = 0x00000040
    	SE_GROUP_LOGON_ID           = 0xC0000000
    	SE_GROUP_RESOURCE           = 0x20000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/syscall/fs_wasip1.go

    type timestamp = uint64
    type dircookie = uint64
    type filedelta = int64
    type fstflags = uint32
    
    type iovec struct {
    	buf    uintptr32
    	bufLen size
    }
    
    const (
    	LOOKUP_SYMLINK_FOLLOW = 0x00000001
    )
    
    const (
    	OFLAG_CREATE    = 0x0001
    	OFLAG_DIRECTORY = 0x0002
    	OFLAG_EXCL      = 0x0004
    	OFLAG_TRUNC     = 0x0008
    )
    
    const (
    	FDFLAG_APPEND   = 0x0001
    	FDFLAG_DSYNC    = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/asm.go

    			// Argsize set below.
    		},
    	}
    	nameAddr.Sym.Func().Text = prog
    	prog.To.Val = int32(argSize)
    	p.append(prog, "", true)
    }
    
    // asmData assembles a DATA pseudo-op.
    // DATA masks<>+0x00(SB)/4, $0x00000000
    func (p *Parser) asmData(operands [][]lex.Token) {
    	if len(operands) != 2 {
    		p.errorf("expect two operands for DATA")
    		return
    	}
    
    	// Operand 0 has the general form foo<>+0x04(SB)/4.
    	op := operands[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top