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

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/misc/cgo/test/issue9510b/
b.go 13 func F(a, b float64) float64 {
14 return float64(C.csquare(C.double(a), C.double(b)))
  /prebuilts/go/linux-x86/misc/cgo/test/issue9510a/
a.go 13 func F(a, b float64) float64 {
14 return float64(C.csquare(C.double(a), C.double(b)))
  /prebuilts/go/linux-x86/misc/cgo/test/issue9510b/
b.go 13 func F(a, b float64) float64 {
14 return float64(C.csquare(C.double(a), C.double(b)))
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7044.go 20 // Use all 16 registers to do float32 --> float64 conversion.
22 float64(f0), float64(f1), float64(f2), float64(f3), float64(f4), float64(f5), float64(f6), float64(f7), float64(f8), float64(f9), float64(f10), float64(f11), float64(f12), float64(f13), float64(f14), float64(f1 (…)
    [all...]
bug409.go 12 func F(v [2]float64) [2]float64 {
13 return [2]float64{v[0], v[1]}
17 a := F([2]float64{1, 2})
18 b := F([2]float64{3, 4})
bug411.go 9 // used as a memory operand of a int64->float64 move.
14 f2(float64(a), float64(a))
17 func f2(a,b float64) {
bug331.go 11 func f() (_ string, x float64, err error) {
15 func g() (_ string, x float64, err error) {
19 var _ func() (string, float64, error) = f
20 var _ func() (string, float64, error) = g
32 bug331.go:12: cannot use "hello" (type string) as type float64 in assignment
33 bug331.go:12: cannot use 0 (type float64) as type os.Error in assignment:
34 float64 does not implement os.Error (missing String method)
bug109.go 9 func f(a float64) float64 {
18 (<float64>FLOAT64)
21 (<float64>FLOAT64)
24 (<float64>FLOAT64)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7044.go 20 // Use all 16 registers to do float32 --> float64 conversion.
22 float64(f0), float64(f1), float64(f2), float64(f3), float64(f4), float64(f5), float64(f6), float64(f7), float64(f8), float64(f9), float64(f10), float64(f11), float64(f12), float64(f13), float64(f14), float64(f1 (…)
    [all...]
bug409.go 12 func F(v [2]float64) [2]float64 {
13 return [2]float64{v[0], v[1]}
17 a := F([2]float64{1, 2})
18 b := F([2]float64{3, 4})
bug411.go 9 // used as a memory operand of a int64->float64 move.
14 f2(float64(a), float64(a))
17 func f2(a,b float64) {
bug331.go 11 func f() (_ string, x float64, err error) {
15 func g() (_ string, x float64, err error) {
19 var _ func() (string, float64, error) = f
20 var _ func() (string, float64, error) = g
32 bug331.go:12: cannot use "hello" (type string) as type float64 in assignment
33 bug331.go:12: cannot use 0 (type float64) as type os.Error in assignment:
34 float64 does not implement os.Error (missing String method)
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/Arm/
softfloat.h 85 typedef unsigned long long float64; typedef
152 float64 int32_to_float64( int32 );
153 float64 uint32_to_float64( uint32 );
164 float64 int64_to_float64( long long );
187 float64 float32_to_float64( float32 );
222 int float64_to_int32( float64 );
223 int float64_to_int32_round_to_zero( float64 );
225 unsigned int float64_to_uint32_round_to_zero( float64 );
228 long long float64_to_int64( float64 );
229 long long float64_to_int64_round_to_zero( float64 );
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/Aarch64/
softfloat.h 56 typedef unsigned long long float64; typedef
123 float64 int32_to_float64( int32 );
124 float64 uint32_to_float64( uint32 );
135 float64 int64_to_float64( long long );
158 float64 float32_to_float64( float32 );
193 int float64_to_int32( float64 );
194 int float64_to_int32_round_to_zero( float64 );
196 unsigned int float64_to_uint32_round_to_zero( float64 );
199 long long float64_to_int64( float64 );
200 long long float64_to_int64_round_to_zero( float64 );
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/Arm/
softfloat.h 56 typedef unsigned long long float64; typedef
123 float64 int32_to_float64( int32 );
124 float64 uint32_to_float64( uint32 );
135 float64 int64_to_float64( long long );
158 float64 float32_to_float64( float32 );
193 int float64_to_int32( float64 );
194 int float64_to_int32_round_to_zero( float64 );
196 unsigned int float64_to_uint32_round_to_zero( float64 );
199 long long float64_to_int64( float64 );
200 long long float64_to_int64_round_to_zero( float64 );
    [all...]
  /prebuilts/go/darwin-x86/src/math/
log10.go 9 func Log10(x float64) float64
11 func log10(x float64) float64 {
17 func Log2(x float64) float64
19 func log2(x float64) float64 {
24 return float64(exp - 1)
26 return Log(frac)*(1/Ln2) + float64(exp
    [all...]
dim.go 13 func Dim(x, y float64) float64
15 func dim(x, y float64) float64 {
26 func Max(x, y float64) float64
28 func max(x, y float64) float64 {
53 func Min(x, y float64) float64
    [all...]
floor.go 13 func Floor(x float64) float64
15 func floor(x float64) float64 {
36 func Ceil(x float64) float64
38 func ceil(x float64) float64 {
48 func Trunc(x float64) float64
    [all...]
  /prebuilts/go/linux-x86/src/math/
log10.go 9 func Log10(x float64) float64
11 func log10(x float64) float64 {
17 func Log2(x float64) float64
19 func log2(x float64) float64 {
24 return float64(exp - 1)
26 return Log(frac)*(1/Ln2) + float64(exp
    [all...]
dim.go 13 func Dim(x, y float64) float64
15 func dim(x, y float64) float64 {
26 func Max(x, y float64) float64
28 func max(x, y float64) float64 {
53 func Min(x, y float64) float64
    [all...]
floor.go 13 func Floor(x float64) float64
15 func floor(x float64) float64 {
36 func Ceil(x float64) float64
38 func ceil(x float64) float64 {
48 func Trunc(x float64) float64
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/templates/
softfloat.h 50 typedef !!!bits64 float64; typedef
115 float64 int32_to_float64( !!!int32 );
123 float64 int64_to_float64( !!!int64 );
140 float64 float32_to_float64( float32 );
173 !!!int32 float64_to_int32( float64 );
174 !!!int32 float64_to_int32_round_to_zero( float64 );
175 !!!int64 float64_to_int64( float64 );
176 !!!int64 float64_to_int64_round_to_zero( float64 );
177 float32 float64_to_float32( float64 );
179 floatx80 float64_to_floatx80( float64 );
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
glm.cpp 48 template struct tvec1<float64, lowp>;
60 template struct tvec1<float64, mediump>;
72 template struct tvec1<float64, highp>;
84 template struct tvec2<float64, lowp>;
95 template struct tvec2<float64, mediump>;
106 template struct tvec2<float64, highp>;
118 template struct tvec3<float64, lowp>;
129 template struct tvec3<float64, mediump>;
140 template struct tvec3<float64, highp>;
152 template struct tvec4<float64, lowp>
    [all...]
  /prebuilts/go/darwin-x86/doc/play/
pi.go 20 func pi(n int) float64 {
21 ch := make(chan float64)
23 go term(ch, float64(k))
32 func term(ch chan float64, k float64) {
  /prebuilts/go/linux-x86/doc/play/
pi.go 20 func pi(n int) float64 {
21 ch := make(chan float64)
23 go term(ch, float64(k))
32 func term(ch chan float64, k float64) {

Completed in 491 milliseconds

12 3 4 5 6 7 8 91011>>