Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for 0x3f (0.1 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition.go

    func bfi_bfm_32m_bitfield_cond(instr uint32) bool {
    	return (instr>>5)&0x1f != 0x1f && uint8((instr>>10)&0x3f) < uint8((instr>>16)&0x3f)
    }
    
    func bfi_bfm_64m_bitfield_cond(instr uint32) bool {
    	return (instr>>5)&0x1f != 0x1f && uint8((instr>>10)&0x3f) < uint8((instr>>16)&0x3f)
    }
    
    func bfxil_bfm_32m_bitfield_cond(instr uint32) bool {
    	return uint8((instr>>10)&0x3f) >= uint8((instr>>16)&0x3f)
    }
    
    func bfxil_bfm_64m_bitfield_cond(instr uint32) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/crypto/des/block.go

    	t = r ^ uint32(k0>>32)
    	l ^= feistelBox[7][t&0x3f] ^
    		feistelBox[5][(t>>8)&0x3f] ^
    		feistelBox[3][(t>>16)&0x3f] ^
    		feistelBox[1][(t>>24)&0x3f]
    
    	t = ((r << 28) | (r >> 4)) ^ uint32(k0)
    	l ^= feistelBox[6][(t)&0x3f] ^
    		feistelBox[4][(t>>8)&0x3f] ^
    		feistelBox[2][(t>>16)&0x3f] ^
    		feistelBox[0][(t>>24)&0x3f]
    
    	t = l ^ uint32(k1>>32)
    	r ^= feistelBox[7][t&0x3f] ^
    		feistelBox[5][(t>>8)&0x3f] ^
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/Base64.java

            while (i < length) {
                block = ((bytes[i++] & 0xff) << 16) | ((bytes[i++] & 0xff) << 8) |
                        (bytes[i++] & 0xff);
                buffer.append(ALPHABET.charAt(block >>> 18));
                buffer.append(ALPHABET.charAt((block >>> 12) & 0x3f));
                buffer.append(ALPHABET.charAt((block >>> 6) & 0x3f));
                buffer.append(ALPHABET.charAt(block & 0x3f));
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  4. src/crypto/cipher/cbc_aes_test.go

    			0x50, 0x86, 0xcb, 0x9b, 0x50, 0x72, 0x19, 0xee, 0x95, 0xdb, 0x11, 0x3a, 0x91, 0x76, 0x78, 0xb2,
    			0x73, 0xbe, 0xd6, 0xb8, 0xe3, 0xc1, 0x74, 0x3b, 0x71, 0x16, 0xe6, 0x9e, 0x22, 0x22, 0x95, 0x16,
    			0x3f, 0xf1, 0xca, 0xa1, 0x68, 0x1f, 0xac, 0x09, 0x12, 0x0e, 0xca, 0x30, 0x75, 0x86, 0xe1, 0xa7,
    		},
    	},
    	{
    		"CBC-AES192",
    		commonKey192,
    		commonIV,
    		commonInput,
    		[]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/misc/Base64Util.java

            final int i = ((inData[inIndex] & 0xff) << 16) + ((inData[inIndex + 1] & 0xff) << 8) + (inData[inIndex + 2] & 0xff);
            outData[outIndex] = ENCODE_TABLE[i >> 18];
            outData[outIndex + 1] = ENCODE_TABLE[i >> 12 & 0x3f];
            outData[outIndex + 2] = ENCODE_TABLE[i >> 6 & 0x3f];
            outData[outIndex + 3] = ENCODE_TABLE[i & 0x3f];
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue11610.go

    // license that can be found in the LICENSE file.
    
    // Test an internal compiler error on ? symbol in declaration
    // following an empty import.
    
    package a
    var?      // ERROR "invalid character U\+003F '\?'|invalid character 0x3f in input file"
    
    var x int // ERROR "unexpected var|expected identifier|expected type"
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 455 bytes
    - Viewed (0)
  7. src/internal/bytealg/equal_arm64.s

    	CBZ	R5, not_equal
    	BNE	chunk64_loop
    	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:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:07:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2/api.pb.go

    	0x28, 0xd7, 0xd9, 0x79, 0x95, 0xd3, 0xdd, 0x60, 0x34, 0x91, 0x22, 0xf7, 0x7f, 0x0f, 0x62, 0x1f,
    	0x35, 0xfe, 0xaa, 0x3f, 0xe7, 0x29, 0x98, 0x65, 0x4b, 0xb3, 0x4f, 0xdc, 0xe6, 0x96, 0xe4, 0x16,
    	0xe1, 0xff, 0x33, 0xd9, 0xec, 0x20, 0x63, 0xd7, 0x14, 0x1b, 0xa8, 0x14, 0x43, 0x5e, 0x24, 0x52,
    	0xf1, 0x97, 0xc7, 0x65, 0x0e, 0x8a, 0xcd, 0x17, 0x50, 0xe4, 0x50, 0xf3, 0x57, 0xc5, 0xad, 0xde,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:43:30 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    	BYTE $0x30; BYTE $0x31; BYTE $0x1a; BYTE $0x33
    	BYTE $0x34; BYTE $0x35; BYTE $0x36; BYTE $0x08
    	BYTE $0x38; BYTE $0x39; BYTE $0x3a; BYTE $0x3b
    	BYTE $0x04; BYTE $0x14; BYTE $0x3e; BYTE $0xff
    	BYTE $0x41; BYTE $0xaa; BYTE $0x4a; BYTE $0xb1
    	BYTE $0x9f; BYTE $0xb2; BYTE $0x6a; BYTE $0xb5
    	BYTE $0xbb; BYTE $0xb4; BYTE $0x9a; BYTE $0x8a
    	BYTE $0xb0; BYTE $0xca; BYTE $0xaf; BYTE $0xbc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/cmd/internal/buildid/buildid.go

    	const chunks = 5
    	var dst [chunks * 4]byte
    	for i := 0; i < chunks; i++ {
    		v := uint32(h[3*i])<<16 | uint32(h[3*i+1])<<8 | uint32(h[3*i+2])
    		dst[4*i+0] = b64[(v>>18)&0x3F]
    		dst[4*i+1] = b64[(v>>12)&0x3F]
    		dst[4*i+2] = b64[(v>>6)&0x3F]
    		dst[4*i+3] = b64[v&0x3F]
    	}
    	return string(dst[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
Back to top