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

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/
func.go 28 func f4(a, b int, c float32) int {
40 func f7(a int) (x int, y float32) {
45 func f8(a int) (x int, y float32) {
53 func (t *T) m10(a int, b float32) int {
58 func f9(a int) (i int, f float32) {
shift1.go 21 v float32 = 1 << s // ERROR "invalid" "as type float32"
67 v float32 = 1 << s // ERROR "non-integer|float32"
158 _ = float32(1)
159 _ = float32(1 << s) // ERROR "non-integer|shift of type float32"
160 _ = float32(1.)
161 _ = float32(1. << s) // ERROR "non-integer|shift of type float32"
    [all...]
iota.go 22 f float32 = 2 * iota
23 g float32 = 4.5 * float32(iota)
62 p = float32(iota)
decl.go 12 func f2() (float32, int) { return 1, 2 }
13 func f3() (float32, int, string) { return 1, 2, "3" }
  /prebuilts/go/linux-x86/src/math/
nextafter.go 7 // Nextafter32 returns the next representable float32 value after x towards y.
13 func Nextafter32(x, y float32) (r float32) {
16 r = float32(NaN())
20 r = float32(Copysign(float64(Float32frombits(1)), float64(y)))
unsafe.go 10 func Float32bits(f float32) uint32 { return *(*uint32)(unsafe.Pointer(&f)) }
14 func Float32frombits(b uint32) float32 { return *(*float32)(unsafe.Pointer(&b)) }
  /prebuilts/go/linux-x86/test/fixedbugs/
issue12577.go 21 x0 float32 = z0
22 x1 float32 = z1
23 x2 float32 = z2
24 x3 float32 = z3
32 func test32(f float32) {
bug109.go 19 (<float32>FLOAT32)
23 (<float32>FLOAT32)
bug470.go 18 var F = float64(float32(0.01))
21 // 0.01 rounded to float32 then to float64 is F32.
  /prebuilts/go/linux-x86/test/
func.go 28 func f4(a, b int, c float32) int {
40 func f7(a int) (x int, y float32) {
45 func f8(a int) (x int, y float32) {
53 func (t *T) m10(a int, b float32) int {
58 func f9(a int) (i int, f float32) {
shift1.go 21 v float32 = 1 << s // ERROR "invalid" "as type float32"
67 v float32 = 1 << s // ERROR "non-integer|float32"
158 _ = float32(1)
159 _ = float32(1 << s) // ERROR "non-integer|shift of type float32"
160 _ = float32(1.)
161 _ = float32(1. << s) // ERROR "non-integer|shift of type float32"
    [all...]
iota.go 22 f float32 = 2 * iota
23 g float32 = 4.5 * float32(iota)
62 p = float32(iota)
  /external/flatbuffers/tests/MyGame/Example/
Vec3.go 22 func (rcv *Vec3) X() float32 {
25 func (rcv *Vec3) MutateX(n float32) bool {
29 func (rcv *Vec3) Y() float32 {
32 func (rcv *Vec3) MutateY(n float32) bool {
36 func (rcv *Vec3) Z() float32 {
39 func (rcv *Vec3) MutateZ(n float32) bool {
65 func CreateVec3(builder *flatbuffers.Builder, x float32, y float32, z float32, test1 float64, test2 int8, test3_a int16, test3_b int8) flatbuffers.UOffsetT {
  /prebuilts/go/darwin-x86/src/math/
unsafe.go 10 func Float32bits(f float32) uint32 { return *(*uint32)(unsafe.Pointer(&f)) }
14 func Float32frombits(b uint32) float32 { return *(*float32)(unsafe.Pointer(&b)) }
  /external/flatbuffers/python/flatbuffers/
packer.py 37 float32 = struct.Struct("<f") variable
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug109.go 19 (<float32>FLOAT32)
23 (<float32>FLOAT32)
bug470.go 18 var F = float64(float32(0.01))
21 // 0.01 rounded to float32 then to float64 is F32.
bug453.go 12 func formula() float32 {
13 mA := [1]float32{1.0}
issue14553.go 8 // arithmetic correctly rounds denormal float32 values.
19 value float32
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/testdata/
exports.go 41 b, c float32
53 m2(int) float32
63 T18 func() float32
64 T19 func() (x float32)
79 V2 float32 = 1.2
85 func F4() float32 { return 0 }
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/testdata/
exports.go 41 b, c float32
53 m2(int) float32
63 T18 func() float32
64 T19 func() (x float32)
79 V2 float32 = 1.2
85 func F4() float32 { return 0 }
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
fp.go 108 func add32_ssa(a, b float32) float32 {
113 func mul32_ssa(a, b float32) float32 {
118 func sub32_ssa(a, b float32) float32 {
123 func div32_ssa(a, b float32) float32 {
128 func neg32_ssa(a, b float32) float32 {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
fp.go 108 func add32_ssa(a, b float32) float32 {
113 func mul32_ssa(a, b float32) float32 {
118 func sub32_ssa(a, b float32) float32 {
123 func div32_ssa(a, b float32) float32 {
128 func neg32_ssa(a, b float32) float32 {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
float_test.go 21 func compare2(a, b float32) bool {
48 func cvt3(a float32) uint64 {
53 func cvt4(a float32) uint32 {
68 func cvt7(a float32) int64 {
73 func cvt8(a float32) int32 {
89 func cvt11(a float32) int {
94 func cvt12(a float32) uint {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
float_test.go 21 func compare2(a, b float32) bool {
48 func cvt3(a float32) uint64 {
53 func cvt4(a float32) uint32 {
68 func cvt7(a float32) int64 {
73 func cvt8(a float32) int32 {
89 func cvt11(a float32) int {
94 func cvt12(a float32) uint {

Completed in 436 milliseconds

1 23 4 5 6 7 8 91011>>