Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 236 for 0x7fff (0.15 sec)

  1. src/net/ipsock_plan9.go

    		if addr == nil {
    			return nil, 0, &ParseError{Type: "IP address", Text: s}
    		}
    	}
    	p, plen, ok := dtoi(s[i+1:])
    	if !ok {
    		return nil, 0, &ParseError{Type: "port", Text: s}
    	}
    	if p < 0 || p > 0xFFFF {
    		return nil, 0, &AddrError{Err: "invalid port", Addr: s[i+1 : i+1+plen]}
    	}
    	return addr, p, nil
    }
    
    func readPlan9Addr(net, filename string) (addr Addr, err error) {
    	var buf [128]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. 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)
  3. src/math/cmplx/tan.go

    		)
    		t := x / math.Pi
    		t += 0.5
    		t = float64(int64(t)) // int64(t) = the multiple
    		return ((x - t*PI1) - t*PI2) - t*PI3
    	}
    	// Must apply Payne-Hanek range reduction
    	const (
    		mask     = 0x7FF
    		shift    = 64 - 11 - 1
    		bias     = 1023
    		fracMask = 1<<shift - 1
    	)
    	// Extract out the integer and exponent such that,
    	// x = ix * 2 ** exp.
    	ix := math.Float64bits(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/fuzz/encoding_test.go

    		u2 := math.Float64bits(x2)
    		if u2 != u1 {
    			t.Errorf("unmarshaled %v (bits 0x%x)", x2, u2)
    		}
    	})
    }
    
    func FuzzRuneRoundTrip(f *testing.F) {
    	f.Add(rune(-1))
    	f.Add(rune(0xd800))
    	f.Add(rune(0xdfff))
    	f.Add(rune(unicode.ReplacementChar))
    	f.Add(rune(unicode.MaxASCII))
    	f.Add(rune(unicode.MaxLatin1))
    	f.Add(rune(unicode.MaxRune))
    	f.Add(rune(unicode.MaxRune + 1))
    	f.Add(rune(-0x80000000))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            dst[ dstIndex++ ] = (byte) ( ( this.wordCount / 2 ) & 0xFF );
            dstIndex += this.wordCount;
            this.wordCount /= 2;
            this.byteCount = writeBytesWireFormat(dst, dstIndex + 2);
            dst[ dstIndex++ ] = (byte) ( this.byteCount & 0xFF );
            dst[ dstIndex++ ] = (byte) ( ( this.byteCount >> 8 ) & 0xFF );
            dstIndex += this.byteCount;
    
            this.length = dstIndex - start;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
Back to top