Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for 0xF (0.56 sec)

  1. src/crypto/sha1/sha1block.go

    			w[i&0xf] = bits.RotateLeft32(tmp, 1)
    			f := b ^ c ^ d
    			t := bits.RotateLeft32(a, 5) + f + e + w[i&0xf] + _K1
    			a, b, c, d, e = t, a, bits.RotateLeft32(b, 30), c, d
    		}
    		for ; i < 60; i++ {
    			tmp := w[(i-3)&0xf] ^ w[(i-8)&0xf] ^ w[(i-14)&0xf] ^ w[(i)&0xf]
    			w[i&0xf] = bits.RotateLeft32(tmp, 1)
    			f := ((b | c) & d) | (b & c)
    			t := bits.RotateLeft32(a, 5) + f + e + w[i&0xf] + _K2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/PercentEscaper.java

          dest[6] = '%';
          dest[9] = '%';
          dest[11] = UPPER_HEX_DIGITS[cp & 0xF];
          cp >>>= 4;
          dest[10] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
          cp >>>= 2;
          dest[8] = UPPER_HEX_DIGITS[cp & 0xF];
          cp >>>= 4;
          dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
          cp >>>= 2;
          dest[5] = UPPER_HEX_DIGITS[cp & 0xF];
          cp >>>= 4;
          dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/PercentEscaper.java

          dest[6] = '%';
          dest[9] = '%';
          dest[11] = UPPER_HEX_DIGITS[cp & 0xF];
          cp >>>= 4;
          dest[10] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
          cp >>>= 2;
          dest[8] = UPPER_HEX_DIGITS[cp & 0xF];
          cp >>>= 4;
          dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
          cp >>>= 2;
          dest[5] = UPPER_HEX_DIGITS[cp & 0xF];
          cp >>>= 4;
          dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. test/fixedbugs/issue5809.go

    package main
    
    import "fmt"
    
    func main() {
    	const d16 = "0123456789ABCDEF"
    	k := 0x1234
    	var x [4]byte
    	
    	x[0] = d16[k>>12&0xf]
    	x[1] = d16[k>>8&0xf]
    	x[2] = d16[k>>4&0xf]
    	x[3] = d16[k&0xf]
    	
    	if x != [4]byte{'1','2','3','4'} {
    		fmt.Println(x)
    		panic("x != [4]byte{'1','2','3','4'}")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 529 bytes
    - Viewed (0)
  5. 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)
  6. src/runtime/defs1_solaris_amd64.go

    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGEMT    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    	_SIGBUS    = 0xa
    	_SIGSEGV   = 0xb
    	_SIGSYS    = 0xc
    	_SIGPIPE   = 0xd
    	_SIGALRM   = 0xe
    	_SIGTERM   = 0xf
    	_SIGURG    = 0x15
    	_SIGSTOP   = 0x17
    	_SIGTSTP   = 0x18
    	_SIGCONT   = 0x19
    	_SIGCHLD   = 0x12
    	_SIGTTIN   = 0x1a
    	_SIGTTOU   = 0x1b
    	_SIGIO     = 0x16
    	_SIGXCPU   = 0x1e
    	_SIGXFSZ   = 0x1f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:40:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/encoding/json/indent.go

    			dst = append(dst, src[start:i]...)
    			dst = append(dst, '\\', 'u', '0', '0', hex[c>>4], hex[c&0xF])
    			start = i + 1
    		}
    		// Convert U+2028 and U+2029 (E2 80 A8 and E2 80 A9).
    		if c == 0xE2 && i+2 < len(src) && src[i+1] == 0x80 && src[i+2]&^1 == 0xA8 {
    			dst = append(dst, src[start:i]...)
    			dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
    			start = i + len("\u2029")
    		}
    	}
    	return append(dst, src[start:]...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition.go

    	return instr&0xe000 != 0xe000
    }
    func dc_sys_cr_system_cond(instr uint32) bool {
    	return sys_op_4((instr>>16)&0x7, 0x7, (instr>>8)&0xf, (instr>>5)&0x7) == sys_DC
    }
    
    func ic_sys_cr_system_cond(instr uint32) bool {
    	return sys_op_4((instr>>16)&0x7, 0x7, (instr>>8)&0xf, (instr>>5)&0x7) == sys_IC
    }
    
    func lsl_ubfm_32m_bitfield_cond(instr uint32) bool {
    	return instr&0xfc00 != 0x7c00 && (instr>>10)&0x3f+1 == (instr>>16)&0x3f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. src/runtime/atomic_mips64x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    #include "textflag.h"
    
    #define SYNC	WORD $0xf
    
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 300 bytes
    - Viewed (0)
  10. 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)
Back to top