Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 446 for 0x3f (0.16 sec)

  1. src/crypto/hmac/hmac_test.go

    			0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
    			0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
    			0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
    			0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
    			0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
    			0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
    			0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,
    			0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 18:38:14 UTC 2020
    - 21.8K bytes
    - Viewed (0)
  2. 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)
  3. src/encoding/pem/pem_test.go

    		0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x30, 0x1e, 0x17,
    		0xd, 0x30, 0x39, 0x30, 0x39, 0x30, 0x39, 0x32, 0x32, 0x30,
    		0x35, 0x34, 0x33, 0x5a, 0x17, 0xd, 0x31, 0x30, 0x30, 0x39,
    		0x30, 0x39, 0x32, 0x32, 0x30, 0x35, 0x34, 0x33, 0x5a, 0x30,
    		0x6a, 0x31, 0xb, 0x30, 0x9, 0x6, 0x3, 0x55, 0x4, 0x6, 0x13,
    		0x2, 0x41, 0x55, 0x31, 0x13, 0x30, 0x11, 0x6, 0x3, 0x55, 0x4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/jcifs/smb1/util/Encdec.java

        {
            return (short)(((src[si] & 0xFF) << 8) | (src[si + 1] & 0xFF));
        }
        public static int dec_uint32be( byte[] src, int si )
        {
            return ((src[si] & 0xFF) << 24) | ((src[si + 1] & 0xFF) << 16) |
                   ((src[si + 2] & 0xFF) << 8) | (src[si + 3] & 0xFF);
        }
        public static short dec_uint16le( byte[] src, int si )
        {
            return (short)((src[si] & 0xFF) | ((src[si + 1] & 0xFF) << 8));
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_TAG_template_type_parameter  = 0x2f
    	DW_TAG_template_value_parameter = 0x30
    	DW_TAG_thrown_type              = 0x31
    	DW_TAG_try_block                = 0x32
    	DW_TAG_variant_part             = 0x33
    	DW_TAG_variable                 = 0x34
    	DW_TAG_volatile_type            = 0x35
    	// Dwarf3
    	DW_TAG_dwarf_procedure  = 0x36
    	DW_TAG_restrict_type    = 0x37
    	DW_TAG_interface_type   = 0x38
    	DW_TAG_namespace        = 0x39
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/java/jcifs/util/Encdec.java

            dst[ di++ ] = (byte) ( ( s >> 8 ) & 0xFF );
            dst[ di ] = (byte) ( s & 0xFF );
            return 2;
        }
    
    
        public static int enc_uint32be ( int i, byte[] dst, int di ) {
            dst[ di++ ] = (byte) ( ( i >> 24 ) & 0xFF );
            dst[ di++ ] = (byte) ( ( i >> 16 ) & 0xFF );
            dst[ di++ ] = (byte) ( ( i >> 8 ) & 0xFF );
            dst[ di ] = (byte) ( i & 0xFF );
            return 4;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
Back to top