Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for 0x7fff (0.08 sec)

  1. src/syscall/syscall_bsd.go

    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	stopped = 0x7F
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	killed  = 9
    	stopped = 0x7F
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. src/image/gif/writer_test.go

    	pals := []color.Palette{{
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x01, 0x00, 0x00, 0xff},
    		color.RGBA{0x02, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x00, 0x01, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x03, 0xff},
    		color.RGBA{0x00, 0x00, 0x02, 0xff},
    		color.RGBA{0x00, 0x00, 0x01, 0xff},
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x10, 0x07, 0xf0, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.DWORD, Name: "Dword3", Value: uint64(0xff)},
    	{Type: registry.DWORD, Name: "Dword4", Value: uint64(0xffff)},
    	{Type: registry.QWORD, Name: "Qword1", Value: uint64(0)},
    	{Type: registry.QWORD, Name: "Qword2", Value: uint64(1)},
    	{Type: registry.QWORD, Name: "Qword3", Value: uint64(0xff)},
    	{Type: registry.QWORD, Name: "Qword4", Value: uint64(0xffff)},
    	{Type: registry.QWORD, Name: "Qword5", Value: uint64(0xffffff)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_loong64.go

    	RT_SCOPE_UNIVERSE   = 0x0
    	RT_SCOPE_SITE       = 0xc8
    	RT_SCOPE_LINK       = 0xfd
    	RT_SCOPE_HOST       = 0xfe
    	RT_SCOPE_NOWHERE    = 0xff
    	RT_TABLE_UNSPEC     = 0x0
    	RT_TABLE_COMPAT     = 0xfc
    	RT_TABLE_DEFAULT    = 0xfd
    	RT_TABLE_MAIN       = 0xfe
    	RT_TABLE_LOCAL      = 0xff
    	RT_TABLE_MAX        = 0xffffffff
    	RTA_UNSPEC          = 0x0
    	RTA_DST             = 0x1
    	RTA_SRC             = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm64/asm.go

    		}
    
    		o0 |= (uint32((t>>12)&3) << 29) | (uint32((t>>12>>2)&0x7ffff) << 5)
    		switch rt {
    		case objabi.R_ARM64_PCREL_LDST8, objabi.R_ADDRARM64:
    			o1 |= uint32(t&0xfff) << 10
    		case objabi.R_ARM64_PCREL_LDST16:
    			if t&0x1 != 0 {
    				ldr.Errorf(s, "offset for 16-bit load/store has unaligned value %d", t&0xfff)
    			}
    			o1 |= (uint32(t&0xfff) >> 1) << 10
    		case objabi.R_ARM64_PCREL_LDST32:
    			if t&0x3 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  7. src/syscall/syscall_aix.go

    	if !w.Stopped() {
    		return -1
    	}
    	return Signal(w>>8) & 0xFF
    }
    
    func (w WaitStatus) Exited() bool { return w&0xFF == 0 }
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int((w >> 8) & 0xFF)
    }
    
    func (w WaitStatus) Signaled() bool { return w&0x40 == 0 && w&0xFF != 0 }
    func (w WaitStatus) Signal() Signal {
    	if !w.Signaled() {
    		return -1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

        private int pad2 = 0;
        private boolean hasMore = true;
        private boolean isPrimary = true;
        private int bufParameterOffset;
        private int bufDataOffset;
    
        static final int TRANSACTION_BUF_SIZE = 0xFFFF;
    
        /**
         * 
         */
        public static final byte TRANS2_FIND_FIRST2 = (byte) 0x01;
        /**
         * 
         */
        public static final byte TRANS2_FIND_NEXT2 = (byte) 0x02;
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFileOutputStream.java

            // CAP_LARGE_WRITE
            if ( th.hasCapability(SmbConstants.CAP_LARGE_WRITEX) && !th.areSignaturesActive() ) {
                this.writeSizeFile = Math.min(th.getConfig().getSendBufferSize() - 70, 0xFFFF - 70);
            }
            else {
                log.debug("No support or SMB signing is enabled, not enabling large writes");
                this.writeSizeFile = this.writeSize;
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
  10. src/strconv/isprint.go

    	0x1f11,
    	0x246f,
    	0x6a5f,
    	0x6abf,
    	0x6b5a,
    	0x6b62,
    	0xaff4,
    	0xaffc,
    	0xafff,
    	0xd455,
    	0xd49d,
    	0xd4ad,
    	0xd4ba,
    	0xd4bc,
    	0xd4c4,
    	0xd506,
    	0xd515,
    	0xd51d,
    	0xd53a,
    	0xd53f,
    	0xd545,
    	0xd551,
    	0xdaa0,
    	0xe007,
    	0xe022,
    	0xe025,
    	0xe7e7,
    	0xe7ec,
    	0xe7ef,
    	0xe7ff,
    	0xee04,
    	0xee20,
    	0xee23,
    	0xee28,
    	0xee33,
    	0xee38,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top