Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for x1 (0.02 sec)

  1. src/math/big/nat.go

    	xd := z[2*n : 2*n+n2]
    	if subVV(xd, x1, x0) != 0 { // x1-x0
    		s = -s
    		subVV(xd, x0, x1) // x0-x1
    	}
    
    	// compute yd (or the negative value if underflow occurs)
    	yd := z[2*n+n2 : 3*n]
    	if subVV(yd, y0, y1) != 0 { // y0-y1
    		s = -s
    		subVV(yd, y1, y0) // y1-y0
    	}
    
    	// p = (x1-x0)*(y0-y1) == x1*y0 - x1*y1 - x0*y0 + x0*y1 for s > 0
    	// p = (x0-x1)*(y0-y1) == x0*y0 - x0*y1 - x1*y0 + x1*y1 for s < 0
    	p := z[n*3:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Closer.java

       * @throws IOException when the given throwable is an IOException
       * @throws X1 when the given throwable is of the declared type X1
       * @throws X2 when the given throwable is of the declared type X2
       */
      public <X1 extends Exception, X2 extends Exception> RuntimeException rethrow(
          Throwable e, Class<X1> declaredType1, Class<X2> declaredType2) throws IOException, X1, X2 {
        checkNotNull(e);
        thrown = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/Closer.java

       * @throws IOException when the given throwable is an IOException
       * @throws X1 when the given throwable is of the declared type X1
       * @throws X2 when the given throwable is of the declared type X2
       */
      public <X1 extends Exception, X2 extends Exception> RuntimeException rethrow(
          Throwable e, Class<X1> declaredType1, Class<X2> declaredType2) throws IOException, X1, X2 {
        checkNotNull(e);
        thrown = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/runtime/runtime1.go

    		h     uint64
    		i, i1 float32
    		j, j1 float64
    		k     unsafe.Pointer
    		l     *uint16
    		m     [4]byte
    	)
    	type x1t struct {
    		x uint8
    	}
    	type y1t struct {
    		x1 x1t
    		y  uint8
    	}
    	var x1 x1t
    	var y1 y1t
    
    	if unsafe.Sizeof(a) != 1 {
    		throw("bad a")
    	}
    	if unsafe.Sizeof(b) != 1 {
    		throw("bad b")
    	}
    	if unsafe.Sizeof(c) != 2 {
    		throw("bad c")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

          dot.getPrecisionConfigAttr());
      return success();
    }
    
    // Convert:
    //   %y0 = dot_general(%x0, %w)
    //   %y1 = dot_general(%x1, %w)
    //   ...
    //   concatenate(%y0, %y1, ...)
    // To:
    //   %x = concatenate(%x0, %x1, ...)
    //   dot_general(%x, %w)
    LogicalResult LiftDotConcatLHS(mhlo::ConcatenateOp concat,
                                   PatternRewriter &rewriter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    			check.dump("%v: trace() without arguments", call.Pos())
    			x.mode = novalue
    			break
    		}
    		var t operand
    		x1 := x
    		for _, arg := range argList {
    			check.rawExpr(nil, x1, arg, nil, false) // permit trace for types, e.g.: new(trace(T))
    			check.dump("%v: %s", x1.Pos(), x1)
    			x1 = &t // use incoming x only for first argument
    		}
    		if x.mode == invalid {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/builtins.go

    			check.dump("%v: trace() without arguments", atPos(call))
    			x.mode = novalue
    			break
    		}
    		var t operand
    		x1 := x
    		for _, arg := range argList {
    			check.rawExpr(nil, x1, arg, nil, false) // permit trace for types, e.g.: new(trace(T))
    			check.dump("%v: %s", atPos(x1), x1)
    			x1 = &t // use incoming x only for first argument
    		}
    		if x.mode == invalid {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top