Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 287 for 0xffff (0.14 sec)

  1. test/codegen/bits.go

    func zeroextendAndMask8to64(a int8, b int16) (x, y uint64) {
    	// ppc64x: -"MOVB\t", -"ANDCC", "MOVBZ"
    	x = uint64(a) & 0xFF
    	// ppc64x: -"MOVH\t", -"ANDCC", "MOVHZ"
    	y = uint64(b) & 0xFFFF
    	return
    }
    
    // Verify rotate and mask instructions, and further simplified instructions for small types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/internal/obj/mips/asm0.go

    		default:
    			return C_GOK
    		}
    
    		if c.instoffset >= 0 {
    			if c.instoffset == 0 {
    				return C_ZCON
    			}
    			if c.instoffset <= 0x7fff {
    				return C_SCON
    			}
    			if c.instoffset <= 0xffff {
    				return C_ANDCON
    			}
    			if c.instoffset&0xffff == 0 && isuint32(uint64(c.instoffset)) { /* && ((instoffset & (1<<31)) == 0) */
    				return C_UCON
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (SGTconst [c] (MOVBUreg _)) && 0xff < c  => (MOVWconst [1])
    (SGTconst [c] (MOVBUreg _)) && c < 0     => (MOVWconst [0])
    (SGTUconst [c] (MOVBUreg _)) && 0xff < uint32(c) => (MOVWconst [1])
    (SGTconst [c] (MOVHreg _)) && 0x7fff < c => (MOVWconst [1])
    (SGTconst [c] (MOVHreg _)) && c <= -0x8000 => (MOVWconst [0])
    (SGTconst [c] (MOVHUreg _)) && 0xffff < c => (MOVWconst [1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  7. src/compress/lzw/reader.go

    	LSB Order = iota
    	// MSB means Most Significant Bits first, as used in the TIFF and PDF
    	// file formats.
    	MSB
    )
    
    const (
    	maxWidth           = 12
    	decoderInvalidCode = 0xffff
    	flushBuffer        = 1 << maxWidth
    )
    
    // Reader is an io.Reader which can be used to read compressed data in the
    // LZW format.
    type Reader struct {
    	r        io.ByteReader
    	bits     uint32
    	nBits    uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    //sys	CreateSymbolicLink(symlinkfilename *uint16, targetfilename *uint16, flags uint32) (err error) [failretval&0xff==0] = CreateSymbolicLinkW
    //sys	CreateHardLink(filename *uint16, existingfilename *uint16, reserved uintptr) (err error) [failretval&0xff==0] = CreateHardLinkW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    		if int64(length) > 0xfffffffe {
    			b.err = errors.New("pending ASN.1 child too long")
    			return
    		} else if length > 0xffffff {
    			lenLen = 5
    			lenByte = 0x80 | 4
    		} else if length > 0xffff {
    			lenLen = 4
    			lenByte = 0x80 | 3
    		} else if length > 0xff {
    			lenLen = 3
    			lenByte = 0x80 | 2
    		} else if length > 0x7f {
    			lenLen = 2
    			lenByte = 0x80 | 1
    		} else {
    			lenLen = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. src/runtime/sys_freebsd_386.s

    	// set up data_desc
    	LEAL	16(SP), AX	// struct data_desc
    	MOVL	$0, 0(AX)
    	MOVL	$0, 4(AX)
    
    	MOVW	BX, 2(AX)
    	SHRL	$16, BX
    	MOVB	BX, 4(AX)
    	SHRL	$8, BX
    	MOVB	BX, 7(AX)
    
    	MOVW	$0xffff, 0(AX)
    	MOVB	$0xCF, 6(AX)	// 32-bit operand, 4k limit unit, 4 more bits of limit
    
    	MOVB	$0xF2, 5(AX)	// r/w data descriptor, dpl=3, present
    
    	// call i386_set_ldt(entry, desc, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top