Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for 0xF (0.09 sec)

  1. test/fixedbugs/issue39505b.go

    	}
    }
    
    func le_f1() {
    	const c = -10
    	var a = 0
    	var v *int = &a
    	if *v|0xff+c <= len([]int{}) {
    		panic("bad")
    	}
    }
    
    func le_f2() {
    	const c = 0xf
    	var a = 0
    	var v *int = &a
    	if *v|0xf-c <= len([]int{}) {
    	} else {
    		panic("bad")
    	}
    }
    
    func le_f3() {
    	const c int32 = -10
    	var a int32 = 0
    	var v *int32 = &a
    	if *v|0xff+c <= int32(len([]int{})) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 28 16:40:32 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/NtlmTest.java

            int flags = 0;
            byte[] lmResponse = new byte[] {
                0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xA, 0xB, 0xC, 0xD, 0xE, 0xF
            };
            byte[] ntResponse = new byte[] {
                0xF, 0xE, 0xD, 0xC, 0xB, 0xA, 0x9, 0x8, 0x7, 0x6, 0x5, 0x4, 0x3, 0x2, 0x1, 0x0
            };
            String domain = "TESTDOM";
            String user = "TESTUSER";
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 16 10:38:43 UTC 2018
    - 4.8K bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512block_riscv64.s

    //   SIGMA0(x) = ROTR(1,x) XOR ROTR(8,x) XOR SHR(7,x)
    //   SIGMA1(x) = ROTR(19,x) XOR ROTR(61,x) XOR SHR(6,x)
    #define MSGSCHEDULE1(index) \
    	MOV	(((index-2)&0xf)*8)(X19), X5; \
    	MOV	(((index-15)&0xf)*8)(X19), X6; \
    	MOV	(((index-7)&0xf)*8)(X19), X9; \
    	MOV	(((index-16)&0xf)*8)(X19), X21; \
    	ROR	$19, X5, X7; \
    	ROR	$61, X5, X8; \
    	SRL	$6, X5; \
    	XOR	X7, X5; \
    	XOR	X8, X5; \
    	ADD	X9, X5; \
    	ROR	$1, X6, X7; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue37513.dir/main.go

    		// Generate a SIGILL.
    		sigill()
    		return
    	}
    	// Run ourselves with an extra argument. That process should SIGILL.
    	out, _ := exec.Command(os.Args[0], "foo").CombinedOutput()
    	want := "instruction bytes: 0xf 0xb 0xc3"
    	if !bytes.Contains(out, []byte(want)) {
    		fmt.Printf("got:\n%s\nwant:\n%s\n", string(out), want)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 02 18:46:06 UTC 2020
    - 593 bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/security/internal/Fingerprint.java

        }
    
        @Override
        public String toString() {
            StringBuilder sb = new StringBuilder(2 * fingerprint.length);
            for (byte b : fingerprint) {
                sb.append(HEX_DIGITS[(b >> 4) & 0xf]).append(HEX_DIGITS[b & 0xf]);
            }
            return sb.toString();
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. src/crypto/sha1/sha1block_386.s

    	MOVL	(index*4)(SI), DI; \
    	BSWAPL	DI; \
    	MOVL	DI, (index*4)(SP); \
    	ADDL	DI, e
    
    #define SHUFFLE(index, e) \
    	MOVL	(((index)&0xf)*4)(SP), DI; \
    	XORL	(((index-3)&0xf)*4)(SP), DI; \
    	XORL	(((index-8)&0xf)*4)(SP), DI; \
    	XORL	(((index-14)&0xf)*4)(SP), DI; \
    	ROLL	$1, DI; \
    	MOVL	DI, (((index)&0xf)*4)(SP); \
    	ADDL	DI, e
    
    #define FUNC1(a, b, c, d, e) \
    	MOVL	d, DI; \
    	XORL	c, DI; \
    	ANDL	b, DI; \
    	XORL	d, DI
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. test/fixedbugs/bug142.go

    }
    
    /*
    ; 6.out
    second
    panic PC=0x250f98
    main·panic1+0x36 /Users/rsc/goX/test/bugs/bug142.go:6
    	main·panic1(0xae30, 0x0)
    main·main+0x23 /Users/rsc/goX/test/bugs/bug142.go:10
    	main·main()
    mainstart+0xf /Users/rsc/goX/src/runtime/amd64/asm.s:53
    	mainstart()
    sys·Goexit /Users/rsc/goX/src/runtime/proc.c:124
    	sys·Goexit()
    ; 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 675 bytes
    - Viewed (0)
  8. src/internal/bytealg/equal_arm64.s

    	AND	$0x3f, R2, R2
    	CBZ	R2, equal
    chunk16:
    	// work with 16-byte chunks
    	BIC	$0xf, R2, R3
    	CBZ	R3, tail
    	ADD	R3, R0, R6	// end of chunks
    chunk16_loop:
    	LDP.P	16(R0), (R4, R5)
    	LDP.P	16(R1), (R7, R9)
    	EOR	R4, R7
    	CBNZ	R7, not_equal
    	EOR	R5, R9
    	CBNZ	R9, not_equal
    	CMP	R0, R6
    	BNE	chunk16_loop
    	AND	$0xf, R2, R2
    	CBZ	R2, equal
    tail:
    	// special compare of tail with length < 16
    	TBZ	$3, R2, lt_8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:07:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/runtime/defs_freebsd_386.go

    	_MADV_FREE     = 0x5
    
    	_SA_SIGINFO = 0x40
    	_SA_RESTART = 0x2
    	_SA_ONSTACK = 0x1
    
    	_CLOCK_MONOTONIC = 0x4
    	_CLOCK_REALTIME  = 0x0
    
    	_UMTX_OP_WAIT_UINT         = 0xb
    	_UMTX_OP_WAIT_UINT_PRIVATE = 0xf
    	_UMTX_OP_WAKE              = 0x3
    	_UMTX_OP_WAKE_PRIVATE      = 0x10
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGEMT    = 0x7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/runtime/defs_freebsd_riscv64.go

    	_MADV_FREE     = 0x5
    
    	_SA_SIGINFO = 0x40
    	_SA_RESTART = 0x2
    	_SA_ONSTACK = 0x1
    
    	_CLOCK_MONOTONIC = 0x4
    	_CLOCK_REALTIME  = 0x0
    
    	_UMTX_OP_WAIT_UINT         = 0xb
    	_UMTX_OP_WAIT_UINT_PRIVATE = 0xf
    	_UMTX_OP_WAKE              = 0x3
    	_UMTX_OP_WAKE_PRIVATE      = 0x10
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGEMT    = 0x7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top