HomeSort by relevance Sort by last modified time
    Searched refs:float64 (Results 101 - 125 of 893) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/
append.go 103 {"float64 a", append([]float64{}), []float64{}},
104 {"float64 b", append([]float64{}, 0), []float64{0}},
105 {"float64 c", append([]float64{}, 0, 1, 2, 3), []float64{0, 1, 2, 3}},
107 {"float64 d", append([]float64{0, 1, 2}), []float64{0, 1, 2}}
    [all...]
  /prebuilts/go/linux-x86/test/
append.go 103 {"float64 a", append([]float64{}), []float64{}},
104 {"float64 b", append([]float64{}, 0), []float64{0}},
105 {"float64 c", append([]float64{}, 0, 1, 2, 3), []float64{0, 1, 2, 3}},
107 {"float64 d", append([]float64{0, 1, 2}), []float64{0, 1, 2}}
    [all...]
  /external/mesa3d/src/compiler/spirv/
nir_spirv.h 48 bool float64; member in struct:nir_spirv_supported_extensions
  /prebuilts/go/darwin-x86/src/math/
copysign.go 9 func Copysign(x, y float64) float64 {
  /prebuilts/go/darwin-x86/src/runtime/
fastlog2.go 10 // float64. This is used to compute a geometric distribution for heap
12 // uses a very rough approximation using the float64 exponent and the
16 func fastlog2(x float64) float64 {
21 // Extract the exponent from the IEEE float64, and index a constant
28 return float64(xExp) + low + (high-low)*float64(xManScale)*fastlogScaleRatio
33 func float64bits(f float64) uint64 { return *(*uint64)(unsafe.Pointer(&f)) }
  /prebuilts/go/darwin-x86/test/bench/garbage/
tree2.go 39 heap, _ = buildTree(float64(objsize), float64(*heapsize), 0)
41 float64(*heapsize)/1048576, numobjects, objsize)
44 func buildTree(objsize, size float64, depth int) (*Object, float64) {
65 float64(pause-lastPauseNs)/1e6,
66 float64(free-lastFree)/1048576,
67 float64(inuse)/1048576)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug006.go 12 x float64 = iota
13 g float64 = 4.5 * iota
bug010.go 10 func f(i int, f float64) {
17 f(3, float64(5))
bug035.go 9 func f9(a int) (i int, f float64) {
11 f := float64(9) // ERROR "redecl|no new"
bug047.go 13 f float64
16 var f float64 = 0.2
bug080.go 9 func f1() (x int, y float64) {
13 func f2(x int, y float64) {
bug167.go 17 x float64
29 bug167.6: type main.T·bug167 struct { x float64 }
bug193.go 12 y1 := float64(ss)
13 y2 := float64(1 << s) // ERROR "shift"
bug283.go 17 func dist(p0, p1 Point) float64 {
18 return float64((p0.x-p1.x)*(p0.x-p1.x) + (p0.y-p1.y)*(p0.y-p1.y))
bug363.go 13 var a = (1<<i) + 4.5 // ERROR "shift of type float64|invalid.*shift"
16 var b = (1<<i) + 4.0 // ERROR "shift of type float64|invalid.*shift"
issue4785.go 12 return x.(float64) > y.(float64)
issue8073.go 8 // was "internal compiler error: overflow: float64 integer constant"
14 _ = float64(x * 0)
issue8745.go 12 var _ float64 = s[2] // ERROR "cannot use.*type byte.*as type float64"
  /prebuilts/go/darwin-x86/test/ken/
simpconv.go 23 s2 := float64(0)
25 s2 = s2 + float64(i)
  /prebuilts/go/linux-x86/src/math/
copysign.go 9 func Copysign(x, y float64) float64 {
  /prebuilts/go/linux-x86/src/runtime/
fastlog2.go 10 // float64. This is used to compute a geometric distribution for heap
12 // uses a very rough approximation using the float64 exponent and the
16 func fastlog2(x float64) float64 {
21 // Extract the exponent from the IEEE float64, and index a constant
28 return float64(xExp) + low + (high-low)*float64(xManScale)*fastlogScaleRatio
33 func float64bits(f float64) uint64 { return *(*uint64)(unsafe.Pointer(&f)) }
  /prebuilts/go/linux-x86/test/bench/garbage/
tree2.go 39 heap, _ = buildTree(float64(objsize), float64(*heapsize), 0)
41 float64(*heapsize)/1048576, numobjects, objsize)
44 func buildTree(objsize, size float64, depth int) (*Object, float64) {
65 float64(pause-lastPauseNs)/1e6,
66 float64(free-lastFree)/1048576,
67 float64(inuse)/1048576)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug006.go 12 x float64 = iota
13 g float64 = 4.5 * iota
bug010.go 10 func f(i int, f float64) {
17 f(3, float64(5))
bug035.go 9 func f9(a int) (i int, f float64) {
11 f := float64(9) // ERROR "redecl|no new"

Completed in 1011 milliseconds

1 2 3 45 6 7 8 91011>>