Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for l0 (0.02 sec)

  1. src/crypto/internal/edwards25519/field/fe.go

    	c := (v.l0 + 19) >> 51
    	c = (v.l1 + c) >> 51
    	c = (v.l2 + c) >> 51
    	c = (v.l3 + c) >> 51
    	c = (v.l4 + c) >> 51
    
    	// If v < 2^255 - 19 and c = 0, this will be a no-op. Otherwise, it's
    	// effectively applying the reduction identity to the carry.
    	v.l0 += 19 * c
    
    	v.l1 += v.l0 >> 51
    	v.l0 = v.l0 & maskLow51Bits
    	v.l2 += v.l1 >> 51
    	v.l1 = v.l1 & maskLow51Bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      }
    
      // Calculates dimension for the label L from L0,...,Ln in lhs.
      if (dnums.lhs_out.empty()) {
        lhs_shape.push_back(1);
        out_shape->push_back(1);
        dnums.lhs_out.emplace_back(lhs_shape.size() - 1, out_shape->size() - 1);
        ++num_lhs_reshape_segids;
      } else if (dnums.lhs_rhs_out.empty()) {
        // If there is not batch labels B0,...,Bn, it is safe to use L0,...,Ln as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                mv.visitCode();
                Label l0 = new Label();
                mv.visitLabel(l0);
                mv.visitVarInsn(Opcodes.ALOAD, 0);
                mv.visitFieldInsn(Opcodes.GETFIELD, className, booleanField, "Z");
                mv.visitInsn(Opcodes.IRETURN);
                Label l1 = new Label();
                mv.visitLabel(l1);
                mv.visitLocalVariable("this", "L" + className + ";", null, l0, l1, 0);
                mv.visitMaxs(1, 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/likelyadjust.go

    				certain[b.ID] = min8(certain[b0], certain[b1])
    
    				l := b2l[b.ID]
    				l0 := b2l[b0]
    				l1 := b2l[b1]
    
    				prediction := b.Likely
    				// Weak loop heuristic -- both source and at least one dest are in loops,
    				// and there is a difference in the destinations.
    				// TODO what is best arrangement for nested loops?
    				if l != nil && l0 != l1 {
    					noprediction := false
    					switch {
    					// prefer not to exit loops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/stmt0.go

    		_ = "" /* ERROR "mismatched types untyped string and untyped int" */ + 1
    	}
    }
    
    func labels0() {
    	goto L0
    	goto L1
    	L0:
    	L1:
    	L1 /* ERROR "already declared" */ :
    	if true {
    		goto L2
    		L2:
    		L0 /* ERROR "already declared" */ :
    	}
    	_ = func() {
    		goto L0
    		goto L1
    		goto L2
    		L0:
    		L1:
    		L2:
    	}
    }
    
    func expression_statements(ch chan int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/field/fe_test.go

    	return reflect.ValueOf(generateFieldElement(rand))
    }
    
    // isInBounds returns whether the element is within the expected bit size bounds
    // after a light reduction.
    func isInBounds(x *Element) bool {
    	return bits.Len64(x.l0) <= 52 &&
    		bits.Len64(x.l1) <= 52 &&
    		bits.Len64(x.l2) <= 52 &&
    		bits.Len64(x.l3) <= 52 &&
    		bits.Len64(x.l4) <= 52
    }
    
    func TestMultiplyDistributesOverAdd(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. src/strconv/ftoaryu.go

    		// Inverse powers of ten must be rounded up.
    		pow[0] += 1
    	}
    	e2 += mulByLog10Log2(q) - 127 + 119
    
    	// long multiplication
    	l1, l0 := bits.Mul64(m, pow[0])
    	h1, h0 := bits.Mul64(m, pow[1])
    	mid, carry := bits.Add64(l1, h0, 0)
    	h1 += carry
    	return h1<<9 | mid>>55, e2, mid<<9 == 0 && l0 == 0
    }
    
    func divisibleByPower5(m uint64, k int) bool {
    	if m == 0 {
    		return true
    	}
    	for i := 0; i < k; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    00000380  a6 cf f4 f4 b4 2c 08 0c  03 50 ac 47 74 ad 24 f1  |.....,...P.Gt.$.|
    00000390  04 f3 d4 83 42 3f 35 a5  57 ff ab 59 0c 9a a2 ca  |....B?5.W..Y....|
    000003a0  6c 30 b7 87 73 af 53 f9  1d 6b e7 44 ec d1 bd 14  |l0..s.S..k.D....|
    000003b0  15 09 cf ff 82 5e a2 6d  ba 00 53 b8 b3 7c 0e e5  |.....^.m..S..|..|
    000003c0  d1 e2 a2 38 25 88 aa ee  93 c8 d9 d1 88 42 42 90  |...8%........BB.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/riscv64/asm.go

    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"fmt"
    	"log"
    	"sort"
    )
    
    // fakeLabelName matches the RISCV_FAKE_LABEL_NAME from binutils.
    const fakeLabelName = ".L0 "
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {}
    
    func findHI20Reloc(ldr *loader.Loader, s loader.Sym, val int64) *loader.Reloc {
    	outer := ldr.OuterSym(s)
    	if outer == 0 {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadelf/ldelf.go

    					// clang on arm and riscv64.
    					// This reportedly happens with clang 3.7 on ARM.
    					// See issue 13139.
    					continue
    				}
    				if strings.HasPrefix(elfsym.name, ".Ldebug_") || elfsym.name == ".L0 " {
    					// gcc on riscv64.
    					continue
    				}
    				if elfsym.name == ".Lline_table_start0" {
    					// clang on riscv64.
    					continue
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top