Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for l0 (0.05 sec)

  1. src/internal/types/testdata/check/builtins1.go

    	copy(x, y)
    	copy(y /* ERROR "expects slice arguments" */ , x)
    }
    
    func _[T ~[]byte|~string](x T, y []byte) {
    	copy(x /* ERROR "expects slice arguments" */ , y)
    	copy(y, x)
    }
    
    type L0 []int
    type L1 []int
    
    func _[T L0 | L1](x, y T) {
    	copy(x, y)
    }
    
    // delete
    
    type M0 interface{ int }
    type M1 interface{ map[string]int }
    type M2 interface { map[string]int | map[string]float64 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. src/go/types/resolver_test.go

    			}
    			switch {} // implicit 'true' tag
    		}
    		`,
    		`
    		package p
    		type S struct{}
    		func (T) _() {}
    		func (T) _() {}
    		`,
    		`
    		package p
    		func _() {
    		L0:
    		L1:
    			goto L0
    			for {
    				goto L1
    			}
    			if true {
    				goto L2
    			}
    		L2:
    		}
    		`,
    	}
    
    	pkgnames := []string{
    		"fmt",
    		"math",
    	}
    
    	// parse package files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/resolver_test.go

    				_ = x
    			}
    			switch {} // implicit 'true' tag
    		}
    		`,
    		`
    		package p
    		type S struct{}
    		func (T) _() {}
    		func (T) _() {}
    		`,
    		`
    		package p
    		func _() {
    		L0:
    		L1:
    			goto L0
    			for {
    				goto L1
    			}
    			if true {
    				goto L2
    			}
    		L2:
    		}
    		`,
    	}
    
    	pkgnames := []string{
    		"fmt",
    		"math",
    	}
    
    	// parse package files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/debug.go

    	}
    
    	// One predecessor
    	l0 := blockLocs[preds[0].ID]
    	p0 := l0.endState
    	if len(preds) == 1 {
    		if previousBlock != nil && preds[0].ID != previousBlock.ID {
    			// Change from previous block is its endState minus the predecessor's endState
    			markChangedVars(blockLocs[previousBlock.ID].endState, p0)
    		}
    		locs.startState = p0
    		blockChanged = blockChanged || l0.lastChangedTime > locs.lastCheckedTime
    		reset(p0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K 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