Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for x1 (0.02 sec)

  1. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

          retVal &= Enums.getIfPresent(enumType, sampleData[i & 255]).isPresent();
        }
        return retVal;
      }
    
      private enum SmallEnum {
        X0,
        X1,
        X2
      }
    
      private enum MediumEnum {
        X0,
        X1,
        X2,
        X3,
        X4,
        X5,
        X6,
        X7,
        X8,
        X9,
        X10,
        X11,
        X12,
        X13,
        X14,
        X15,
        X16,
        X17,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. src/math/rand/v2/rand.go

    	// and to preserve the optimization that the unbiasing loop almost never runs.
    	//
    	// We want to compute
    	// 	hi, lo := bits.Mul64(r.Uint64(), n)
    	// In terms of 32-bit halves, this is:
    	// 	x1:x0 := r.Uint64()
    	// 	0:hi, lo1:lo0 := bits.Mul64(x1:x0, 0:n)
    	// Writing out the multiplication in terms of bits.Mul32 allows
    	// using direct hardware instructions and avoiding
    	// the computations involving these zeros.
    	x := r.Uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_amd64.s

    		JB startSinglesLoop
    		SUBQ $128, autLen
    
    		MOVOU (16*0)(aut), X0
    		MOVOU (16*1)(aut), X1
    		MOVOU (16*2)(aut), X2
    		MOVOU (16*3)(aut), X3
    		MOVOU (16*4)(aut), X4
    		MOVOU (16*5)(aut), X5
    		MOVOU (16*6)(aut), X6
    		MOVOU (16*7)(aut), X7
    		LEAQ (16*8)(aut), aut
    		PSHUFB BSWAP, X0
    		PSHUFB BSWAP, X1
    		PSHUFB BSWAP, X2
    		PSHUFB BSWAP, X3
    		PSHUFB BSWAP, X4
    		PSHUFB BSWAP, X5
    		PSHUFB BSWAP, X6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

          retVal &= Enums.getIfPresent(enumType, sampleData[i & 255]).isPresent();
        }
        return retVal;
      }
    
      private enum SmallEnum {
        X0,
        X1,
        X2
      }
    
      private enum MediumEnum {
        X0,
        X1,
        X2,
        X3,
        X4,
        X5,
        X6,
        X7,
        X8,
        X9,
        X10,
        X11,
        X12,
        X13,
        X14,
        X15,
        X16,
        X17,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/generate.go

    	// prime order elliptic curves" (https://eprint.iacr.org/2015/1060), §A.2.
    
    	t0 := new({{.Element}}).Mul(p1.x, p2.x)   // t0 := X1 * X2
    	t1 := new({{.Element}}).Mul(p1.y, p2.y)   // t1 := Y1 * Y2
    	t2 := new({{.Element}}).Mul(p1.z, p2.z)   // t2 := Z1 * Z2
    	t3 := new({{.Element}}).Add(p1.x, p1.y)   // t3 := X1 + Y1
    	t4 := new({{.Element}}).Add(p2.x, p2.y)   // t4 := X2 + Y2
    	t3.Mul(t3, t4)                            // t3 := t3 * t4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/test.go

    		for i := 0; i < rt.NumField(); i++ {
    			t.Logf("%+v\n", rt.Field(i))
    		}
    	}
    }
    
    // issue 7786
    
    func f() {
    	var x1 *C.typedef_test7786
    	var x2 *C.struct_test7786
    	x1 = x2
    	x2 = x1
    	C.f7786(x1)
    	C.f7786(x2)
    	C.g7786(x1)
    	C.g7786(x2)
    
    	var b1 *C.typedef_body7786
    	var b2 *C.struct_body7786
    	b1 = b2
    	b2 = b1
    	C.b7786(b1)
    	C.b7786(b2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. src/make.bat

    GOFLAGS=
    L176:goto :eof
    L177:
    L178::bootstrapfail
    L179:echo ERROR: Cannot find %GOROOT_BOOTSTRAP%\bin\go.exe
    L180:echo Set GOROOT_BOOTSTRAP to a working Go tree ^>= Go %bootgo%.
    L181:
    L182::fail
    L183:set GOBUILDFAIL=1
    L184:if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL%
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        private InstantiableFactoryMethodChosen(String name) {
          this.name = name;
        }
    
        public InstantiableFactoryMethodChosen(NotInstantiable x) {
          checkNotNull(x);
          this.name = "x1";
        }
    
        public static InstantiableFactoryMethodChosen create(NotInstantiable x) {
          return new InstantiableFactoryMethodChosen(x);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          "/job:localhost/replica:0/task:0/cpu:0");
      auto x1 = ops::Placeholder(root.WithOpName("x1"), DT_FLOAT);
      auto x2 = ops::Placeholder(root.WithOpName("x2"), DT_FLOAT);
      auto const_guarantee_x2 =
          ops::GuaranteeConst(root.WithOpName("const_guarantee_x2"), x2);
      auto const_guarantee_x1 =
          ops::GuaranteeConst(root.WithOpName("const_guarantee_x1"), x1);
      auto add1 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. src/math/big/nat_test.go

    			t.Errorf("#%d got %s want %s", i, z.utoa(10), out.utoa(10))
    		}
    	}
    }
    
    func FuzzExpMont(f *testing.F) {
    	f.Fuzz(func(t *testing.T, x1, x2, x3, y1, y2, y3, m1, m2, m3 uint) {
    		if m1 == 0 && m2 == 0 && m3 == 0 {
    			return
    		}
    		x := new(Int).SetBits([]Word{Word(x1), Word(x2), Word(x3)})
    		y := new(Int).SetBits([]Word{Word(y1), Word(y2), Word(y3)})
    		m := new(Int).SetBits([]Word{Word(m1), Word(m2), Word(m3)})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top