Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,114 for toint (0.04 sec)

  1. src/crypto/internal/nistec/p384.go

    const p384ElementLength = 48
    
    // P384Point is a P384 point. The zero value is NOT valid.
    type P384Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    	x, y, z *fiat.P384Element
    }
    
    // NewP384Point returns a new P384Point representing the point at infinity point.
    func NewP384Point() *P384Point {
    	return &P384Point{
    		x: new(fiat.P384Element),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  2. src/strconv/decimal.go

    // license that can be found in the LICENSE file.
    
    // Multiprecision decimal numbers.
    // For floating-point formatting only; not general purpose.
    // Only operations are assign and (binary) left/right shift.
    // Can do binary floating point in multiprecision decimal precisely
    // because 2 divides 10; cannot do decimal floating point
    // in multiprecision binary precisely.
    
    package strconv
    
    type decimal struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  3. src/image/image.go

    func (p *RGBA) Set(x, y int, c color.Color) {
    	if !(Point{x, y}.In(p.Rect)) {
    		return
    	}
    	i := p.PixOffset(x, y)
    	c1 := color.RGBAModel.Convert(c).(color.RGBA)
    	s := p.Pix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    	s[0] = c1.R
    	s[1] = c1.G
    	s[2] = c1.B
    	s[3] = c1.A
    }
    
    func (p *RGBA) SetRGBA64(x, y int, c color.RGBA64) {
    	if !(Point{x, y}.In(p.Rect)) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top