Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for 0x08 (0.04 sec)

  1. src/crypto/rsa/pss_test.go

    		0x4c, 0xd3, 0x73, 0x9c, 0x6b, 0xbf, 0xed, 0xae, 0x48, 0x7f,
    		0xb5, 0x56, 0x44, 0xe9, 0xca, 0x74, 0xff, 0x77, 0xa5, 0x3c,
    		0xb7, 0x29, 0x80, 0x2f, 0x6e, 0xd4, 0xa5, 0xff, 0xa8, 0xba,
    		0x15, 0x98, 0x90, 0xfc,
    	}
    	salt := []byte{
    		0xe3, 0xb5, 0xd5, 0xd0, 0x02, 0xc1, 0xbc, 0xe5, 0x0c, 0x2b,
    		0x65, 0xef, 0x88, 0xa1, 0x88, 0xd8, 0x3b, 0xce, 0x7e, 0x61,
    	}
    	expected := []byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/compress/lzw/reader_test.go

    	// decoderInvalidCode.
    	//
    	// The 12 'y' bits form the 3841'st code, with value 0x101, the EOF code.
    	//
    	// The 'z' bit is unused.
    	in := make([]byte, 5406)
    	in = append(in, 0x80, 0xff, 0x0f, 0x08)
    
    	r := NewReader(bytes.NewReader(in), LSB, 8)
    	nDecoded, err := io.Copy(io.Discard, r)
    	if err != nil {
    		t.Fatalf("Copy: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    DATA consts<>+0x48(SB)/8, $0x0102030005060704
    DATA consts<>+0x50(SB)/8, $0x6170786561707865
    DATA consts<>+0x58(SB)/8, $0x6170786561707865
    DATA consts<>+0x60(SB)/8, $0x3320646e3320646e
    DATA consts<>+0x68(SB)/8, $0x3320646e3320646e
    DATA consts<>+0x70(SB)/8, $0x79622d3279622d32
    DATA consts<>+0x78(SB)/8, $0x79622d3279622d32
    DATA consts<>+0x80(SB)/8, $0x6b2065746b206574
    DATA consts<>+0x88(SB)/8, $0x6b2065746b206574
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/crypto/md5/md5block_arm.s

    	CMP	Rt0, Rdata
    	BLO	loop
    
    	RET
    
    // MD5 constants table
    
    	// Round 1
    	DATA	·table+0x00(SB)/4, $0xd76aa478
    	DATA	·table+0x04(SB)/4, $0xe8c7b756
    	DATA	·table+0x08(SB)/4, $0x242070db
    	DATA	·table+0x0c(SB)/4, $0xc1bdceee
    	DATA	·table+0x10(SB)/4, $0xf57c0faf
    	DATA	·table+0x14(SB)/4, $0x4787c62a
    	DATA	·table+0x18(SB)/4, $0xa8304613
    	DATA	·table+0x1c(SB)/4, $0xfd469501
    	DATA	·table+0x20(SB)/4, $0x698098d8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils_test.cc

                            /*unpacked_values=*/{0x01, 0x02, 0x03, 0x04},
                            /*pack_dim=*/0,
                            /*expected_packed_shape=*/{1, 2},
                            /*expected_packed_values=*/{0x31, 0x42});
    }
    
    TEST(TfToXlaAttributeUtilsTest, PackOperandPackDimSizeOdd) {
      PackOperandTestHelper(
          /*unpacked_shape=*/{2, 3},
          /*unpacked_values=*/{0x01, 0x02, 0x03, 0x04, 0x05, 0x06},
          /*pack_dim=*/1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/convert/BinaryConversionUtilTest.java

         * .
         */
        @Test
        public void testToBinary() {
            assertThat(BinaryConversionUtil.toBinary(null), nullValue());
            final byte[] b = { 0x00, 0x01 };
            assertThat(BinaryConversionUtil.toBinary(b), is(b));
            assertThat(BinaryConversionUtil.toBinary("hoge"), is("hoge".getBytes()));
        }
    
        /**
         * Test method for
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. src/net/addrselect.go

    		Label:      3,
    	},
    	{
    		// "2001::/32"
    		// Teredo
    		Prefix:     netip.PrefixFrom(netip.AddrFrom16([16]byte{0x20, 0x01}), 32),
    		Precedence: 5,
    		Label:      5,
    	},
    	{
    		// "2002::/16"
    		// 6to4
    		Prefix:     netip.PrefixFrom(netip.AddrFrom16([16]byte{0x20, 0x02}), 16),
    		Precedence: 30,
    		Label:      2,
    	},
    	{
    		// "3ffe::/16"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loong64/obj.go

    	theArch := ld.Arch{
    		Funcalign:        funcAlign,
    		Maxalign:         maxAlign,
    		Minalign:         minAlign,
    		Dwarfregsp:       dwarfRegSP,
    		Dwarfreglr:       dwarfRegLR,
    		CodePad:          []byte{0x00, 0x00, 0x2a, 0x00}, // BREAK 0
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Extreloc:         extreloc,
    		Machoreloc1:      machoreloc1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 13:49:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/crypto/ecdh/nist.go

    	scalarOrder: p521Order,
    }
    
    var p521Order = []byte{0x01, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa,
    	0x51, 0x86, 0x87, 0x83, 0xbf, 0x2f, 0x96, 0x6b,
    	0x7f, 0xcc, 0x01, 0x48, 0xf7, 0x09, 0xa5, 0xd0,
    	0x3b, 0xb5, 0xc9, 0xb8, 0x89, 0x9c, 0x47, 0xae,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/hashes.go

    func new224Generic() *state {
    	return &state{rate: 144, outputLen: 28, dsbyte: 0x06}
    }
    
    func new256Generic() *state {
    	return &state{rate: 136, outputLen: 32, dsbyte: 0x06}
    }
    
    func new384Generic() *state {
    	return &state{rate: 104, outputLen: 48, dsbyte: 0x06}
    }
    
    func new512Generic() *state {
    	return &state{rate: 72, outputLen: 64, dsbyte: 0x06}
    }
    
    // NewLegacyKeccak256 creates a new Keccak-256 hash.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top