Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for 0xF (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	PR_SET_MM_MAP                               = 0xe
    	PR_SET_MM_MAP_SIZE                          = 0xf
    	PR_SET_MM_START_BRK                         = 0x6
    	PR_SET_MM_START_CODE                        = 0x1
    	PR_SET_MM_START_DATA                        = 0x3
    	PR_SET_MM_START_STACK                       = 0x5
    	PR_SET_NAME                                 = 0xf
    	PR_SET_NO_NEW_PRIVS                         = 0x26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1block_arm.s

    	MOVBU.P	4(Rdata), Rt1 ; \
    	ORR	Rt2<<16, Rt0, Rt0	    ; \
    	ORR	Rt1<<24, Rt0, Rt0	    ; \
    	MOVW.P	Rt0, 4(Rw)		    ; \
    	ADD	Rt0, Re, Re
    
    	// tmp := w[(i-3)&0xf] ^ w[(i-8)&0xf] ^ w[(i-14)&0xf] ^ w[(i)&0xf]
    	// w[i&0xf] = tmp<<1 | tmp>>(32-1)
    	// e += w[i&0xf]
    #define SHUFFLE(Re) \
    	MOVW	(-16*4)(Rw), Rt0 ; \
    	MOVW	(-14*4)(Rw), Rt1 ; \
    	MOVW	(-8*4)(Rw), Rt2  ; \
    	EOR	Rt0, Rt1, Rt0  ; \
    	MOVW	(-3*4)(Rw), Rt1  ; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/syscall/zerrors_solaris_amd64.go

    	AF_DECnet                     = 0xc
    	AF_DLI                        = 0xd
    	AF_ECMA                       = 0x8
    	AF_FILE                       = 0x1
    	AF_GOSIP                      = 0x16
    	AF_HYLINK                     = 0xf
    	AF_IMPLINK                    = 0x3
    	AF_INET                       = 0x2
    	AF_INET6                      = 0x1a
    	AF_INET_OFFLOAD               = 0x1e
    	AF_IPX                        = 0x17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	NL80211_FREQUENCY_ATTR_FREQ                             = 0x1
    	NL80211_FREQUENCY_ATTR_GO_CONCURRENT                    = 0xf
    	NL80211_FREQUENCY_ATTR_INDOOR_ONLY                      = 0xe
    	NL80211_FREQUENCY_ATTR_IR_CONCURRENT                    = 0xf
    	NL80211_FREQUENCY_ATTR_MAX                              = 0x20
    	NL80211_FREQUENCY_ATTR_MAX_TX_POWER                     = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. src/runtime/defs1_netbsd_arm.go

    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGEMT    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    	_SIGBUS    = 0xa
    	_SIGSEGV   = 0xb
    	_SIGSYS    = 0xc
    	_SIGPIPE   = 0xd
    	_SIGALRM   = 0xe
    	_SIGTERM   = 0xf
    	_SIGURG    = 0x10
    	_SIGSTOP   = 0x11
    	_SIGTSTP   = 0x12
    	_SIGCONT   = 0x13
    	_SIGCHLD   = 0x14
    	_SIGTTIN   = 0x15
    	_SIGTTOU   = 0x16
    	_SIGIO     = 0x17
    	_SIGXCPU   = 0x18
    	_SIGXFSZ   = 0x19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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