Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for H0 (0.67 sec)

  1. src/crypto/aes/gcm_arm64.s

    dataTLS:
    	ADD	$14*16, pTbl
    	VLD1.P	(pTbl), [T1.B16, T2.B16]
    	VEOR	B0.B16, B0.B16, B0.B16
    
    	MOVD	(aut), H0
    	VMOV	H0, B0.D[0]
    	MOVW	8(aut), H0
    	VMOV	H0, B0.S[2]
    	MOVB	12(aut), H0
    	VMOV	H0, B0.B[12]
    
    	MOVD	$0, autLen
    	B	dataMul
    
    octetsLoop:
    		CMP	$128, autLen
    		BLT	startSinglesLoop
    		SUB	$128, autLen
    
    		VLD1.P	32(aut), [B0.B16, B1.B16]
    
    		VLD1.P	32(pTbl), [T1.B16, T2.B16]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. src/image/jpeg/scan.go

    		} else {
    			b[u] -= delta
    		}
    	}
    	return zig, nil
    }
    
    func (d *decoder) reconstructProgressiveImage() error {
    	// The h0, mxx, by and bx variables have the same meaning as in the
    	// processSOS method.
    	h0 := d.comp[0].h
    	mxx := (d.width + 8*h0 - 1) / (8 * h0)
    	for i := 0; i < d.nComp; i++ {
    		if d.progCoeffs[i] == nil {
    			continue
    		}
    		v := 8 * d.comp[0].v / d.comp[i].v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256block_amd64.s

    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    // g = H6
    // h = H7
    //
    // for t = 0 to 63 {
    //    T1 = h + BIGSIGMA1(e) + Ch(e,f,g) + Kt + Wt
    //    T2 = BIGSIGMA0(a) + Maj(a,b,c)
    //    h = g
    //    g = f
    //    f = e
    //    e = d + T1
    //    d = c
    //    c = b
    //    b = a
    //    a = T1 + T2
    // }
    //
    // H0 = a + H0
    // H1 = b + H1
    // H2 = c + H2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512block_ppc64x.s

    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    // g = H6
    // h = H7
    //
    // for t = 0 to 79 {
    //    T1 = h + BIGSIGMA1(e) + Ch(e,f,g) + Kt + Wt
    //    T2 = BIGSIGMA0(a) + Maj(a,b,c)
    //    h = g
    //    g = f
    //    f = e
    //    e = d + T1
    //    d = c
    //    c = b
    //    b = a
    //    a = T1 + T2
    // }
    //
    // H0 = a + H0
    // H1 = b + H1
    // H2 = c + H2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_distributed_test.cc

      const char task1_name[] = "/job:localhost/replica:0/task:1/device:CPU:0";
      const char task2_name[] = "/job:localhost/replica:0/task:2/device:CPU:0";
    
      // Create one variable per task.
      TFE_TensorHandle* h0 = TestVariable(ctx, 1.0, task1_name);
      TFE_TensorHandle* h1 = TestVariable(ctx, 2.0, task2_name);
      TFE_TensorHandle* h2 = TestVariable(ctx, 3.0, task0_name);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256block_ppc64x.s

    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    // g = H6
    // h = H7
    //
    // for t = 0 to 63 {
    //    T1 = h + BIGSIGMA1(e) + Ch(e,f,g) + Kt + Wt
    //    T2 = BIGSIGMA0(a) + Maj(a,b,c)
    //    h = g
    //    g = f
    //    f = e
    //    e = d + T1
    //    d = c
    //    c = b
    //    b = a
    //    a = T1 + T2
    // }
    //
    // H0 = a + H0
    // H1 = b + H1
    // H2 = c + H2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512block_amd64.s

    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    // g = H6
    // h = H7
    //
    // for t = 0 to 79 {
    //    T1 = h + BIGSIGMA1(e) + Ch(e,f,g) + Kt + Wt
    //    T2 = BIGSIGMA0(a) + Maj(a,b,c)
    //    h = g
    //    g = f
    //    f = e
    //    e = d + T1
    //    d = c
    //    c = b
    //    b = a
    //    a = T1 + T2
    // }
    //
    // H0 = a + H0
    // H1 = b + H1
    // H2 = c + H2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. src/crypto/rsa/pss.go

    	//
    	// 13. Let H' = Hash(M'), an octet string of length hLen.
    	var prefix [8]byte
    	hash.Write(prefix[:])
    	hash.Write(mHash)
    	hash.Write(salt)
    
    	h0 := hash.Sum(nil)
    
    	// 14. If H = H', output "consistent." Otherwise, output "inconsistent."
    	if !bytes.Equal(h0, h) { // TODO: constant time?
    		return ErrVerification
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000350  58 f7 65 0e 8d                                    |X.e..|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 28 3f eb 87 50 b0  |..........(?..P.|
    00000010  ae c2 fd 68 30 95 94 61  1c 78 1e 60 3e 38 17 ef  |...h0..a.x.`>8..|
    00000020  ed 9b f1 10 26 5e 53 a3  8c 46 2e 6c 24 b2 ab a7  |....&^S..F.l$...|
    00000030  6c f0 ea                                          |l..|
    >>> Flow 5 (client to server)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug_test.go

    	}
    	h1 := runDbgr(dbg, count)
    	if *dryrun {
    		fmt.Printf("# Tag for above is %s\n", dbg.tag())
    		return
    	}
    	if *update {
    		h1.write(nextlog)
    	} else {
    		h0 := &nextHist{}
    		h0.read(nextlog)
    		if !h0.equals(h1) {
    			// Be very noisy about exactly what's wrong to simplify debugging.
    			h1.write(tmplog)
    			cmd := testenv.Command(t, "diff", "-u", nextlog, tmplog)
    			line := asCommandLine("", cmd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top