Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 256 for 0x7fff_ffff (0.12 sec)

  1. src/crypto/internal/nistec/fiat/p256_fiat64.go

    	x19 := (uint64(p256Uint1(x18)) + x6)
    	var x20 uint64
    	var x21 uint64
    	x21, x20 = bits.Mul64(x11, 0xffffffff00000001)
    	var x22 uint64
    	var x23 uint64
    	x23, x22 = bits.Mul64(x11, 0xffffffff)
    	var x24 uint64
    	var x25 uint64
    	x25, x24 = bits.Mul64(x11, 0xffffffffffffffff)
    	var x26 uint64
    	var x27 uint64
    	x26, x27 = bits.Add64(x25, x22, uint64(0x0))
    	x28 := (uint64(p256Uint1(x27)) + x23)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComReadAndX.java

            command = SMB_COM_READ_ANDX;
            openTimeout = 0xFFFFFFFF;
        }
        SmbComReadAndX( int fid, long offset, int maxCount, ServerMessageBlock andx ) {
            super( andx );
            this.fid = fid;
            this.offset = offset;
            this.maxCount = minCount = maxCount;
            command = SMB_COM_READ_ANDX;
            openTimeout = 0xFFFFFFFF;
        }
    
        void setParam( int fid, long offset, int maxCount ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java

                SMBUtil.writeInt4(this.byteOffset >> 32, dst, dstIndex + 4);
                SMBUtil.writeInt4(this.byteOffset & 0xFFFFFFFF, dst, dstIndex + 8);
                SMBUtil.writeInt4(this.lengthInBytes >> 32, dst, dstIndex + 12);
                SMBUtil.writeInt4(this.lengthInBytes & 0xFFFFFFFF, dst, dstIndex + 16);
                return 20;
            }
            SMBUtil.writeInt2(this.pid, dst, dstIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_test.go

    	// Basic sanity check.
    	x := uint32(0xffffffff)
    	for i := uint32(0); i < 32; i++ {
    		atomic.And(&x, ^(1 << i))
    		if r := uint32(0xffffffff) << (i + 1); x != r {
    			t.Fatalf("clearing bit %#x: want %#x, got %#x", uint32(1<<i), r, x)
    		}
    	}
    
    	// Set every bit in array to 1.
    	a := make([]uint32, 1<<12)
    	for i := range a {
    		a[i] = 0xffffffff
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. test/fixedbugs/bug440_64.go

    // about 32- vs 64-bit moves during splitContractIndex.
    
    // Issue 3918.
    
    package main
    
    func main() {
    	const c = 0x123400005678
    	index, offset := splitContractIndex(c)
    	if index != (c&0xffffffff)>>5 || offset != c+1 {
    		println("BUG", index, offset)
    	}
    }
    
    func splitContractIndex(ce uint64) (index uint32, offset uint64) {
    	h := uint32(ce)
    	return h >> 5, ce + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 01 14:40:54 UTC 2012
    - 435 bytes
    - Viewed (0)
  6. src/runtime/traceback_test.go

    				poisonStack() // poison arg area to make output deterministic
    				return testTracebackArgs10(1, 2, 3, 4, 5)
    			},
    			abiSel(
    				"testTracebackArgs10(0xffffffff?, 0xffffffff?, 0xffffffff?, 0xffffffff?, 0xffffffff?)",
    				"testTracebackArgs10(0x1, 0x2, 0x3, 0x4, 0x5)"),
    		},
    		// Conditional spills.
    		// Spill in conditional, not executed.
    		{
    			func() int {
    				poisonStack() // poison arg area to make output deterministic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block_s390x.s

    	ROUND3(R3,R4,R5,R2, 0,0xc4ac5665,23);
    
    	MOVWBR	(0*4)(R6), R8
    	MOVWZ	$0xffffffff, R9
    	XOR	R5, R9
    
    #define ROUND4(a, b, c, d, index, const, shift) \
    	ADD	$const, a; \
    	ADD	R8, a; \
    	MOVWBR	(index*4)(R6), R8; \
    	OR	b, R9; \
    	XOR	c, R9; \
    	ADD	R9, a; \
    	MOVWZ	$0xffffffff, R9; \
    	RLL	$shift,	a; \
    	XOR	c, R9; \
    	ADD	b, a
    
    	ROUND4(R2,R3,R4,R5, 7,0xf4292244, 6);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

        int maxCount, minCount, remaining;
    
    
        /**
         * 
         * @param config
         */
        public SmbComReadAndX ( Configuration config ) {
            super(config, SMB_COM_READ_ANDX);
            this.openTimeout = 0xFFFFFFFF;
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param offset
         * @param maxCount
         * @param andx
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue20530.go

    	a = uint8(b)
    	if int32(a) != 255 {
    		// Failing case prints 'got 255 expected 255'
    		println("got", a, "expected 255")
    	}
    }
    
    //go:noinline
    func g() {
    	b := int8(func() uint32 { return 0xffffffff }())
    	a = uint8(b)
    	if int32(a) != 255 {
    		// Failing case prints 'got 255 expected 255'
    		println("got", a, "expected 255")
    	}
    }
    
    func main() {
    	f()
    	g()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 14:44:02 UTC 2017
    - 614 bytes
    - Viewed (0)
  10. src/internal/bytealg/index_amd64.s

    	VPCMPEQB Y1, Y2, Y3
    	VPMOVMSKB Y3, SI
    	CMPL  SI, $0xffffffff
    	JE   success_avx2
    	ADDQ $1,DI
    	CMPQ DI,DX
    	JB loop32
    	JMP fail_avx2
    _33_to_63:
    	LEAQ 1(DI)(DX*1), DX
    	SUBQ AX, DX
    	VMOVDQU -32(R8)(AX*1), Y0
    	VMOVDQU (R8), Y1
    loop33to63:
    	VMOVDQU (DI), Y2
    	VPCMPEQB Y1, Y2, Y3
    	VPMOVMSKB Y3, SI
    	CMPL  SI, $0xffffffff
    	JE   partial_success33to63
    	ADDQ $1,DI
    	CMPQ DI,DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:20:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top