Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for H0 (0.02 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VESLG  $2, T_3, T_4  \
    	VAG    T_3, T_4, T_4 \
    	VAG    T_2, h2, h2   \
    	VAG    T_4, h0, h0   \
    	VESRLG $26, h2, T_0  \
    	VESRLG $26, h0, T_1  \
    	VN     MOD26, h2, h2 \
    	VN     MOD26, h0, h0 \
    	VAG    T_0, h3, h3   \
    	VAG    T_1, h1, h1   \
    	VESRLG $26, h3, T_2  \
    	VN     MOD26, h3, h3 \
    	VAG    T_2, h4, h4
    
    // EXPAND splits the 128-bit little-endian values in0 and in1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/crypto/internal/boring/sha.go

    	if len(p) > 0 && C._goboringcrypto_SHA1_Update(h.noescapeCtx(), unsafe.Pointer(&*addr(p)), C.size_t(len(p))) == 0 {
    		panic("boringcrypto: SHA1_Update failed")
    	}
    	return len(p), nil
    }
    
    func (h0 *sha1Hash) sum(dst []byte) []byte {
    	h := *h0 // make copy so future Write+Sum is valid
    	if C._goboringcrypto_SHA1_Final((*C.uint8_t)(noescape(unsafe.Pointer(&h.out[0]))), h.noescapeCtx()) == 0 {
    		panic("boringcrypto: SHA1_Final failed")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/internal/notsha256/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: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    	case arg_Dd:
    		return D0 + Reg(x&(1<<5-1))
    
    	case arg_Dm:
    		return D0 + Reg((x>>16)&(1<<5-1))
    
    	case arg_Dn:
    		return D0 + Reg((x>>5)&(1<<5-1))
    
    	case arg_Hd:
    		return H0 + Reg(x&(1<<5-1))
    
    	case arg_Hn:
    		return H0 + Reg((x>>5)&(1<<5-1))
    
    	case arg_IAddSub:
    		imm12 := (x >> 10) & (1<<12 - 1)
    		shift := (x >> 22) & (1<<2 - 1)
    		if shift > 1 {
    			return nil
    		}
    		shift = shift * 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K 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. src/cmd/internal/notsha256/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: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. 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)
Back to top