Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 176 of 176 for Floor (0.44 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Exp2", Func, 0},
    		{"Expm1", Func, 0},
    		{"FMA", Func, 14},
    		{"Float32bits", Func, 0},
    		{"Float32frombits", Func, 0},
    		{"Float64bits", Func, 0},
    		{"Float64frombits", Func, 0},
    		{"Floor", Func, 0},
    		{"Frexp", Func, 0},
    		{"Gamma", Func, 0},
    		{"Hypot", Func, 0},
    		{"Ilogb", Func, 0},
    		{"Inf", Func, 0},
    		{"IsInf", Func, 0},
    		{"IsNaN", Func, 0},
    		{"J0", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		x := v_0
    		y := v_1
    		z := v_2
    		v.reset(OpS390XFMADD)
    		v.AddArg3(z, x, y)
    		return true
    	}
    }
    func rewriteValueS390X_OpFloor(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Floor x)
    	// result: (FIDBR [7] x)
    	for {
    		x := v_0
    		v.reset(OpS390XFIDBR)
    		v.AuxInt = int8ToAuxInt(7)
    		v.AddArg(x)
    		return true
    	}
    }
    func rewriteValueS390X_OpHmul32(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		y := v_1
    		z := v_2
    		v.reset(OpAMD64VFMADD231SD)
    		v.AddArg3(z, x, y)
    		return true
    	}
    }
    func rewriteValueAMD64_OpFloor(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Floor x)
    	// result: (ROUNDSD [1] x)
    	for {
    		x := v_0
    		v.reset(OpAMD64ROUNDSD)
    		v.AuxInt = int8ToAuxInt(1)
    		v.AddArg(x)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    		generic: true,
    	},
    	{
    		name:    "Sqrt",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Sqrt32",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Floor",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Ceil",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Trunc",
    		argLen:  1,
    		generic: true,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  6. api/go1.txt

    pkg math, func Float32bits(float32) uint32
    pkg math, func Float32frombits(uint32) float32
    pkg math, func Float64bits(float64) uint64
    pkg math, func Float64frombits(uint64) float64
    pkg math, func Floor(float64) float64
    pkg math, func Frexp(float64) (float64, int)
    pkg math, func Gamma(float64) float64
    pkg math, func Hypot(float64, float64) float64
    pkg math, func Ilogb(float64) int
    pkg math, func Inf(int) float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top