Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 376 for b1 (0.02 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	VAF    a2, a3, a3  \
    	VAF    b2, b3, b3  \
    	VAF    c2, c3, c3  \
    	VAF    d2, d3, d3  \
    	VX     a3, a1, a1  \
    	VX     b3, b1, b1  \
    	VX     c3, c1, c1  \
    	VX     d3, d1, d1  \
    	VERLLF $12, a1, a1 \
    	VERLLF $12, b1, b1 \
    	VERLLF $12, c1, c1 \
    	VERLLF $12, d1, d1 \
    	VAF    a1, a0, a0  \
    	VAF    b1, b0, b0  \
    	VAF    c1, c0, c0  \
    	VAF    d1, d0, d0  \
    	VX     a0, a2, a2  \
    	VX     b0, b2, b2  \
    	VX     c0, c2, c2  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

                it.path == 'b1'
            }
        }
    
        def "EclipseProject model honours custom project name"() {
            when:
            buildB.buildFile << """
                subprojects {
                    apply plugin: 'eclipse'
                    eclipse {
                        project.name = project.name + "-renamed"
                    }
                }
                project(":b1") {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_arm64.s

    	// Karatsuba pre-computation
    	VEXT	$8, B0.B16, B0.B16, B1.B16
    	VEOR	B0.B16, B1.B16, B1.B16
    
    	ADD	$14*16, pTbl
    	VST1	[B0.B16, B1.B16], (pTbl)
    	SUB	$2*16, pTbl
    
    	VMOV	B0.B16, B2.B16
    	VMOV	B1.B16, B3.B16
    
    	MOVD	$7, I
    
    initLoop:
    	// Compute powers of H
    	SUBS	$1, I
    
    	VPMULL	B0.D1, B2.D1, T1.Q1
    	VPMULL2	B0.D2, B2.D2, T0.Q1
    	VPMULL	B1.D1, B3.D1, T2.Q1
    	VEOR	T0.B16, T2.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. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

        return (int) in.skip(n);
      }
    
      @CanIgnoreReturnValue // to skip a byte
      @Override
      public int readUnsignedByte() throws IOException {
        int b1 = in.read();
        if (0 > b1) {
          throw new EOFException();
        }
    
        return b1;
      }
    
      /**
       * Reads an unsigned {@code short} as specified by {@link DataInputStream#readUnsignedShort()},
       * except using little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. istioctl/pkg/util/formatting/formatter_test.go

    	g.Expect(output).To(Equal(
    		"Error [B1] (SoapBubble) Explosion accident: the bubble is too big\n" +
    			"Warning [C1] (GrandCastle) Collapse danger: the castle is too old",
    	))
    }
    
    func TestFormatter_PrintLogWithColor(t *testing.T) {
    	g := NewWithT(t)
    
    	firstMsg := diag.NewMessage(
    		diag.NewMessageType(diag.Error, "B1", "Explosion accident: %v"),
    		diag.MockResource("SoapBubble"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc.go

    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine stole P0 at the generation boundary.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    	b1.Event("ProcStatus", trace.ProcID(0), go122.ProcSyscallAbandoned)
    	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildLookupIntegrationTest.groovy

                """
            }
            includeBuildAs(buildB, "b1")
            def buildC = singleProjectBuild("buildC") {
                settingsFile << """
                    rootProject.name = 'c'
                """
            }
            includeBuildAs(buildC, 'c1')
            buildA.buildFile << """
                assert gradle.includedBuild("b1").name == "b1"
                assert gradle.includedBuild("b1").projectDir == file('${buildB.toURI()}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/noder/posmap.go

    			}
    			p1 := src.MakePos(m.makeSrcPosBase(p0b), p0.Line(), p0.Col())
    			b1 = src.NewLinePragmaBase(p1, fn, absfn, b0.Line(), b0.Col())
    		}
    		if m.bases == nil {
    			m.bases = make(map[*syntax.PosBase]*src.PosBase)
    		}
    		m.bases[b0] = b1
    	}
    
    	// update cache
    	m.cache.last = b0
    	m.cache.base = b1
    
    	return b1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 27 03:43:35 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

                    includeBuild 'buildC'
                """
            }
    
            buildB = multiProjectBuildInSubFolder("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java-library'
                    }
                    project(':b1') {
                        dependencies {
                            testImplementation "org.test:buildC:1.0"
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe_generic.go

    	// r2 = a0×b2 + a1×b1 + a2×b0 + 19×(a3×b4 + a4×b3)
    	r2 := mul64(a0, b2)
    	r2 = addMul64(r2, a1, b1)
    	r2 = addMul64(r2, a2, b0)
    	r2 = addMul64(r2, a3_19, b4)
    	r2 = addMul64(r2, a4_19, b3)
    
    	// r3 = a0×b3 + a1×b2 + a2×b1 + a3×b0 + 19×a4×b4
    	r3 := mul64(a0, b3)
    	r3 = addMul64(r3, a1, b2)
    	r3 = addMul64(r3, a2, b1)
    	r3 = addMul64(r3, a3, b0)
    	r3 = addMul64(r3, a4_19, b4)
    
    	// r4 = a0×b4 + a1×b3 + a2×b2 + a3×b1 + a4×b0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top