Home | History | Annotate | Download | only in runtime

Lines Matching refs:Value

19 uint32_t __Sz_fptoui_f32_i32(float value) { return (uint32_t)value; }
21 uint32_t __Sz_fptoui_f64_i32(double value) { return (uint32_t)value; }
23 uint64_t __Sz_fptoui_f32_i64(float Value) { return (uint64_t)Value; }
25 uint64_t __Sz_fptoui_f64_i64(double Value) { return (uint64_t)Value; }
27 int64_t __Sz_fptosi_f32_i64(float Value) { return (int64_t)Value; }
29 int64_t __Sz_fptosi_f64_i64(double Value) { return (int64_t)Value; }
31 float __Sz_uitofp_i32_f32(uint32_t Value) { return (float)Value; }
33 float __Sz_uitofp_i64_f32(uint64_t Value) { return (float)Value; }
35 double __Sz_uitofp_i32_f64(uint32_t Value) { return (double)Value; }
37 double __Sz_uitofp_i64_f64(uint64_t Value) { return (double)Value; }
39 float __Sz_sitofp_i64_f32(int64_t Value) { return (float)Value; }
41 double __Sz_sitofp_i64_f64(int64_t Value) { return (double)Value; }