Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Float64frombits (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    			}
    			var v uint64
    			if (iNdEx + 8) > l {
    				return io.ErrUnexpectedEOF
    			}
    			v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:]))
    			iNdEx += 8
    			v2 := float64(math.Float64frombits(v))
    			m.Maximum = &v2
    		case 10:
    			if wireType != 0 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ExclusiveMaximum", wireType)
    			}
    			var v int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.pb.go

    			}
    			var v uint64
    			if (iNdEx + 8) > l {
    				return io.ErrUnexpectedEOF
    			}
    			v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:]))
    			iNdEx += 8
    			v2 := float64(math.Float64frombits(v))
    			m.Maximum = &v2
    		case 10:
    			if wireType != 0 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ExclusiveMaximum", wireType)
    			}
    			var v int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 244.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: !math.IsNaN(math.Float64frombits(uint64(c)))
    	// result: (FMOVDconst [math.Float64frombits(uint64(c))])
    	for {
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		if !(!math.IsNaN(math.Float64frombits(uint64(c)))) {
    			break
    		}
    		v.reset(OpPPC64FMOVDconst)
    		v.AuxInt = float64ToAuxInt(math.Float64frombits(uint64(c)))
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    		}
    		break
    	}
    	// match: (OR (RISBGZ (LGDR x) {r}) (MOVDconst [c]))
    	// cond: c >= 0 && r == s390x.NewRotateParams(0, 0, 0)
    	// result: (LGDR (CPSDR <x.Type> (FMOVDconst <x.Type> [math.Float64frombits(uint64(c))]) x))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpS390XRISBGZ {
    				continue
    			}
    			r := auxToS390xRotateParams(v_0.Aux)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top