Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,083 for toint (0.06 sec)

  1. src/cmd/internal/obj/riscv/cpu.go

    	AFCLASSS
    
    	// 12.3: Double-Precision Load and Store Instructions
    	AFLD
    	AFSD
    
    	// 12.4: Double-Precision Floating-Point Computational Instructions
    	AFADDD
    	AFSUBD
    	AFMULD
    	AFDIVD
    	AFMIND
    	AFMAXD
    	AFSQRTD
    	AFMADDD
    	AFMSUBD
    	AFNMADDD
    	AFNMSUBD
    
    	// 12.5: Double-Precision Floating-Point Conversion and Move Instructions
    	AFCVTWD
    	AFCVTLD
    	AFCVTDW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_FPR8                 = 24  // Floating point register 8
    	PT_FPR9                 = 25  // Floating point register 9
    	PT_FPR10                = 26  // Floating point register 10
    	PT_FPR11                = 27  // Floating point register 11
    	PT_FPR12                = 28  // Floating point register 12
    	PT_FPR13                = 29  // Floating point register 13
    	PT_FPR14                = 30  // Floating point register 14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p224.go

    const p224ElementLength = 28
    
    // P224Point is a P224 point. The zero value is NOT valid.
    type P224Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    	x, y, z *fiat.P224Element
    }
    
    // NewP224Point returns a new P224Point representing the point at infinity point.
    func NewP224Point() *P224Point {
    	return &P224Point{
    		x: new(fiat.P224Element),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p521.go

    const p521ElementLength = 66
    
    // P521Point is a P521 point. The zero value is NOT valid.
    type P521Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    	x, y, z *fiat.P521Element
    }
    
    // NewP521Point returns a new P521Point representing the point at infinity point.
    func NewP521Point() *P521Point {
    	return &P521Point{
    		x: new(fiat.P521Element),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256.go

    const p256ElementLength = 32
    
    // P256Point is a P256 point. The zero value is NOT valid.
    type P256Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    	x, y, z *fiat.P256Element
    }
    
    // NewP256Point returns a new P256Point representing the point at infinity point.
    func NewP256Point() *P256Point {
    	return &P256Point{
    		x: new(fiat.P256Element),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/runtime/preempt.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Goroutine preemption
    //
    // A goroutine can be preempted at any safe-point. Currently, there
    // are a few categories of safe-points:
    //
    // 1. A blocked safe-point occurs for the duration that a goroutine is
    //    descheduled, blocked on synchronization, or in a system call.
    //
    // 2. Synchronous safe-points occur when a running goroutine checks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

       (HasStaticShapeConstraint $filter),
       (HasStaticShapeAtDimsConstraint<"3"> $input)],
      [], (addBenefit 10)>;
    
    // Same as ConvertTFConv2DToXLAConvOp but handles the case where input zero
    // point is dynaically calculated so not a constant.
    def ConvertTFConv2DToXLAConvOpDynamicRange : Pat<
      (TF_Conv2DOp:$conv
        (TF_SubOp:$input (TF_CastOp $input_i8, $truncate0), $input_zp),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  8. src/crypto/elliptic/elliptic_test.go

    		if curve.IsOnCurve(x, y) {
    			t.Errorf("point off curve is claimed to be on the curve")
    		}
    
    		byteLen := (curve.Params().BitSize + 7) / 8
    		b := make([]byte, 1+2*byteLen)
    		b[0] = 4 // uncompressed point
    		x.FillBytes(b[1 : 1+byteLen])
    		y.FillBytes(b[1+byteLen : 1+2*byteLen])
    
    		x1, y1 := Unmarshal(curve, b)
    		if x1 != nil || y1 != nil {
    			t.Errorf("unmarshaling a point not on the curve succeeded")
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/image/draw/draw_test.go

    				DrawMask(m, image.Rect(x, y, x+1, y+1), src, image.Point{}, nil, image.Point{}, Src)
    			}
    		}
    		check("pixel")
    		// Draw 1 row at a time.
    		c = color.RGBA{0, 22, 0, 255}
    		src = &image.Uniform{C: c}
    		for y := b.Min.Y; y < b.Max.Y; y++ {
    			DrawMask(m, image.Rect(b.Min.X, y, b.Max.X, y+1), src, image.Point{}, nil, image.Point{}, Src)
    		}
    		check("row")
    		// Draw 1 column at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. operator/README.md

    ```
    
    If you don't specify a configuration profile, Istio is installed using the `default` configuration profile. All
    profiles listed in istio.io are available by default, or `profile:` can point to a local file path to reference a custom
    profile base to use as a starting point for customization. See the [API reference](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto)
    for details.
    
    ## Developer quick start
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top