Home
last modified time | relevance | path

Searched refs:f32 (Results 1 - 25 of 470) sorted by relevance

12345678910>>...19

/third_party/ffmpeg/libavcodec/arm/
H A Dfmtconvert_vfp.S55 vcvt.f32.s32 s16, s16
56 vcvt.f32.s32 s17, s17
57 vcvt.f32.s32 s18, s18
58 vcvt.f32.s32 s19, s19
59 vcvt.f32.s32 s20, s20
60 vcvt.f32.s32 s21, s21
61 vcvt.f32.s32 s22, s22
62 vcvt.f32.s32 s23, s23
63 vmul.f32 s16, s16, s2
68 vcvt.f32
[all...]
H A Daacpsdsp_neon.S27 vmul.f32 q0, q0, q0
29 vmul.f32 q2, q2, q2
32 vpadd.f32 d6, d0, d1
34 vpadd.f32 d7, d4, d5
35 vmul.f32 q0, q0, q0
37 vadd.f32 q3, q1, q3
39 vmul.f32 q2, q2, q2
43 vpadd.f32 d6, d0, d1
44 vpadd.f32 d7, d4, d5
45 vadd.f32 q
[all...]
H A Dfft_neon.S36 vsub.f32 d6, d0, d1 @ r0-r1,i0-i1
37 vsub.f32 d7, d16, d17 @ r3-r2,i2-i3
38 vadd.f32 d4, d0, d1 @ r0+r1,i0+i1
39 vadd.f32 d5, d2, d3 @ i2+i3,r2+r3
40 vadd.f32 d1, d6, d7
41 vsub.f32 d3, d6, d7
42 vadd.f32 d0, d4, d5
43 vsub.f32 d2, d4, d5
61 vadd.f32 d4, d16, d17 @ r4+r5,i4+i5
63 vadd.f32 d
[all...]
H A Dsbrdsp_neon.S33 vadd.f32 q0, q0, q1
35 vadd.f32 q0, q0, q2
37 vadd.f32 q0, q0, q3
39 vadd.f32 q0, q0, q8
47 vmov.f32 q0, #0.0
50 vmla.f32 q0, q1, q1
53 vadd.f32 d0, d0, d1
54 vpadd.f32 d0, d0, d0
179 vadd.f32 d3, d4, d3
180 vadd.f32 d
[all...]
H A Dmdct_neon.S43 vmul.f32 d6, d17, d2
44 vmul.f32 d7, d0, d2
48 vmul.f32 d4, d0, d3
49 vmul.f32 d5, d17, d3
50 vsub.f32 d4, d6, d4
51 vadd.f32 d5, d5, d7
61 vmul.f32 d6, d17, d2
62 vmul.f32 d7, d0, d2
94 vmul.f32 d7, d0, d18
96 vmul.f32 d
[all...]
H A Dfmtconvert_neon.S33 vcvt.f32.s32 q3, q1
35 vcvt.f32.s32 q8, q2
38 vmul.f32 q9, q3, q0
39 vmul.f32 q10, q8, q0
42 vcvt.f32.s32 q3, q1
44 vcvt.f32.s32 q8, q2
64 vcvt.f32.s32 q0, q0
65 vcvt.f32.s32 q1, q1
67 vcvt.f32.s32 q2, q2
68 vcvt.f32
[all...]
H A Daudiodsp_neon.S29 vld1.f32 {q2},[r1,:128]!
30 vmin.f32 q10, q2, q1
31 vld1.f32 {q3},[r1,:128]!
32 vmin.f32 q11, q3, q1
33 1: vmax.f32 q8, q10, q0
34 vmax.f32 q9, q11, q0
37 vld1.f32 {q2},[r1,:128]!
38 vmin.f32 q10, q2, q1
39 vld1.f32 {q3},[r1,:128]!
40 vmin.f32 q1
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_convert_ycbcr.c82 { { .f32 = 1.402f }, { .f32 = 1.0f }, { .f32 = 0.0f }, { .f32 = 0.0f } }, in ycbcr_model_to_rgb_matrix()
83 { { .f32 = -0.714136286201022f }, { .f32 = 1.0f }, { .f32 = -0.344136286201022f }, { .f32 = 0.0f } }, in ycbcr_model_to_rgb_matrix()
84 { { .f32 = 0.0f }, { .f32 in ycbcr_model_to_rgb_matrix()
[all...]
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dgenerator_impl_member_accessor_test.cc37 return ty.f32(); in ty_f32()
90 using f32 = ProgramBuilder::f32;
126 auto* s = Structure("Data", {Member("mem", ty.f32())}); in TEST_F()
130 WrapInFunction(Var("expr", ty.f32(), ast::StorageClass::kNone, expr)); in TEST_F()
202 TypeCase{ty_vec2<f32>, "data.b"},
205 TypeCase{ty_vec3<f32>, "data.b"},
208 TypeCase{ty_vec4<f32>, "data.b"},
210 TypeCase{ty_mat2x2<f32>, "data.b"},
211 TypeCase{ty_mat2x3<f32>, "dat
[all...]
H A Dgenerator_impl_function_test.cc68 Func("my_func", ast::VariableList{Param("a", ty.f32()), Param("b", ty.i32())}, in TEST_F()
113 // fn f(foo : ptr<function, f32>) -> f32 { in TEST_F()
116 Func("f", {Param("foo", ty.pointer<f32>(ast::StorageClass::kFunction))}, in TEST_F()
117 ty.f32(), {Return(Deref("foo"))}); in TEST_F()
130 // fn frag_main([[location(0)]] foo : f32) -> [[location(1)]] f32 { in TEST_F()
133 auto* foo_in = Param("foo", ty.f32(), {Location(0)}); in TEST_F()
134 Func("frag_main", ast::VariableList{foo_in}, ty.f32(), {Return("foo")}, in TEST_F()
176 // fn frag_main([[position(0)]] coord : vec4<f32>) in TEST_F()
[all...]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbuilder_constructor_expression_test.cc27 auto* g = Global("g", ty.f32(), c, ast::StorageClass::kPrivate); in TEST_F()
40 auto* t = Construct<f32>(Construct<u32>(1)); in TEST_F()
53 auto* t = vec3<f32>(1.0f, 1.0f, 3.0f); in TEST_F()
70 auto* t = vec2<f32>(Construct<f32>(1), Construct<f32>(1)); in TEST_F()
115 auto* var = Var("ident", ty.f32()); in TEST_F()
117 auto* t = vec2<f32>(1.0f, "ident"); in TEST_F()
216 auto* cast = Construct<f32>(2.0f); in TEST_F()
272 auto* cast = vec2<f32>(2. in TEST_F()
[all...]
/third_party/ffmpeg/libavresample/arm/
H A Daudio_convert_neon.S27 vcvt.s32.f32 q8, q0, #31
29 vcvt.s32.f32 q9, q1, #31
36 vcvt.s32.f32 q0, q0, #31
39 vcvt.s32.f32 q1, q1, #31
44 vcvt.s32.f32 q8, q8, #31
46 vcvt.s32.f32 q9, q9, #31
53 vcvt.s32.f32 q0, q0, #31
56 vcvt.s32.f32 q1, q1, #31
72 vcvt.s32.f32 q8, q0, #31
74 vcvt.s32.f32 q
[all...]
/third_party/ffmpeg/libswresample/arm/
H A Daudio_convert_neon.S28 vcvt.s32.f32 q8, q0, #31
30 vcvt.s32.f32 q9, q1, #31
37 vcvt.s32.f32 q0, q0, #31
40 vcvt.s32.f32 q1, q1, #31
45 vcvt.s32.f32 q8, q8, #31
47 vcvt.s32.f32 q9, q9, #31
54 vcvt.s32.f32 q0, q0, #31
57 vcvt.s32.f32 q1, q1, #31
74 vcvt.s32.f32 q8, q0, #31
76 vcvt.s32.f32 q
[all...]
/third_party/mesa3d/src/util/
H A Dformat_r11g11b10f.h58 } f32 = {val}; in f32_to_uf11() local
63 int sign = (f32.ui >> 16) & 0x8000; in f32_to_uf11()
65 int exponent = ((f32.ui >> 23) & 0xff) - 127; in f32_to_uf11()
66 int mantissa = f32.ui & 0x007fffff; in f32_to_uf11()
106 } f32; in uf11_to_f32() local
111 f32.f = 0.0; in uf11_to_f32()
116 f32.f = scale * mantissa; in uf11_to_f32()
119 f32.ui = F32_INFINITY | mantissa; in uf11_to_f32()
129 f32.f = scale * decimal; in uf11_to_f32()
132 return f32 in uf11_to_f32()
140 } f32 = {val}; f32_to_uf10() local
188 } f32; uf10_to_f32() local
[all...]
/third_party/ffmpeg/libavutil/arm/
H A Dfloat_dsp_neon.S29 vmul.f32 q8, q0, q2
30 vmul.f32 q9, q1, q3
37 vmul.f32 q10, q0, q2
40 vmul.f32 q11, q1, q3
44 vmul.f32 q8, q0, q2
47 vmul.f32 q9, q1, q3
55 vmul.f32 q8, q0, q2
59 vmul.f32 q9, q1, q3
78 1: vmla.f32 q8, q0, q15
81 vmla.f32 q
[all...]
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dtype_validation_test.cc55 using f32 = builder::f32;
90 // var<private> global_var: f32; in TEST_F()
91 Global(Source{{12, 34}}, "global_var", ty.f32(), ast::StorageClass::kPrivate); in TEST_F()
97 // const<private> global_var: f32; in TEST_F()
100 ast::StorageClass::kPrivate, ast::Access::kUndefined, ty.f32(), true, in TEST_F()
109 // let global_var: f32; in TEST_F()
110 GlobalConst(Source{{12, 34}}, "global_var", ty.f32(), Construct(ty.f32())); in TEST_F()
116 // var global_var0 : f32 in TEST_F()
[all...]
H A Dresolver_test.cc85 using f32 = builder::f32;
91 auto* v = Var("v", ty.f32()); in TEST_F()
110 auto* v = Var("v", ty.f32()); in TEST_F()
135 auto* v = Var("v", ty.f32()); in TEST_F()
157 auto* v = Var("v", ty.f32()); in TEST_F()
199 auto* v = Var("v", ty.f32()); in TEST_F()
247 auto* v = Var("v", ty.f32()); in TEST_F()
327 // var foo : f32 = 2.0; in TEST_F()
328 // var bar : f32 in TEST_F()
1687 auto* f32 = create<sem::F32>(); TEST_P() local
[all...]
H A Darray_accessor_test.cc28 Global("my_var", ty.mat2x3<f32>(), ast::StorageClass::kPrivate); in TEST_F()
34 "12:34 error: index must be of type 'i32' or 'u32', found: 'f32'"); in TEST_F()
38 Global("my_var", ty.mat2x3<f32>(), ast::StorageClass::kPrivate); in TEST_F()
47 Global("my_var", ty.mat4x4<f32>(), ast::StorageClass::kPrivate); in TEST_F()
57 GlobalConst("my_const", ty.mat2x3<f32>(), Construct(ty.mat2x3<f32>())); in TEST_F()
68 GlobalConst("my_var", ty.mat4x4<f32>(), Construct(ty.mat4x4<f32>())); in TEST_F()
79 GlobalConst("my_var", ty.mat4x4<f32>(), Construct(ty.mat4x4<f32>())); in TEST_F()
[all...]
/third_party/rust/crates/minimal-lexical/tests/
H A Dnumber_tests.rs10 assert_eq!(number.is_fast_path::<f32>(), true); in is_fast_path_test()
14 assert_eq!(number.is_fast_path::<f32>(), false); in is_fast_path_test()
18 assert_eq!(number.is_fast_path::<f32>(), false); in is_fast_path_test()
22 assert_eq!(number.is_fast_path::<f32>(), false); in is_fast_path_test()
26 assert_eq!(number.is_fast_path::<f32>(), false); in is_fast_path_test()
30 assert_eq!(number.is_fast_path::<f32>(), false); in is_fast_path_test()
35 assert_eq!(number.is_fast_path::<f32>(), false); in is_fast_path_test()
39 assert_eq!(number.is_fast_path::<f32>(), false); in is_fast_path_test()
43 assert_eq!(number.is_fast_path::<f32>(), false); in is_fast_path_test()
47 assert_eq!(number.is_fast_path::<f32>(), fals in is_fast_path_test()
[all...]
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
H A Dgenerator_impl_member_accessor_test.cc37 return ty.f32(); in ty_f32()
90 using f32 = ProgramBuilder::f32;
126 auto* s = Structure("Data", {Member("mem", ty.f32())}); in TEST_F()
130 WrapInFunction(Var("expr", ty.f32(), ast::StorageClass::kNone, expr)); in TEST_F()
196 TypeCase{ty_vec2<f32>, "asfloat(data.Load2(8u))"},
199 TypeCase{ty_vec3<f32>, "asfloat(data.Load3(16u))"},
202 TypeCase{ty_vec4<f32>, "asfloat(data.Load4(16u))"},
205 ty_mat2x2<f32>,
208 ty_mat2x3<f32>,
[all...]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
H A Dtype_precision.hpp612 typedef float32 f32; typedef
638 typedef tvec1<f32, defaultp> f32vec1;
642 typedef tvec2<f32, defaultp> f32vec2;
646 typedef tvec3<f32, defaultp> f32vec3;
650 typedef tvec4<f32, defaultp> f32vec4;
675 //typedef detail::tmat1x1<f32> fmat1;
679 typedef tmat2x2<f32, defaultp> fmat2;
683 typedef tmat3x3<f32, defaultp> fmat3;
687 typedef tmat4x4<f32, defaultp> fmat4;
692 //typedef f32 fmat1x
[all...]
/third_party/skia/src/opts/
H A DSkVM_opts.h42 F32 f32;
213 instIdx, r[y].i32[instIdx], r[y].f32[instIdx]);
263 CASE(Op::add_f32): r[d].f32 = r[x].f32 + r[y].f32; break;
264 CASE(Op::sub_f32): r[d].f32 = r[x].f32 - r[y].f32; break;
265 CASE(Op::mul_f32): r[d].f32 = r[x].f32 *
[all...]
/third_party/skia/third_party/externals/tint/src/
H A Dintrinsic_table_test.cc43 auto* f32 = create<sem::F32>(); in TEST_F() local
44 auto* result = table->Lookup(IntrinsicType::kCos, {f32}, Source{}); in TEST_F()
48 EXPECT_EQ(result->ReturnType(), f32); in TEST_F()
50 EXPECT_EQ(result->Parameters()[0]->Type(), f32); in TEST_F()
61 auto* f32 = create<sem::F32>(); in TEST_F() local
63 auto* vec2_f32 = create<sem::Vector>(f32, 2); in TEST_F()
75 auto* f32 = create<sem::F32>(); in TEST_F() local
77 table->Lookup(IntrinsicType::kUnpack2x16float, {f32}, Source{}); in TEST_F()
83 auto* f32 = create<sem::F32>(); in TEST_F() local
85 auto* vec4_f32 = create<sem::Vector>(f32, in TEST_F()
103 auto* f32 = create<sem::F32>(); TEST_F() local
134 auto* f32 = create<sem::F32>(); TEST_F() local
169 auto* f32 = create<sem::F32>(); TEST_F() local
191 auto* f32 = create<sem::F32>(); TEST_F() local
206 auto* f32 = create<sem::F32>(); TEST_F() local
253 auto* f32 = create<sem::F32>(); TEST_F() local
260 auto* f32 = create<sem::F32>(); TEST_F() local
281 auto* f32 = create<sem::F32>(); TEST_F() local
292 auto* f32 = create<sem::F32>(); TEST_F() local
313 auto* f32 = create<sem::F32>(); TEST_F() local
333 auto* f32 = create<sem::F32>(); TEST_F() local
353 auto* f32 = create<sem::F32>(); TEST_F() local
373 auto* f32 = create<sem::F32>(); TEST_F() local
392 auto* f32 = create<sem::F32>(); TEST_F() local
418 auto* f32 = create<sem::F32>(); TEST_F() local
428 auto* f32 = create<sem::F32>(); TEST_F() local
443 auto* f32 = create<sem::F32>(); TEST_F() local
456 auto* f32 = create<sem::F32>(); TEST_F() local
465 auto* f32 = create<sem::F32>(); TEST_F() local
480 auto* f32 = create<sem::F32>(); TEST_F() local
490 auto* f32 = create<sem::F32>(); TEST_F() local
504 auto* f32 = create<sem::F32>(); TEST_F() local
592 auto* f32 = create<sem::F32>(); TEST_F() local
[all...]
/third_party/skia/third_party/externals/tint/src/writer/msl/
H A Dgenerator_impl_function_test.cc51 params.push_back(Param("a", ty.f32())); in TEST_F()
94 // fn frag_main([[location(0)]] foo : f32) -> [[location(1)]] f32 { in TEST_F()
97 auto* foo_in = Param("foo", ty.f32(), {Location(0)}); in TEST_F()
98 Func("frag_main", ast::VariableList{foo_in}, ty.f32(), {Return("foo")}, in TEST_F()
129 // fn frag_main([[position(0)]] coord : vec4<f32>) -> [[frag_depth]] f32 { in TEST_F()
133 Param("coord", ty.vec4<f32>(), {Builtin(ast::Builtin::kPosition)}); in TEST_F()
134 Func("frag_main", ast::VariableList{coord_in}, ty.f32(), in TEST_F()
166 // [[location(1)]] col1 : f32; in TEST_F()
[all...]
/third_party/rust/crates/minimal-lexical/src/
H A Dlibm.rs35 pub fn powf(x: f32, y: f32) -> f32 { in powf()
36 const BP: [f32; 2] = [1.0, 1.5]; in powf()
37 const DP_H: [f32; 2] = [0.0, 5.84960938e-01]; /* 0x3f15c000 */ in powf()
38 const DP_L: [f32; 2] = [0.0, 1.56322085e-06]; /* 0x35d1cfdc */ in powf()
39 const TWO24: f32 = 16777216.0; /* 0x4b800000 */ in powf()
40 const HUGE: f32 = 1.0e30; in powf()
41 const TINY: f32 = 1.0e-30; in powf()
42 const L1: f32 in powf()
[all...]

Completed in 13 milliseconds

12345678910>>...19