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

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/
rename.go 29 float32 +
75 float32 = 12
74 float32 = 12 const
switch5.go 26 func f1(x float32) {
48 case float32(10):
49 case float32(10): // ERROR "duplicate case float32\(10\) in switch"
maplinear.go 120 checkLinear("float32", 10000, func(n int) {
121 m := map[float32]int{}
123 m[float32(i)] = 1
139 m[complex(float32(i), float32(i))] = 1
  /prebuilts/go/linux-x86/test/
cmplx.go 13 Float32 float32
20 f32 float32
22 F32 Float32
declbad.go 13 func f2() (float32, int) { return 1, 2 }
14 func f3() (float32, int, string) { return 1, 2, "3" }
rename.go 29 float32 +
75 float32 = 12
74 float32 = 12 const
switch5.go 26 func f1(x float32) {
48 case float32(10):
49 case float32(10): // ERROR "duplicate case float32\(10\) in switch"
maplinear.go 120 checkLinear("float32", 10000, func(n int) {
121 m := map[float32]int{}
123 m[float32(i)] = 1
139 m[complex(float32(i), float32(i))] = 1
  /prebuilts/go/linux-x86/test/fixedbugs/
issue16949.go 15 sink = make([]byte, float32(1.0)) // ERROR "non-integer.*len"
19 sink = make([]byte, 0, float32(1.0)) // ERROR "non-integer.*cap"
bug154.go 19 x := float64(float32(f)); // appears to change the precision of f
  /prebuilts/go/darwin-x86/src/math/rand/
normal.go 62 if fn[i]+float32(r.Float64())*(fn[i-1]-fn[i]) < float32(math.Exp(-.5*x*x)) {
96 var wn = [128]float32{
130 var fn = [128]float32{
  /prebuilts/go/darwin-x86/src/strconv/
fp_test.go 74 func myatof32(s string) (f float32, ok bool) {
87 return float32(float64(n) * pow2(e)), true
90 f1 := float32(f64)
127 case "float32":
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug154.go 19 x := float64(float32(f)); // appears to change the precision of f
  /prebuilts/go/linux-x86/src/math/rand/
normal.go 62 if fn[i]+float32(r.Float64())*(fn[i-1]-fn[i]) < float32(math.Exp(-.5*x*x)) {
96 var wn = [128]float32{
130 var fn = [128]float32{
  /prebuilts/go/linux-x86/src/strconv/
fp_test.go 74 func myatof32(s string) (f float32, ok bool) {
87 return float32(float64(n) * pow2(e)), true
90 f1 := float32(f64)
127 case "float32":
  /prebuilts/go/darwin-x86/test/interface/
fake.go 15 F float32
16 G float32
81 comparing uncomparable type float32
  /prebuilts/go/linux-x86/test/interface/
fake.go 15 F float32
16 G float32
81 comparing uncomparable type float32
  /prebuilts/misc/common/swig/include/2.0.11/go/
typemaps.i 90 INPUT_TYPEMAP(float, float32);
192 OUTPUT_TYPEMAP(float, float32);
289 INOUT_TYPEMAP(float, float32);
  /prebuilts/go/darwin-x86/test/ken/
convert.go 20 var f32 float32;
237 i8 = int8(v); f32 = float32(i8); w = big(f32)
258 u8 = uint8(v); f32 = float32(u8); w = big(f32)
279 i16 = int16(v); f32 = float32(i16); w = big(f32)
300 u16 = uint16(v); f32 = float32(u16); w = big(f32)
321 i32 = int32(v); f32 = float32(i32); w = big(f32)
342 u32 = uint32(v); f32 = float32(u32); w = big(f32)
363 i64 = int64(v); f32 = float32(i64); w = big(f32)
384 u64 = uint64(v); f32 = float32(u64); w = big(f32)
389 f32 = float32(v); i8 = int8(f32); w = big(i8
    [all...]
  /prebuilts/go/linux-x86/test/ken/
convert.go 20 var f32 float32;
237 i8 = int8(v); f32 = float32(i8); w = big(f32)
258 u8 = uint8(v); f32 = float32(u8); w = big(f32)
279 i16 = int16(v); f32 = float32(i16); w = big(f32)
300 u16 = uint16(v); f32 = float32(u16); w = big(f32)
321 i32 = int32(v); f32 = float32(i32); w = big(f32)
342 u32 = uint32(v); f32 = float32(u32); w = big(f32)
363 i64 = int64(v); f32 = float32(i64); w = big(f32)
384 u64 = uint64(v); f32 = float32(u64); w = big(f32)
389 f32 = float32(v); i8 = int8(f32); w = big(i8
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/
softfloat-specialize 127 flag float32_is_nan( float32 a )
144 flag float32_is_signaling_nan( float32 a )
158 static commonNaNT float32ToCommonNaN( float32 a )
176 static float32 commonNaNToFloat32( commonNaNT a )
190 static float32 propagateFloat32NaN( float32 a, float32 b )
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
softfloat-specialize 131 flag float32_is_nan( float32 a )
148 flag float32_is_signaling_nan( float32 a )
162 static commonNaNT float32ToCommonNaN( float32 a )
180 static float32 commonNaNToFloat32( commonNaNT a )
194 static float32 propagateFloat32NaN( float32 a, float32 b )
  /prebuilts/go/darwin-x86/src/go/types/
builtins_test.go 39 {"len", `var m map[string]float32; _ = len(m)`, `func(map[string]float32) int`},
45 {"complex", `var re float32; _ = complex(re, 1.0)`, `func(float32, float32) complex64`},
47 {"complex", `type F32 float32; var re, im F32; _ = complex(re, im)`, `func(p.F32, p.F32) complex64`},
60 {"imag", `var c complex64; _ = imag(c)`, `func(complex64) float32`},
62 {"imag", `type C64 complex64; var c C64; _ = imag(c)`, `func(p.C64) float32`},
66 {"real", `var c complex64; _ = real(c)`, `func(complex64) float32`},
68 {"real", `type C64 complex64; var c C64; _ = real(c)`, `func(p.C64) float32`},
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
builtins_test.go 39 {"len", `var m map[string]float32; _ = len(m)`, `func(map[string]float32) int`},
45 {"complex", `var re float32; _ = complex(re, 1.0)`, `func(float32, float32) complex64`},
47 {"complex", `type F32 float32; var re, im F32; _ = complex(re, im)`, `func(p.F32, p.F32) complex64`},
60 {"imag", `var c complex64; _ = imag(c)`, `func(complex64) float32`},
62 {"imag", `type C64 complex64; var c C64; _ = imag(c)`, `func(p.C64) float32`},
66 {"real", `var c complex64; _ = real(c)`, `func(complex64) float32`},
68 {"real", `type C64 complex64; var c C64; _ = real(c)`, `func(p.C64) float32`},
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
softfloat.c 116 INLINE bits32 extractFloat32Frac( float32 a )
128 INLINE int16 extractFloat32Exp( float32 a )
140 INLINE flag extractFloat32Sign( float32 a )
178 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
208 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
270 static float32
536 float32 int32_to_float32( int32 a )
588 int32 float32_to_int32( float32 a )
659 int32 float32_to_int32_round_to_zero( float32 a )
699 float64 float32_to_float64( float32 a )
    [all...]

Completed in 1190 milliseconds

1 2 3 45 6 7 8 91011>>