Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 235 for B3 (0.04 sec)

  1. src/crypto/tls/testdata/Client-TLSv13-HelloRetryRequest

    00000150  cd 28 05 1c ea 28 8d 63  a3 41 e2 3a 24 27 f4 43  |.(...(.c.A.:$'.C|
    00000160  97 c8 89 09 ed 8b 96 74  b3 dc 98 f4 0c c2 6f 25  |.......t......o%|
    00000170  fc 30 8a f8 25 49 e1 91  fb c6 39 23 ca d5 16 08  |.0..%I....9#....|
    00000180  5f bf 10 88 71 a4 c5 ac  e7 ad 9e 5a 4d e8 d3 1f  |_...q......ZM...|
    00000190  f0 5d 83 9d c9 e2 b3 f8  e4 a3 a5 57 5d ca 30 74  |.].........W].0t|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-ECDSA

    00000270  6e c2 a6 95 60 f3 86 20  29 a6 a8 8f b3 b0 0d 57  |n...`.. )......W|
    00000280  d2 1e 4a b9 d2 63 33 09  f9 c5 87 94 89 c5 fd 2e  |..J..c3.........|
    00000290  de b3 f0 0e 7b 4e 3e d6  21 b4 3b 58 bd 2a 35 49  |....{N>.!.;X.*5I|
    000002a0  5e b0 f4 5a ca 58 dc a5  8b 45 a5 d1 7b 13 b2 00  |^..Z.X...E..{...|
    000002b0  52 c4 b2 6c d1 9a b8 c5  1b fe 17 03 03 00 35 c9  |R..l..........5.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue32680b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func hashBytesRaw(b0, b1, b2, b3, b7 byte) uint64 {
    	return (uint64(b0) | uint64(b1)<<8 | uint64(b2)<<16 | uint64(b3)<<24)
    }
    
    func doStuff(data []byte) uint64 {
    	return hashBytesRaw(data[0], data[1], data[2], data[3], data[7])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 412 bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv13-P256-ECDHE

    00000340  fb 93 1f a6 7a 86 3c 5e  88 e5 75 d4 a1 73 4a b3  |....z.<^..u..sJ.|
    00000350  0b 99 f1 a6 98 5f 6d 0f  00 0e 4f fa a3 5e 7d f0  |....._m...O..^}.|
    00000360  41 dd dd 5c 71 3b 10 f9  75 07 d5 6c f2 83 83 5c  |A..\q;..u..l...\|
    00000370  60 32 d9 d2 b3 13 1b 6c  84 2b 02 58 da b6 18 4e  |`2.....l.+.X...N|
    00000380  ea 7d b3 46 2b a9 ec e7  65 3a 8e 2f 77 48 92 72  |.}.F+...e:./wH.r|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue48558.go

    	a2, b2 := f1()     // ERROR "assignment mismatch: 2 variables but f1 returns 1 value"
    	a3, b3, c3 := f2() // ERROR "assignment mismatch: 3 variables but f2 returns 2 values"
    
    	_ = a1
    	_, _ = a2, b2
    	_, _, _ = a3, b3, c3
    }
    
    type T struct{}
    
    func (T) f1() int
    func (T) f2() (int, int)
    func (T) f3() (int, int, int)
    
    func _(x T) {
    	_ = x.f1()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/mlrt/assign_op_key.mlir

      %b1 = "tf.Sub"(%b0, %b) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      %b2 = "tf.Sub"(%b1, %b) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      %b3 = "tf.Sub"(%b2, %b) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
      %c = "tf.AddV2"(%a3, %b3) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
      func.return %c : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_lazy_downgrade.txt

    go 1.17
    
    require example.com/c v0.1.0
    -- b2/b.go --
    package b
    -- b2/b_test.go --
    package b_test
    import _ "example.com/c"
    
    -- b3/go.mod --
    module example.com/b
    
    go 1.17
    
    require example.com/c v0.2.0
    -- b3/b.go --
    package b
    -- b3/b_test.go --
    package b_test
    import _ "example.com/c"
    
    -- c/go.mod --
    module example.com/c
    
    go 1.17
    -- c/c.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndEd25519Given

    00000020  ea 31 dc 66 11 66 bd 77  33 54 bf 20 38 77 15 8d  |.1.f.f.w3T. 8w..|
    00000030  b4 21 50 72 6f 95 61 6c  15 b8 35 c9 92 10 72 99  |.!Pro.al..5...r.|
    00000040  bc 41 03 53 7c 5e 7b b3  a4 2e b4 19 00 04 13 01  |.A.S|^{.........|
    00000050  00 ff 01 00 00 79 00 0b  00 04 03 00 01 02 00 0a  |.....y..........|
    00000060  00 0c 00 0a 00 1d 00 17  00 1e 00 19 00 18 00 16  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-IssueTicket

    00000210  01 6d 6d 31 dc 77 62 b8  3e 72 b0 ab 4d da ea 6d  |.mm1.wb.>r..M..m|
    00000220  9a 2d 0e 5d b7 8e cc bc  5c 0a b3 13 5b 8c 86 de  |.-.]....\...[...|
    00000230  e3 1a 70 cd 9d 63 4c ea  e2 56 f9 3b 05 8e 0b 96  |..p..cL..V.;....|
    00000240  16 c9 a4 67 09 fe 88 ae  4b 8c d1 b3 19 10 0f fd  |...g....K.......|
    00000250  07 33 86 3a 6a 54 ef 69  27 02 bf 76 7c 05 ab 40  |.3.:jT.i'..v|..@|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe_amd64.s

    	// r2 += 19×a3×b4
    	MOVQ   24(CX), AX
    	IMUL3Q $0x13, AX, AX
    	MULQ   32(BX)
    	ADDQ   AX, R11
    	ADCQ   DX, R10
    
    	// r2 += 19×a4×b3
    	MOVQ   32(CX), AX
    	IMUL3Q $0x13, AX, AX
    	MULQ   24(BX)
    	ADDQ   AX, R11
    	ADCQ   DX, R10
    
    	// r3 = a0×b3
    	MOVQ (CX), AX
    	MULQ 24(BX)
    	MOVQ AX, R13
    	MOVQ DX, R12
    
    	// r3 += a1×b2
    	MOVQ 8(CX), AX
    	MULQ 16(BX)
    	ADDQ AX, R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top