Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 236 for 0x7fff (0.2 sec)

  1. src/runtime/netpoll_wasip1.go

    	unlock(&mtx)
    	return 0
    }
    
    const disarmed = 0xFFFF
    
    func netpollarm(pd *pollDesc, mode int) {
    	lock(&mtx)
    
    	var s subscription
    
    	s.userdata = userdata(uintptr(unsafe.Pointer(pd)))
    
    	fdReadwrite := s.u.subscriptionFdReadwrite()
    	fdReadwrite.fd = int32(pd.fd)
    
    	ridx := int(pd.user >> 16)
    	widx := int(pd.user & 0xFFFF)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/syscall/zerrors_openbsd_arm.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 28 18:17:57 UTC 2021
    - 62.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                }
                switch( sbuf[0] & 0xFF ) {
                    case SessionServicePacket.POSITIVE_SESSION_RESPONSE:
                        if( log.level >= 4 )
                            log.println( "session established ok with " + address );
                        return;
                    case SessionServicePacket.NEGATIVE_SESSION_RESPONSE:
                        int errorCode = (int)( in.read() & 0xFF );
                        switch (errorCode) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                    int _name_bufferi = _src.index;
                    _src.advance(2 * _name_bufferl);
    
                    if ( this.name.buffer == null ) {
                        if ( _name_buffers < 0 || _name_buffers > 0xFFFF )
                            throw new NdrException(NdrException.INVALID_CONFORMANCE);
                        this.name.buffer = new short[_name_buffers];
                    }
                    _src = _src.derive(_name_bufferi);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 35.6K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_loong64.go

    	IN_ACCESS                         = 0x1
    	IN_ALL_EVENTS                     = 0xfff
    	IN_ATTRIB                         = 0x4
    	IN_CLASSA_HOST                    = 0xffffff
    	IN_CLASSA_MAX                     = 0x80
    	IN_CLASSA_NET                     = 0xff000000
    	IN_CLASSA_NSHIFT                  = 0x18
    	IN_CLASSB_HOST                    = 0xffff
    	IN_CLASSB_MAX                     = 0x10000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  6. src/syscall/zerrors_darwin_amd64.go

    	IPV6_JOIN_GROUP                   = 0xc
    	IPV6_LEAVE_GROUP                  = 0xd
    	IPV6_MAXHLIM                      = 0xff
    	IPV6_MAXOPTHDR                    = 0x800
    	IPV6_MAXPACKET                    = 0xffff
    	IPV6_MAX_GROUP_SRC_FILTER         = 0x200
    	IPV6_MAX_MEMBERSHIPS              = 0xfff
    	IPV6_MAX_SOCK_SRC_FILTER          = 0x80
    	IPV6_MIN_MEMBERSHIPS              = 0x1f
    	IPV6_MMTU                         = 0x500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  7. test/fixedbugs/bug440_32.go

    // about 16- vs 32-bit moves during splitContractIndex.
    
    // Issue 3910.
    
    package main
    
    func main() {
    	const c = 0x12345678
    	index, n, offset := splitContractIndex(c)
    	if index != int((c&0xffff)>>5) || n != int(c&(1<<5-1)) || offset != (c>>16)&(1<<14-1) {
    		println("BUG", index, n, offset)
    	}
    }
    
    func splitContractIndex(ce uint32) (index, n, offset int) {
    	h := uint16(ce)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 01 14:40:54 UTC 2012
    - 514 bytes
    - Viewed (0)
  8. test/string_lit.go

    	s = string(0xD800)
    	assert(s, "\xef\xbf\xbd", "surrogate rune min constant")
    	s = string(0xDFFF)
    	assert(s, "\xef\xbf\xbd", "surrogate rune max constant")
    	s = string(-1)
    	assert(s, "\xef\xbf\xbd", "negative rune")
    
    	// the large rune tests yet again, with a slice.
    	rs := []rune{0x10ffff, 0x10ffff + 1, 0xD800, 0xDFFF, -1}
    	s = string(rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 13 01:17:02 UTC 2013
    - 3.6K bytes
    - Viewed (0)
  9. src/syscall/zerrors_openbsd_mips64.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 29 08:08:26 UTC 2020
    - 66.7K bytes
    - Viewed (0)
  10. src/syscall/zerrors_netbsd_amd64.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 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
Back to top