Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for H0 (0.02 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		// words, cc = c * 4 for the c in the reduction identity.
    		h0, h1, h2 = t0, t1, t2&maskLow2Bits
    		cc := uint128{t2 & maskNotLow2Bits, t3}
    
    		// To add c * 5 to h, we first add cc = c * 4, and then add (cc >> 2) = c.
    
    		h0, c = bits.Add64(h0, cc.lo, 0)
    		h1, c = bits.Add64(h1, cc.hi, c)
    		h2 += c
    
    		cc = shiftRightBy2(cc)
    
    		h0, c = bits.Add64(h0, cc.lo, 0)
    		h1, c = bits.Add64(h1, cc.hi, c)
    		h2 += c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s

    	MULHDU r1, h0, t4;  \
    	MULLD  r1, h0, h0;  \
    	ADDE   t5, t2, t2;  \
    	ADDC   h0, t1, t1;  \
    	MULLD  h2, r1, t3;  \
    	ADDZE  t4, h0;      \
    	MULHDU r1, h1, t5;  \
    	MULLD  r1, h1, t4;  \
    	ADDC   t4, t2, t2;  \
    	ADDE   t5, t3, t3;  \
    	ADDC   h0, t2, t2;  \
    	MOVD   $-4, t4;     \
    	ADDZE  t3;          \
    	RLDICL $0, t2, $62, h2; \
    	AND    t2, t4, h0;  \
    	ADDC   t0, h0, h0;  \
    	ADDE   t3, t1, h1;  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. 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)
  4. src/crypto/sha512/sha512block_riscv64.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: Thu Mar 07 14:57:07 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256block_386.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
    - 8.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top