Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for ffffffffff (0.09 sec)

  1. src/runtime/asm_386.s

    DATA masks<>+0xcc(SB)/4, $0x00000000
    
    DATA masks<>+0xd0(SB)/4, $0xffffffff
    DATA masks<>+0xd4(SB)/4, $0xffffffff
    DATA masks<>+0xd8(SB)/4, $0xffffffff
    DATA masks<>+0xdc(SB)/4, $0x000000ff
    
    DATA masks<>+0xe0(SB)/4, $0xffffffff
    DATA masks<>+0xe4(SB)/4, $0xffffffff
    DATA masks<>+0xe8(SB)/4, $0xffffffff
    DATA masks<>+0xec(SB)/4, $0x0000ffff
    
    DATA masks<>+0xf0(SB)/4, $0xffffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. cni/pkg/iptables/testdata/default_ipv6.golden

    iptables -t mangle -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff
    iptables -t nat -A ISTIO_OUTPUT ! -o lo -p udp -m udp --dport 53 -j REDIRECT --to-port 15053
    iptables -t nat -A ISTIO_OUTPUT -p tcp -m mark --mark 0x111/0xfff -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue66066b.go

    		println("bad f32", got)
    	}
    	if got := f16(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1); got != 0xffff {
    		println("bad f16", got)
    	}
    	if got := f8(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1); got != 0xff {
    		println("bad f8", got)
    	}
    	if got := g32(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xffffffff); got != -1 {
    		println("bad g32", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 17:35:29 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_andor_test.go

    package atomic_test
    
    import (
    	"internal/runtime/atomic"
    	"testing"
    )
    
    func TestAnd32(t *testing.T) {
    	// Basic sanity check.
    	x := uint32(0xffffffff)
    	for i := uint32(0); i < 32; i++ {
    		old := x
    		v := atomic.And32(&x, ^(1 << i))
    		if r := uint32(0xffffffff) << (i + 1); x != r || v != old {
    			t.Fatalf("clearing bit %#x: want %#x, got new %#x and old %#v", uint32(1<<i), r, x, v)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 27 20:49:32 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/runtime/defs_windows.go

    	_EXCEPTION_FLT_OVERFLOW         = 0xc0000091
    	_EXCEPTION_FLT_UNDERFLOW        = 0xc0000093
    	_EXCEPTION_INT_DIVIDE_BY_ZERO   = 0xc0000094
    	_EXCEPTION_INT_OVERFLOW         = 0xc0000095
    
    	_INFINITE     = 0xffffffff
    	_WAIT_TIMEOUT = 0x102
    
    	_EXCEPTION_CONTINUE_EXECUTION  = -0x1
    	_EXCEPTION_CONTINUE_SEARCH     = 0x0
    	_EXCEPTION_CONTINUE_SEARCH_SEH = 0x1
    )
    
    type systeminfo struct {
    	anon0                       [4]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_386.s

    	ROLL	$shift,		a; \
    	MOVL	b,		BP; \
    	ADDL	b,		a
    
    #define ROUND4(a, b, c, d, index, const, shift) \
    	LEAL	const(a)(DI*1),a; \
    	ORL	b,		BP; \
    	XORL	c,		BP; \
    	ADDL	BP,		a; \
    	MOVL	(index*4)(SI),DI; \
    	MOVL	$0xffffffff,	BP; \
    	ROLL	$shift,		a; \
    	XORL	c,		BP; \
    	ADDL	b,		a
    
    TEXT	·block(SB),NOSPLIT,$24-16
    	MOVL	dig+0(FP),	BP
    	MOVL	p+4(FP),	SI
    	MOVL	p_len+8(FP), DX
    	SHRL	$6,		DX
    	SHLL	$6,		DX
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/crypto/md5/md5block_amd64.s

    	MOVQ	dig+0(FP),	BP
    	MOVQ	p+8(FP),	SI
    	MOVQ	p_len+16(FP), DX
    	SHRQ	$6,		DX
    	SHLQ	$6,		DX
    
    	LEAQ	(SI)(DX*1),	DI
    	MOVL	(0*4)(BP),	AX
    	MOVL	(1*4)(BP),	BX
    	MOVL	(2*4)(BP),	CX
    	MOVL	(3*4)(BP),	DX
    	MOVL	$0xffffffff,	R11
    
    	CMPQ	SI,		DI
    	JEQ	end
    
    loop:
    	MOVL	AX,		R12
    	MOVL	BX,		R13
    	MOVL	CX,		R14
    	MOVL	DX,		R15
    
    	MOVL	(0*4)(SI),	R8
    	MOVL	DX,		R9
    
    #define ROUND1(a, b, c, d, index, const, shift) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard-tproxy.golden

    iptables -t mangle -A ISTIO_DIVERT -j MARK --set-mark 1337
    iptables -t mangle -A ISTIO_DIVERT -j ACCEPT
    iptables -t mangle -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    iptables -t mangle -A PREROUTING -p tcp -j ISTIO_INBOUND
    iptables -t mangle -A ISTIO_INBOUND -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ISTIO_DIVERT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top