Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 261 for b1 (0.02 sec)

  1. src/debug/dwarf/entry.go

    			break
    		}
    
    		// Walk over attributes, counting.
    		n := 0
    		b1 := b // Read from copy of b.
    		b1.uint()
    		b1.uint8()
    		for {
    			tag := b1.uint()
    			fmt := b1.uint()
    			if tag == 0 && fmt == 0 {
    				break
    			}
    			if format(fmt) == formImplicitConst {
    				b1.int()
    			}
    			n++
    		}
    		if b1.err != nil {
    			return nil, b1.err
    		}
    
    		// Walk over attributes again, this time writing them down.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_amd64.s

    	MOVOU B0, (16*14)(dst)
    	PSHUFD $78, B0, B1
    	PXOR B0, B1
    	MOVOU B1, (16*15)(dst)
    
    	MOVOU B0, B2
    	MOVOU B1, B3
    	// Now prepare powers of H and pre-computations for them
    	MOVQ $7, AX
    
    initLoop:
    		MOVOU B2, T0
    		MOVOU B2, T1
    		MOVOU B3, T2
    		PCLMULQDQ $0x00, B0, T0
    		PCLMULQDQ $0x11, B0, T1
    		PCLMULQDQ $0x00, B1, T2
    
    		PXOR T0, T2
    		PXOR T1, T2
    		MOVOU T2, B4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultCompositeFileTreeTest.groovy

            def a1 = file("a/1.txt") << "a/1"
            def b1 = file("b/1.txt") << "b/1"
            def fileResolver = TestFiles.fileCollectionFactory(testDirectory)
    
            when:
            def a = fileResolver.resolving(["a"]).asFileTree
            def b = fileResolver.resolving(["b"]).asFileTree
            def composite = newCompositeFileTree([a, b])
    
            then:
            composite.files == [a1, b1].toSet()
        }
    
        def "can visit all files"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

            createDirs("buildB", "buildB/buildSrc", "buildB/buildSrc/b1", "buildB/buildSrc/b2")
            buildB.file("buildSrc/settings.gradle") << """
                $settings
                include 'b1', 'b2'
            """
            buildB.file("buildSrc/build.gradle") << """
                allprojects { apply plugin: 'java' }
                dependencies { implementation project(':b1') }
                project(':b1') { dependencies { implementation project(':b2') } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/sccp_test.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"strings"
    	"testing"
    )
    
    func TestSCCPBasic(t *testing.T) {
    	c := testConfig(t)
    	fun := c.Fun("b1",
    		Bloc("b1",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("v1", OpConst64, c.config.Types.Int64, 20, nil),
    			Valu("v2", OpConst64, c.config.Types.Int64, 21, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

            buildB.buildFile << """
                dependencies { implementation project(':b1') }
            """
    
            when:
            execute(buildA, ":dependencies")
    
            then:
            outputContains("""
    runtimeClasspath - Runtime classpath of source set 'main'.
    \\--- org.test:${dependencyName}:1.0 -> project :${buildName}
         \\--- project :${buildName}:b1
    """)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_issue65363.txt

    replace (
    	example.net/a v0.1.0 => ./a
    	example.net/b v0.1.0 => ./b1
    	example.net/b v0.2.0 => ./b2
    	example.net/c v0.1.0 => ./c1
    	example.net/c v0.2.0 => ./c2
    	example.net/d v0.1.0 => ./d
    )
    
    require (
    	example.net/b v0.1.0
    )
    -- a/go.mod --
    module example.net/a
    
    go 1.18
    
    require example.net/b v0.2.0
    -- a/a.go --
    package a
    
    import _ "example.net/b"
    -- b1/go.mod --
    module example.net/b
    
    go 1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/internal/chacha8rand/rand_test.go

    }
    
    func TestBlockGeneric(t *testing.T) {
    	var b1, b2 [32]uint64
    	s := seed // byte seed
    	seed := [4]uint64{
    		binary.LittleEndian.Uint64(s[0*8:]),
    		binary.LittleEndian.Uint64(s[1*8:]),
    		binary.LittleEndian.Uint64(s[2*8:]),
    		binary.LittleEndian.Uint64(s[3*8:]),
    	}
    
    	Block(&seed, &b1, 4)
    	Block_generic(&seed, &b2, 4)
    	if !slices.Equal(b1[:], b2[:]) {
    		var out bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    	addMul64(r0, 19, a4, b1)
    
    	// r1 = a0×b1 + a1×b0 + 19×(a2×b4 + a3×b3 + a4×b2)
    	r1 := uint128{"r1", GP64(), GP64()}
    	mul64(r1, 1, a0, b1)
    	addMul64(r1, 1, a1, b0)
    	addMul64(r1, 19, a2, b4)
    	addMul64(r1, 19, a3, b3)
    	addMul64(r1, 19, a4, b2)
    
    	// r2 = a0×b2 + a1×b1 + a2×b0 + 19×(a3×b4 + a4×b3)
    	r2 := uint128{"r2", GP64(), GP64()}
    	mul64(r2, 1, a0, b2)
    	addMul64(r2, 1, a1, b1)
    	addMul64(r2, 1, a2, b0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue32680b.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func hashBytesRaw(b0, b1, b2, b3, b7 byte) uint64 {
    	return (uint64(b0) | uint64(b1)<<8 | uint64(b2)<<16 | uint64(b3)<<24)
    }
    
    func doStuff(data []byte) uint64 {
    	return hashBytesRaw(data[0], data[1], data[2], data[3], data[7])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 412 bytes
    - Viewed (0)
Back to top