├── .gitignore ├── BUILDING_on_Linux.txt ├── BUILDING_on_Windows.txt ├── CMake ├── Checkers │ ├── Clang.cmake │ ├── Compiler_Features.cmake │ └── Gcc.cmake ├── Config.hh.in ├── Modules │ ├── Cct_Banner.cmake │ ├── Cct_Helpers.cmake │ ├── Cct_Libaoclutils.cmake │ ├── Cct_Library.cmake │ ├── Cct_Options.cmake │ ├── Cct_Variables.cmake │ └── Cct_Version.cmake ├── Presets │ ├── Arch │ │ ├── x64.json │ │ └── x86.json │ ├── Base.json │ ├── Compilers │ │ ├── Clang.json │ │ ├── Gcc.json │ │ └── toolchain.cmake │ ├── Default.json │ ├── Generators │ │ ├── Make.json │ │ └── Ninja.json │ ├── Os │ │ ├── Linux.json │ │ └── Windows.json │ ├── Project.json │ ├── Project │ │ └── Package.json │ ├── x64-linux-gcc.json │ ├── x64-linux-llvm.json │ └── x64-windows-llvm.json ├── Version.hh.in ├── buildsysinfo.hh.in └── version.build.hh.in ├── CMakeLists.txt ├── CMakePresets.json ├── COPYRIGHT.txt ├── LICENSE ├── NOTICES ├── README.md ├── SConstruct ├── docs ├── CMakeBuildSystem.md ├── ReleaseNotes_AMDLibM.txt └── internal │ ├── coding-style.org │ ├── cosh.md │ ├── libm-tests.org │ └── source-structure.org ├── examples ├── Makefile ├── README └── src │ ├── main.c │ ├── use_acos.c │ ├── use_add.c │ ├── use_asin.c │ ├── use_asin_avx512.c │ ├── use_asinh.c │ ├── use_atan.c │ ├── use_atan2.c │ ├── use_atan_avx512.c │ ├── use_cbrt.c │ ├── use_ceil.c │ ├── use_cexp.c │ ├── use_clog.c │ ├── use_copysign.c │ ├── use_cos.c │ ├── use_cosh.c │ ├── use_cpow.c │ ├── use_div.c │ ├── use_erf.c │ ├── use_erf_avx512.c │ ├── use_exp.c │ ├── use_exp10.c │ ├── use_exp2.c │ ├── use_exp2_avx512.c │ ├── use_exp_avx512.c │ ├── use_fabs.c │ ├── use_fdim.c │ ├── use_fmax.c │ ├── use_fmin.c │ ├── use_hypot.c │ ├── use_log.c │ ├── use_log10_avx512.c │ ├── use_log1p.c │ ├── use_log2.c │ ├── use_log_avx512.c │ ├── use_mul.c │ ├── use_nearbyint.c │ ├── use_pow.c │ ├── use_pow_avx512.c │ ├── use_remainder.c │ ├── use_round.c │ ├── use_sin.c │ ├── use_sincos.c │ ├── use_sinh.c │ ├── use_sqrt.c │ ├── use_sub.c │ ├── use_tan.c │ ├── use_tanh.c │ └── use_trunc.c ├── gtests ├── Gtest_srcs │ ├── SConscript │ ├── gbench_main_vec_arr.cc │ ├── gbench_perf.cc │ ├── gtest_accu.cc │ └── gtest_main_vec_arr.cc ├── README ├── SConscript ├── VecArr │ ├── SConscript │ ├── gbench_main_vec_arr.cc │ └── gtest_main_vec_arr.cc ├── acos │ ├── SConscript │ ├── acos_callback.cc │ ├── acos_perf.cc │ └── test_acos_data.h ├── acosh │ ├── SConscript │ ├── acosh_callback.cc │ ├── acosh_perf.cc │ └── test_acosh_data.h ├── add │ ├── SConscript │ ├── add_callback.cc │ ├── add_perf.cc │ └── test_add_data.h ├── almtesttype.cc ├── asin │ ├── SConscript │ ├── asin_callback.cc │ ├── asin_perf.cc │ └── test_asin_data.h ├── asinh │ ├── SConscript │ ├── asinh_callback.cc │ ├── asinh_perf.cc │ └── test_asinh_data.h ├── atan │ ├── SConscript │ ├── atan_callback.cc │ ├── atan_perf.cc │ └── test_atan_data.h ├── atan2 │ ├── SConscript │ ├── atan2_callback.cc │ ├── atan2_perf.cc │ └── test_atan2_data.h ├── atanh │ ├── SConscript │ ├── atanh_callback.cc │ ├── atanh_perf.cc │ └── test_atanh_data.h ├── cbrt │ ├── SConscript │ ├── cbrt_callback.cc │ ├── cbrt_perf.cc │ └── test_cbrt_data.h ├── ceil │ ├── SConscript │ ├── ceil_callback.cc │ ├── ceil_perf.cc │ └── test_ceil_data.h ├── cexp │ ├── SConscript │ ├── cexp_callback.cc │ ├── cexp_perf.cc │ └── test_cexp_data.h ├── cmdline.cc ├── compat │ ├── SConscript │ ├── inc │ │ └── libm_glibc_compat.h │ └── src │ │ ├── test_cos.c │ │ ├── test_exp.c │ │ ├── test_log.c │ │ ├── test_main.c │ │ ├── test_pow.c │ │ └── test_sin.c ├── copysign │ ├── SConscript │ ├── copysign_callback.cc │ ├── copysign_perf.cc │ └── test_copysign_data.h ├── cos │ ├── SConscript │ ├── cos_callback.cc │ ├── cos_perf.cc │ └── test_cos_data.h ├── cosh │ ├── SConscript │ ├── cosh_callback.cc │ ├── cosh_perf.cc │ └── test_cosh_data.h ├── dynamic │ ├── SConscript │ ├── inc │ │ ├── func_types.h │ │ ├── libm_dynamic_load.h │ │ ├── test_functions.h │ │ └── utils.h │ └── src │ │ ├── test_functions.c │ │ ├── test_main.c │ │ ├── test_srcs │ │ ├── test_acos.c │ │ ├── test_acosh.c │ │ ├── test_asin.c │ │ ├── test_asinh.c │ │ ├── test_atan.c │ │ ├── test_atan2.c │ │ ├── test_atanh.c │ │ ├── test_cbrt.c │ │ ├── test_ceil.c │ │ ├── test_cexp.c │ │ ├── test_copysign.c │ │ ├── test_cos.c │ │ ├── test_cosh.c │ │ ├── test_erf.c │ │ ├── test_exp.c │ │ ├── test_exp10.c │ │ ├── test_exp2.c │ │ ├── test_expm1.c │ │ ├── test_fabs.c │ │ ├── test_fdim.c │ │ ├── test_finite.c │ │ ├── test_floor.c │ │ ├── test_fmax.c │ │ ├── test_fmin.c │ │ ├── test_fmod.c │ │ ├── test_frexp.c │ │ ├── test_hypot.c │ │ ├── test_ilogb.c │ │ ├── test_ldexp.c │ │ ├── test_llrint.c │ │ ├── test_llround.c │ │ ├── test_log.c │ │ ├── test_log10.c │ │ ├── test_log1p.c │ │ ├── test_log2.c │ │ ├── test_logb.c │ │ ├── test_lrint.c │ │ ├── test_lround.c │ │ ├── test_modf.c │ │ ├── test_nan.c │ │ ├── test_nearbyint.c │ │ ├── test_nextafter.c │ │ ├── test_nexttoward.c │ │ ├── test_pow.c │ │ ├── test_remainder.c │ │ ├── test_remquo.c │ │ ├── test_rint.c │ │ ├── test_round.c │ │ ├── test_scalbln.c │ │ ├── test_scalbn.c │ │ ├── test_sin.c │ │ ├── test_sincos.c │ │ ├── test_sinh.c │ │ ├── test_sqrt.c │ │ ├── test_tan.c │ │ ├── test_tanh.c │ │ └── test_trunc.c │ │ └── utils.c ├── erf │ ├── SConscript │ ├── erf_callback.cc │ ├── erf_perf.cc │ └── test_erf_data.h ├── exp │ ├── SConscript │ ├── exp_callback.cc │ ├── exp_perf.cc │ └── test_exp_data.h ├── exp10 │ ├── SConscript │ ├── exp10_callback.cc │ ├── exp10_perf.cc │ └── test_exp10_data.h ├── exp2 │ ├── SConscript │ ├── exp2_callback.cc │ ├── exp2_perf.cc │ └── test_exp2_data.h ├── expm1 │ ├── SConscript │ ├── expm1_callback.cc │ ├── expm1_perf.cc │ └── test_expm1_data.h ├── fabs │ ├── SConscript │ ├── fabs_callback.cc │ ├── fabs_perf.cc │ └── test_fabs_data.h ├── fdim │ ├── SConscript │ ├── fdim_callback.cc │ ├── fdim_perf.cc │ └── test_fdim_data.h ├── filter.cc ├── floor │ ├── SConscript │ ├── floor_callback.cc │ ├── floor_perf.cc │ └── test_floor_data.h ├── fmax │ ├── SConscript │ ├── fmax_callback.cc │ ├── fmax_perf.cc │ └── test_fmax_data.h ├── fmin │ ├── SConscript │ ├── fmin_callback.cc │ ├── fmin_perf.cc │ └── test_fmin_data.h ├── fmod │ ├── SConscript │ ├── fmod_callback.cc │ ├── fmod_perf.cc │ └── test_fmod_data.h ├── func_var_existence.cc ├── gapi │ ├── SConscript │ ├── gbench │ │ ├── SConscript │ │ ├── benchmark.h │ │ ├── build_gbench │ │ └── src │ │ │ ├── arraysize.h │ │ │ ├── benchmark.cc │ │ │ ├── benchmark_api_internal.cc │ │ │ ├── benchmark_api_internal.h │ │ │ ├── benchmark_name.cc │ │ │ ├── benchmark_register.cc │ │ │ ├── benchmark_register.h │ │ │ ├── benchmark_runner.cc │ │ │ ├── benchmark_runner.h │ │ │ ├── check.h │ │ │ ├── colorprint.cc │ │ │ ├── colorprint.h │ │ │ ├── commandlineflags.cc │ │ │ ├── commandlineflags.h │ │ │ ├── complexity.cc │ │ │ ├── complexity.h │ │ │ ├── console_reporter.cc │ │ │ ├── counter.cc │ │ │ ├── counter.h │ │ │ ├── csv_reporter.cc │ │ │ ├── cycleclock.h │ │ │ ├── internal_macros.h │ │ │ ├── json_reporter.cc │ │ │ ├── log.h │ │ │ ├── mutex.h │ │ │ ├── re.h │ │ │ ├── reporter.cc │ │ │ ├── sleep.cc │ │ │ ├── sleep.h │ │ │ ├── statistics.cc │ │ │ ├── statistics.h │ │ │ ├── string_util.cc │ │ │ ├── string_util.h │ │ │ ├── sysinfo.cc │ │ │ ├── thread_manager.h │ │ │ ├── thread_timer.h │ │ │ ├── timers.cc │ │ │ └── timers.h │ ├── gtest │ │ ├── SConscript │ │ ├── build_gtest │ │ ├── gtest.h │ │ └── src │ │ │ └── gtest_all.cc │ └── internal_utils.cmake ├── gbench_main.cc ├── gtest_main.cc ├── hypot │ ├── SConscript │ ├── hypot_callback.cc │ ├── hypot_perf.cc │ └── test_hypot_data.h ├── include │ ├── almstruct.h │ ├── almtest.h │ ├── almtest │ │ ├── defs.h │ │ └── random.h │ ├── almtestperf.h │ ├── args.h │ ├── callback.h │ ├── cmdline.h │ ├── debug.h │ ├── func_var_existence.h │ ├── libm_tests.h │ └── verify.h ├── ldexp │ ├── SConscript │ ├── ldexp_callback.cc │ ├── ldexp_perf.cc │ └── test_ldexp_data.h ├── libs │ └── mparith │ │ ├── Makefile │ │ ├── SConscript │ │ ├── acos.c │ │ ├── acosh.c │ │ ├── add.c │ │ ├── alm_mp_funcs.h │ │ ├── asin.c │ │ ├── asinh.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanh.c │ │ ├── build_libmp │ │ ├── cbrt.c │ │ ├── ceil.c │ │ ├── cexp.c │ │ ├── copysign.c │ │ ├── cos.c │ │ ├── cosh.c │ │ ├── cospi.c │ │ ├── cycles.c │ │ ├── cycles.h │ │ ├── erf.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp2.c │ │ ├── expm1.c │ │ ├── fabs.c │ │ ├── fdim.c │ │ ├── finite.c │ │ ├── floor.c │ │ ├── fma.c │ │ ├── fmax.c │ │ ├── fmin.c │ │ ├── fmod.c │ │ ├── frexp.c │ │ ├── hypot.c │ │ ├── ilogb.c │ │ ├── ldexp.c │ │ ├── linearfrac.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log1p.c │ │ ├── log2.c │ │ ├── logb.c │ │ ├── modf.c │ │ ├── mparith_c.c │ │ ├── mparith_c.h │ │ ├── mparith_f.c │ │ ├── mparith_f.h │ │ ├── mul.c │ │ ├── nanny.c │ │ ├── nanny.h │ │ ├── nextafter.c │ │ ├── pow.c │ │ ├── precision.h │ │ ├── remainder.c │ │ ├── remquo.c │ │ ├── rint.c │ │ ├── round.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sinh.c │ │ ├── sinpi.c │ │ ├── sqrt.c │ │ ├── statusword.c │ │ ├── statusword.h │ │ ├── sub.c │ │ ├── tan.c │ │ ├── tanh.c │ │ ├── tanpi.c │ │ └── trunc.c ├── linearfrac │ ├── SConscript │ ├── gbench_linearfrac.cc │ ├── gtest_linearfrac.cc │ ├── linearfrac_callback.cc │ ├── linearfrac_perf.cc │ └── test_linearfrac_data.h ├── log │ ├── SConscript │ ├── log_callback.cc │ ├── log_perf.cc │ └── test_log_data.h ├── log10 │ ├── SConscript │ ├── log10_callback.cc │ ├── log10_perf.cc │ └── test_log10_data.h ├── log1p │ ├── SConscript │ ├── log1p_callback.cc │ ├── log1p_perf.cc │ └── test_log1p_data.h ├── log2 │ ├── SConscript │ ├── log2_callback.cc │ ├── log2_perf.cc │ └── test_log2_data.h ├── logb │ ├── SConscript │ ├── logb_callback.cc │ ├── logb_perf.cc │ └── test_logb_data.h ├── main.cc ├── mul │ ├── SConscript │ ├── mul_callback.cc │ ├── mul_perf.cc │ └── test_mul_data.h ├── nearbyint │ ├── SConscript │ ├── nearbyint_callback.cc │ ├── nearbyint_perf.cc │ └── test_nearbyint_data.h ├── nextafter │ ├── SConscript │ ├── nextafter_callback.cc │ ├── nextafter_perf.cc │ └── test_nextafter_data.h ├── pow │ ├── SConscript │ ├── pow_callback.cc │ ├── pow_perf.cc │ └── test_pow_data.h ├── powx │ ├── SConscript │ ├── gbench_powx.cc │ ├── gtest_powx.cc │ ├── powx_callback.cc │ ├── powx_perf.cc │ └── test_powx_data.h ├── random.cc ├── remainder │ ├── SConscript │ ├── remainder_callback.cc │ ├── remainder_perf.cc │ └── test_remainder_data.h ├── rint │ ├── SConscript │ ├── rint_callback.cc │ ├── rint_perf.cc │ └── test_rint_data.h ├── round │ ├── SConscript │ ├── round_callback.cc │ ├── round_perf.cc │ └── test_round_data.h ├── sin │ ├── SConscript │ ├── sin_callback.cc │ ├── sin_perf.cc │ └── test_sin_data.h ├── sincos │ ├── SConscript │ ├── gbench_sincos.cc │ ├── gtest_sincos.cc │ ├── sincos.h │ ├── sincos_callback.cc │ ├── sincos_perf.cc │ └── test_sincos_data.h ├── sinh │ ├── SConscript │ ├── sinh_callback.cc │ ├── sinh_perf.cc │ └── test_sinh_data.h ├── sqrt │ ├── SConscript │ ├── sqrt_callback.cc │ ├── sqrt_perf.cc │ └── test_sqrt_data.h ├── sub │ ├── SConscript │ ├── sub_callback.cc │ ├── sub_perf.cc │ └── test_sub_data.h ├── tan │ ├── SConscript │ ├── tan_callback.cc │ ├── tan_perf.cc │ └── test_tan_data.h ├── tanh │ ├── SConscript │ ├── tanh_callback.cc │ ├── tanh_perf.cc │ └── test_tanh_data.h ├── trunc │ ├── SConscript │ ├── test_trunc_data.h │ ├── trunc_callback.cc │ └── trunc_perf.cc ├── ulp.cc └── verify.cc ├── include ├── external │ ├── amdlibm.h │ └── amdlibm_vec.h ├── fn_macros.h ├── libm │ ├── __alm_func_internal.h │ ├── alm_special.h │ ├── amd_funcs_internal.h │ ├── arch │ │ ├── all.h │ │ ├── avx2.h │ │ ├── zen.h │ │ ├── zen2.h │ │ ├── zen3.h │ │ ├── zen4.h │ │ └── zen5.h │ ├── compiler.h │ ├── constants.h │ ├── cpu_features.h │ ├── entry_pt.h │ ├── iface.h │ ├── poly-vec.h │ ├── poly.h │ ├── typehelper-vec.h │ ├── typehelper.h │ └── types.h ├── libm_amd.h ├── libm_errno_amd.h ├── libm_inlines_amd.h ├── libm_macros.h ├── libm_nix_macros.h ├── libm_util_amd.h ├── libm_win_macros.h └── weak_macros.h ├── requirements.txt ├── scripts ├── .gitignore ├── __init__.py ├── almfast.def ├── build.sh ├── common.sh ├── libalm.def ├── libm │ ├── __init__.py │ ├── exp │ │ └── __init__.py │ ├── exp2 │ │ ├── __init__.py │ │ └── gen-tables.py │ └── log │ │ └── __init__.py ├── mparith32.def ├── mparith64.def ├── perf-setup.sh ├── run-with-ld-path.sh ├── run.sh ├── run │ ├── acos.sh │ ├── asin.sh │ ├── asinh.sh │ ├── atan.sh │ ├── cos.sh │ ├── cosh.sh │ ├── exp.sh │ ├── exp2.sh │ ├── expf.sh │ ├── expm1.sh │ ├── fabs.sh │ ├── log.sh │ ├── log10.sh │ ├── log2.sh │ ├── pow.sh │ ├── sin.sh │ ├── sinh.sh │ ├── tan.sh │ ├── tanh.sh │ └── windows │ │ ├── common.bat │ │ ├── run.bat │ │ └── run │ │ ├── cos.bat │ │ ├── cosh.bat │ │ ├── exp.bat │ │ ├── log.bat │ │ ├── pow.bat │ │ ├── sin.bat │ │ ├── sinh.bat │ │ ├── tan.bat │ │ └── tanh.bat ├── site_scons │ ├── alm │ │ ├── __init__.py │ │ ├── build.py │ │ ├── check.py │ │ ├── compiler │ │ │ ├── __init__.py │ │ │ ├── gcc.py │ │ │ ├── helper.py │ │ │ ├── icc.py │ │ │ └── llvm.py │ │ ├── env.py │ │ ├── options.py │ │ ├── platform.py │ │ ├── toolchain.py │ │ └── variables.py │ ├── site_init.py │ └── site_tools │ │ └── gitversion.py ├── style │ ├── astylerc │ └── clang-format └── utils │ └── __init__.py ├── src ├── CMakeLists.txt ├── SConscript ├── alm_main.c ├── alm_special.c ├── alm_version.h ├── arch │ ├── CMakeLists.txt │ ├── SConscript │ ├── zen │ │ ├── CMakeLists.txt │ │ ├── SConscript │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── expf.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log2.c │ │ ├── log2f.c │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logf.c │ │ ├── lround.c │ │ ├── pow.c │ │ ├── powf.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── vrd2_atan.c │ │ ├── vrd2_cos.c │ │ ├── vrd2_erf.c │ │ ├── vrd2_exp.c │ │ ├── vrd2_exp2.c │ │ ├── vrd2_fabs.c │ │ ├── vrd2_linearfrac.c │ │ ├── vrd2_log.c │ │ ├── vrd2_log2.c │ │ ├── vrd2_pow.c │ │ ├── vrd2_powx.c │ │ ├── vrd2_sin.c │ │ ├── vrd2_sincos.c │ │ ├── vrd2_sqrt.c │ │ ├── vrd2_tan.c │ │ ├── vrd4_atan.c │ │ ├── vrd4_cos.c │ │ ├── vrd4_erf.c │ │ ├── vrd4_exp.c │ │ ├── vrd4_exp2.c │ │ ├── vrd4_fabs.c │ │ ├── vrd4_linearfrac.c │ │ ├── vrd4_log.c │ │ ├── vrd4_log2.c │ │ ├── vrd4_pow.c │ │ ├── vrd4_powx.c │ │ ├── vrd4_sin.c │ │ ├── vrd4_sincos.c │ │ ├── vrd4_sqrt.c │ │ ├── vrd4_tan.c │ │ ├── vrda_add.c │ │ ├── vrda_addi.c │ │ ├── vrda_cbrt.c │ │ ├── vrda_cos.c │ │ ├── vrda_div.c │ │ ├── vrda_divi.c │ │ ├── vrda_exp.c │ │ ├── vrda_exp10.c │ │ ├── vrda_exp2.c │ │ ├── vrda_expm1.c │ │ ├── vrda_fabs.c │ │ ├── vrda_fmax.c │ │ ├── vrda_fmaxi.c │ │ ├── vrda_fmin.c │ │ ├── vrda_fmini.c │ │ ├── vrda_linearfrac.c │ │ ├── vrda_log.c │ │ ├── vrda_log10.c │ │ ├── vrda_log1p.c │ │ ├── vrda_log2.c │ │ ├── vrda_mul.c │ │ ├── vrda_muli.c │ │ ├── vrda_pow.c │ │ ├── vrda_powx.c │ │ ├── vrda_sin.c │ │ ├── vrda_sincos.c │ │ ├── vrda_sqrt.c │ │ ├── vrda_sub.c │ │ ├── vrda_subi.c │ │ ├── vrs4_acosf.c │ │ ├── vrs4_asinf.c │ │ ├── vrs4_atanf.c │ │ ├── vrs4_cosf.c │ │ ├── vrs4_coshf.c │ │ ├── vrs4_erff.c │ │ ├── vrs4_exp2f.c │ │ ├── vrs4_expf.c │ │ ├── vrs4_fabsf.c │ │ ├── vrs4_linearfracf.c │ │ ├── vrs4_log10f.c │ │ ├── vrs4_log2f.c │ │ ├── vrs4_logf.c │ │ ├── vrs4_powf.c │ │ ├── vrs4_powxf.c │ │ ├── vrs4_sincosf.c │ │ ├── vrs4_sinf.c │ │ ├── vrs4_sqrtf.c │ │ ├── vrs4_tanf.c │ │ ├── vrs4_tanhf.c │ │ ├── vrs8_acosf.c │ │ ├── vrs8_asinf.c │ │ ├── vrs8_atanf.c │ │ ├── vrs8_cosf.c │ │ ├── vrs8_coshf.c │ │ ├── vrs8_erff.c │ │ ├── vrs8_exp2f.c │ │ ├── vrs8_expf.c │ │ ├── vrs8_fabsf.c │ │ ├── vrs8_linearfracf.c │ │ ├── vrs8_log10f.c │ │ ├── vrs8_log2f.c │ │ ├── vrs8_logf.c │ │ ├── vrs8_powf.c │ │ ├── vrs8_powxf.c │ │ ├── vrs8_sincosf.c │ │ ├── vrs8_sinf.c │ │ ├── vrs8_sqrtf.c │ │ ├── vrs8_tanf.c │ │ ├── vrs8_tanhf.c │ │ ├── vrsa_addf.c │ │ ├── vrsa_addfi.c │ │ ├── vrsa_cbrtf.c │ │ ├── vrsa_cosf.c │ │ ├── vrsa_divf.c │ │ ├── vrsa_divfi.c │ │ ├── vrsa_exp10f.c │ │ ├── vrsa_exp2f.c │ │ ├── vrsa_expf.c │ │ ├── vrsa_expm1f.c │ │ ├── vrsa_fabsf.c │ │ ├── vrsa_fmaxf.c │ │ ├── vrsa_fmaxfi.c │ │ ├── vrsa_fminf.c │ │ ├── vrsa_fminfi.c │ │ ├── vrsa_linearfracf.c │ │ ├── vrsa_log10f.c │ │ ├── vrsa_log1pf.c │ │ ├── vrsa_log2f.c │ │ ├── vrsa_logf.c │ │ ├── vrsa_mulf.c │ │ ├── vrsa_mulfi.c │ │ ├── vrsa_powf.c │ │ ├── vrsa_powxf.c │ │ ├── vrsa_sincosf.c │ │ ├── vrsa_sinf.c │ │ ├── vrsa_sqrtf.c │ │ ├── vrsa_subf.c │ │ └── vrsa_subfi.c │ ├── zen2 │ │ ├── CMakeLists.txt │ │ ├── SConscript │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── expf.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log2.c │ │ ├── log2f.c │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logf.c │ │ ├── lround.c │ │ ├── pow.c │ │ ├── powf.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── vrd2_atan.c │ │ ├── vrd2_cos.c │ │ ├── vrd2_erf.c │ │ ├── vrd2_exp.c │ │ ├── vrd2_exp2.c │ │ ├── vrd2_fabs.c │ │ ├── vrd2_linearfrac.c │ │ ├── vrd2_log.c │ │ ├── vrd2_log2.c │ │ ├── vrd2_pow.c │ │ ├── vrd2_powx.c │ │ ├── vrd2_sin.c │ │ ├── vrd2_sincos.c │ │ ├── vrd2_sqrt.c │ │ ├── vrd2_tan.c │ │ ├── vrd4_atan.c │ │ ├── vrd4_cos.c │ │ ├── vrd4_erf.c │ │ ├── vrd4_exp.c │ │ ├── vrd4_exp2.c │ │ ├── vrd4_fabs.c │ │ ├── vrd4_linearfrac.c │ │ ├── vrd4_log.c │ │ ├── vrd4_log2.c │ │ ├── vrd4_pow.c │ │ ├── vrd4_powx.c │ │ ├── vrd4_sin.c │ │ ├── vrd4_sincos.c │ │ ├── vrd4_sqrt.c │ │ ├── vrd4_tan.c │ │ ├── vrda_add.c │ │ ├── vrda_addi.c │ │ ├── vrda_cbrt.c │ │ ├── vrda_cos.c │ │ ├── vrda_div.c │ │ ├── vrda_divi.c │ │ ├── vrda_exp.c │ │ ├── vrda_exp10.c │ │ ├── vrda_exp2.c │ │ ├── vrda_expm1.c │ │ ├── vrda_fabs.c │ │ ├── vrda_fmax.c │ │ ├── vrda_fmaxi.c │ │ ├── vrda_fmin.c │ │ ├── vrda_fmini.c │ │ ├── vrda_linearfrac.c │ │ ├── vrda_log.c │ │ ├── vrda_log10.c │ │ ├── vrda_log1p.c │ │ ├── vrda_log2.c │ │ ├── vrda_mul.c │ │ ├── vrda_muli.c │ │ ├── vrda_pow.c │ │ ├── vrda_powx.c │ │ ├── vrda_sin.c │ │ ├── vrda_sincos.c │ │ ├── vrda_sqrt.c │ │ ├── vrda_sub.c │ │ ├── vrda_subi.c │ │ ├── vrs4_acosf.c │ │ ├── vrs4_asinf.c │ │ ├── vrs4_atanf.c │ │ ├── vrs4_cosf.c │ │ ├── vrs4_coshf.c │ │ ├── vrs4_erff.c │ │ ├── vrs4_exp2f.c │ │ ├── vrs4_expf.c │ │ ├── vrs4_fabsf.c │ │ ├── vrs4_linearfracf.c │ │ ├── vrs4_log10f.c │ │ ├── vrs4_log2f.c │ │ ├── vrs4_logf.c │ │ ├── vrs4_powf.c │ │ ├── vrs4_powxf.c │ │ ├── vrs4_sincosf.c │ │ ├── vrs4_sinf.c │ │ ├── vrs4_sqrtf.c │ │ ├── vrs4_tanf.c │ │ ├── vrs4_tanhf.c │ │ ├── vrs8_acosf.c │ │ ├── vrs8_asinf.c │ │ ├── vrs8_atanf.c │ │ ├── vrs8_cosf.c │ │ ├── vrs8_coshf.c │ │ ├── vrs8_erff.c │ │ ├── vrs8_exp2f.c │ │ ├── vrs8_expf.c │ │ ├── vrs8_fabsf.c │ │ ├── vrs8_linearfracf.c │ │ ├── vrs8_log10f.c │ │ ├── vrs8_log2f.c │ │ ├── vrs8_logf.c │ │ ├── vrs8_powf.c │ │ ├── vrs8_powxf.c │ │ ├── vrs8_sincosf.c │ │ ├── vrs8_sinf.c │ │ ├── vrs8_sqrtf.c │ │ ├── vrs8_tanf.c │ │ ├── vrs8_tanhf.c │ │ ├── vrsa_addf.c │ │ ├── vrsa_addfi.c │ │ ├── vrsa_cbrtf.c │ │ ├── vrsa_cosf.c │ │ ├── vrsa_divf.c │ │ ├── vrsa_divfi.c │ │ ├── vrsa_exp10f.c │ │ ├── vrsa_exp2f.c │ │ ├── vrsa_expf.c │ │ ├── vrsa_expm1f.c │ │ ├── vrsa_fabsf.c │ │ ├── vrsa_fmaxf.c │ │ ├── vrsa_fmaxfi.c │ │ ├── vrsa_fminf.c │ │ ├── vrsa_fminfi.c │ │ ├── vrsa_linearfracf.c │ │ ├── vrsa_log10f.c │ │ ├── vrsa_log1pf.c │ │ ├── vrsa_log2f.c │ │ ├── vrsa_logf.c │ │ ├── vrsa_mulf.c │ │ ├── vrsa_mulfi.c │ │ ├── vrsa_powf.c │ │ ├── vrsa_powxf.c │ │ ├── vrsa_sincosf.c │ │ ├── vrsa_sinf.c │ │ ├── vrsa_sqrtf.c │ │ ├── vrsa_subf.c │ │ └── vrsa_subfi.c │ ├── zen3 │ │ ├── CMakeLists.txt │ │ ├── SConscript │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── expf.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log2.c │ │ ├── log2f.c │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logf.c │ │ ├── lround.c │ │ ├── pow.c │ │ ├── powf.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── vrd2_atan.c │ │ ├── vrd2_cos.c │ │ ├── vrd2_erf.c │ │ ├── vrd2_exp.c │ │ ├── vrd2_exp2.c │ │ ├── vrd2_fabs.c │ │ ├── vrd2_linearfrac.c │ │ ├── vrd2_log.c │ │ ├── vrd2_log2.c │ │ ├── vrd2_pow.c │ │ ├── vrd2_powx.c │ │ ├── vrd2_sin.c │ │ ├── vrd2_sincos.c │ │ ├── vrd2_sqrt.c │ │ ├── vrd2_tan.c │ │ ├── vrd4_atan.c │ │ ├── vrd4_cos.c │ │ ├── vrd4_erf.c │ │ ├── vrd4_exp.c │ │ ├── vrd4_exp2.c │ │ ├── vrd4_fabs.c │ │ ├── vrd4_linearfrac.c │ │ ├── vrd4_log.c │ │ ├── vrd4_log2.c │ │ ├── vrd4_pow.c │ │ ├── vrd4_powx.c │ │ ├── vrd4_sin.c │ │ ├── vrd4_sincos.c │ │ ├── vrd4_sqrt.c │ │ ├── vrd4_tan.c │ │ ├── vrda_add.c │ │ ├── vrda_addi.c │ │ ├── vrda_cbrt.c │ │ ├── vrda_cos.c │ │ ├── vrda_div.c │ │ ├── vrda_divi.c │ │ ├── vrda_exp.c │ │ ├── vrda_exp10.c │ │ ├── vrda_exp2.c │ │ ├── vrda_expm1.c │ │ ├── vrda_fabs.c │ │ ├── vrda_fmax.c │ │ ├── vrda_fmaxi.c │ │ ├── vrda_fmin.c │ │ ├── vrda_fmini.c │ │ ├── vrda_linearfrac.c │ │ ├── vrda_log.c │ │ ├── vrda_log10.c │ │ ├── vrda_log1p.c │ │ ├── vrda_log2.c │ │ ├── vrda_mul.c │ │ ├── vrda_muli.c │ │ ├── vrda_pow.c │ │ ├── vrda_powx.c │ │ ├── vrda_sin.c │ │ ├── vrda_sincos.c │ │ ├── vrda_sqrt.c │ │ ├── vrda_sub.c │ │ ├── vrda_subi.c │ │ ├── vrs4_acosf.c │ │ ├── vrs4_asinf.c │ │ ├── vrs4_atanf.c │ │ ├── vrs4_cosf.c │ │ ├── vrs4_coshf.c │ │ ├── vrs4_erff.c │ │ ├── vrs4_exp2f.c │ │ ├── vrs4_expf.c │ │ ├── vrs4_fabsf.c │ │ ├── vrs4_linearfracf.c │ │ ├── vrs4_log10f.c │ │ ├── vrs4_log2f.c │ │ ├── vrs4_logf.c │ │ ├── vrs4_powf.c │ │ ├── vrs4_powxf.c │ │ ├── vrs4_sincosf.c │ │ ├── vrs4_sinf.c │ │ ├── vrs4_sqrtf.c │ │ ├── vrs4_tanf.c │ │ ├── vrs4_tanhf.c │ │ ├── vrs8_acosf.c │ │ ├── vrs8_asinf.c │ │ ├── vrs8_atanf.c │ │ ├── vrs8_cosf.c │ │ ├── vrs8_coshf.c │ │ ├── vrs8_erff.c │ │ ├── vrs8_exp2f.c │ │ ├── vrs8_expf.c │ │ ├── vrs8_fabsf.c │ │ ├── vrs8_linearfracf.c │ │ ├── vrs8_log10f.c │ │ ├── vrs8_log2f.c │ │ ├── vrs8_logf.c │ │ ├── vrs8_powf.c │ │ ├── vrs8_powxf.c │ │ ├── vrs8_sincosf.c │ │ ├── vrs8_sinf.c │ │ ├── vrs8_sqrtf.c │ │ ├── vrs8_tanf.c │ │ ├── vrs8_tanhf.c │ │ ├── vrsa_addf.c │ │ ├── vrsa_addfi.c │ │ ├── vrsa_cbrtf.c │ │ ├── vrsa_cosf.c │ │ ├── vrsa_divf.c │ │ ├── vrsa_divfi.c │ │ ├── vrsa_exp10f.c │ │ ├── vrsa_exp2f.c │ │ ├── vrsa_expf.c │ │ ├── vrsa_expm1f.c │ │ ├── vrsa_fabsf.c │ │ ├── vrsa_fmaxf.c │ │ ├── vrsa_fmaxfi.c │ │ ├── vrsa_fminf.c │ │ ├── vrsa_fminfi.c │ │ ├── vrsa_linearfracf.c │ │ ├── vrsa_log10f.c │ │ ├── vrsa_log1pf.c │ │ ├── vrsa_log2f.c │ │ ├── vrsa_logf.c │ │ ├── vrsa_mulf.c │ │ ├── vrsa_mulfi.c │ │ ├── vrsa_powf.c │ │ ├── vrsa_powxf.c │ │ ├── vrsa_sincosf.c │ │ ├── vrsa_sinf.c │ │ ├── vrsa_sqrtf.c │ │ ├── vrsa_subf.c │ │ └── vrsa_subfi.c │ ├── zen4 │ │ ├── CMakeLists.txt │ │ ├── SConscript │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── expf.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log2.c │ │ ├── log2f.c │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logf.c │ │ ├── lround.c │ │ ├── pow.c │ │ ├── powf.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── vrd2_atan.c │ │ ├── vrd2_cos.c │ │ ├── vrd2_erf.c │ │ ├── vrd2_exp.c │ │ ├── vrd2_exp2.c │ │ ├── vrd2_fabs.c │ │ ├── vrd2_linearfrac.c │ │ ├── vrd2_log.c │ │ ├── vrd2_log2.c │ │ ├── vrd2_pow.c │ │ ├── vrd2_powx.c │ │ ├── vrd2_sin.c │ │ ├── vrd2_sincos.c │ │ ├── vrd2_sqrt.c │ │ ├── vrd2_tan.c │ │ ├── vrd4_atan.c │ │ ├── vrd4_cos.c │ │ ├── vrd4_erf.c │ │ ├── vrd4_exp.c │ │ ├── vrd4_exp2.c │ │ ├── vrd4_fabs.c │ │ ├── vrd4_linearfrac.c │ │ ├── vrd4_log.c │ │ ├── vrd4_log2.c │ │ ├── vrd4_pow.c │ │ ├── vrd4_powx.c │ │ ├── vrd4_sin.c │ │ ├── vrd4_sincos.c │ │ ├── vrd4_sqrt.c │ │ ├── vrd4_tan.c │ │ ├── vrd8_asin.c │ │ ├── vrd8_atan.c │ │ ├── vrd8_cos.c │ │ ├── vrd8_erf.c │ │ ├── vrd8_exp.c │ │ ├── vrd8_exp2.c │ │ ├── vrd8_linearfrac.c │ │ ├── vrd8_log.c │ │ ├── vrd8_log2.c │ │ ├── vrd8_pow.c │ │ ├── vrd8_powx.c │ │ ├── vrd8_sin.c │ │ ├── vrd8_sincos.c │ │ ├── vrd8_sqrt.c │ │ ├── vrd8_tan.c │ │ ├── vrda_add.c │ │ ├── vrda_addi.c │ │ ├── vrda_cbrt.c │ │ ├── vrda_cos.c │ │ ├── vrda_div.c │ │ ├── vrda_divi.c │ │ ├── vrda_exp.c │ │ ├── vrda_exp10.c │ │ ├── vrda_exp2.c │ │ ├── vrda_expm1.c │ │ ├── vrda_fabs.c │ │ ├── vrda_fmax.c │ │ ├── vrda_fmaxi.c │ │ ├── vrda_fmin.c │ │ ├── vrda_fmini.c │ │ ├── vrda_linearfrac.c │ │ ├── vrda_log.c │ │ ├── vrda_log10.c │ │ ├── vrda_log1p.c │ │ ├── vrda_log2.c │ │ ├── vrda_mul.c │ │ ├── vrda_muli.c │ │ ├── vrda_pow.c │ │ ├── vrda_powx.c │ │ ├── vrda_sin.c │ │ ├── vrda_sincos.c │ │ ├── vrda_sqrt.c │ │ ├── vrda_sub.c │ │ ├── vrda_subi.c │ │ ├── vrs16_acosf.c │ │ ├── vrs16_asinf.c │ │ ├── vrs16_atanf.c │ │ ├── vrs16_cosf.c │ │ ├── vrs16_erff.c │ │ ├── vrs16_exp2f.c │ │ ├── vrs16_expf.c │ │ ├── vrs16_linearfracf.c │ │ ├── vrs16_log10f.c │ │ ├── vrs16_log2f.c │ │ ├── vrs16_logf.c │ │ ├── vrs16_powf.c │ │ ├── vrs16_powxf.c │ │ ├── vrs16_sincosf.c │ │ ├── vrs16_sinf.c │ │ ├── vrs16_sqrtf.c │ │ ├── vrs16_tanf.c │ │ ├── vrs16_tanhf.c │ │ ├── vrs4_acosf.c │ │ ├── vrs4_asinf.c │ │ ├── vrs4_atanf.c │ │ ├── vrs4_cosf.c │ │ ├── vrs4_coshf.c │ │ ├── vrs4_erff.c │ │ ├── vrs4_exp2f.c │ │ ├── vrs4_expf.c │ │ ├── vrs4_fabsf.c │ │ ├── vrs4_linearfracf.c │ │ ├── vrs4_log10f.c │ │ ├── vrs4_log2f.c │ │ ├── vrs4_logf.c │ │ ├── vrs4_powf.c │ │ ├── vrs4_powxf.c │ │ ├── vrs4_sincosf.c │ │ ├── vrs4_sinf.c │ │ ├── vrs4_sqrtf.c │ │ ├── vrs4_tanf.c │ │ ├── vrs4_tanhf.c │ │ ├── vrs8_acosf.c │ │ ├── vrs8_asinf.c │ │ ├── vrs8_atanf.c │ │ ├── vrs8_cosf.c │ │ ├── vrs8_coshf.c │ │ ├── vrs8_erff.c │ │ ├── vrs8_exp2f.c │ │ ├── vrs8_expf.c │ │ ├── vrs8_fabsf.c │ │ ├── vrs8_linearfracf.c │ │ ├── vrs8_log10f.c │ │ ├── vrs8_log2f.c │ │ ├── vrs8_logf.c │ │ ├── vrs8_powf.c │ │ ├── vrs8_powxf.c │ │ ├── vrs8_sincosf.c │ │ ├── vrs8_sinf.c │ │ ├── vrs8_sqrtf.c │ │ ├── vrs8_tanf.c │ │ ├── vrs8_tanhf.c │ │ ├── vrsa_addf.c │ │ ├── vrsa_addfi.c │ │ ├── vrsa_cbrtf.c │ │ ├── vrsa_cosf.c │ │ ├── vrsa_divf.c │ │ ├── vrsa_divfi.c │ │ ├── vrsa_exp10f.c │ │ ├── vrsa_exp2f.c │ │ ├── vrsa_expf.c │ │ ├── vrsa_expm1f.c │ │ ├── vrsa_fabsf.c │ │ ├── vrsa_fmaxf.c │ │ ├── vrsa_fmaxfi.c │ │ ├── vrsa_fminf.c │ │ ├── vrsa_fminfi.c │ │ ├── vrsa_linearfracf.c │ │ ├── vrsa_log10f.c │ │ ├── vrsa_log1pf.c │ │ ├── vrsa_log2f.c │ │ ├── vrsa_logf.c │ │ ├── vrsa_mulf.c │ │ ├── vrsa_mulfi.c │ │ ├── vrsa_powf.c │ │ ├── vrsa_powxf.c │ │ ├── vrsa_sincosf.c │ │ ├── vrsa_sinf.c │ │ ├── vrsa_sqrtf.c │ │ ├── vrsa_subf.c │ │ └── vrsa_subfi.c │ └── zen5 │ │ ├── CMakeLists.txt │ │ ├── SConscript │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── cbrt.c │ │ ├── cbtrf.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── expf.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log2.c │ │ ├── log2f.c │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logf.c │ │ ├── lround.c │ │ ├── pow.c │ │ ├── powf.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── vrd2_atan.c │ │ ├── vrd2_cos.c │ │ ├── vrd2_erf.c │ │ ├── vrd2_exp.c │ │ ├── vrd2_exp2.c │ │ ├── vrd2_fabs.c │ │ ├── vrd2_linearfrac.c │ │ ├── vrd2_log.c │ │ ├── vrd2_log2.c │ │ ├── vrd2_pow.c │ │ ├── vrd2_powx.c │ │ ├── vrd2_sin.c │ │ ├── vrd2_sincos.c │ │ ├── vrd2_sqrt.c │ │ ├── vrd2_tan.c │ │ ├── vrd4_atan.c │ │ ├── vrd4_cos.c │ │ ├── vrd4_erf.c │ │ ├── vrd4_exp.c │ │ ├── vrd4_exp2.c │ │ ├── vrd4_fabs.c │ │ ├── vrd4_linearfrac.c │ │ ├── vrd4_log.c │ │ ├── vrd4_log2.c │ │ ├── vrd4_pow.c │ │ ├── vrd4_powx.c │ │ ├── vrd4_sin.c │ │ ├── vrd4_sincos.c │ │ ├── vrd4_sqrt.c │ │ ├── vrd4_tan.c │ │ ├── vrd8_asin.c │ │ ├── vrd8_atan.c │ │ ├── vrd8_cos.c │ │ ├── vrd8_erf.c │ │ ├── vrd8_exp.c │ │ ├── vrd8_exp2.c │ │ ├── vrd8_linearfrac.c │ │ ├── vrd8_log.c │ │ ├── vrd8_log2.c │ │ ├── vrd8_pow.c │ │ ├── vrd8_powx.c │ │ ├── vrd8_sin.c │ │ ├── vrd8_sincos.c │ │ ├── vrd8_sqrt.c │ │ ├── vrd8_tan.c │ │ ├── vrda_add.c │ │ ├── vrda_addi.c │ │ ├── vrda_cbrt.c │ │ ├── vrda_cos.c │ │ ├── vrda_div.c │ │ ├── vrda_divi.c │ │ ├── vrda_exp.c │ │ ├── vrda_exp10.c │ │ ├── vrda_exp2.c │ │ ├── vrda_expm1.c │ │ ├── vrda_fabs.c │ │ ├── vrda_fmax.c │ │ ├── vrda_fmaxi.c │ │ ├── vrda_fmin.c │ │ ├── vrda_fmini.c │ │ ├── vrda_linearfrac.c │ │ ├── vrda_log.c │ │ ├── vrda_log10.c │ │ ├── vrda_log1p.c │ │ ├── vrda_log2.c │ │ ├── vrda_mul.c │ │ ├── vrda_muli.c │ │ ├── vrda_pow.c │ │ ├── vrda_powx.c │ │ ├── vrda_sin.c │ │ ├── vrda_sincos.c │ │ ├── vrda_sqrt.c │ │ ├── vrda_sub.c │ │ ├── vrda_subi.c │ │ ├── vrs16_acosf.c │ │ ├── vrs16_asinf.c │ │ ├── vrs16_atanf.c │ │ ├── vrs16_cosf.c │ │ ├── vrs16_erff.c │ │ ├── vrs16_exp2f.c │ │ ├── vrs16_expf.c │ │ ├── vrs16_linearfracf.c │ │ ├── vrs16_log10f.c │ │ ├── vrs16_log2f.c │ │ ├── vrs16_logf.c │ │ ├── vrs16_powf.c │ │ ├── vrs16_powxf.c │ │ ├── vrs16_sincosf.c │ │ ├── vrs16_sinf.c │ │ ├── vrs16_sqrtf.c │ │ ├── vrs16_tanf.c │ │ ├── vrs16_tanhf.c │ │ ├── vrs4_acosf.c │ │ ├── vrs4_asinf.c │ │ ├── vrs4_atanf.c │ │ ├── vrs4_cosf.c │ │ ├── vrs4_coshf.c │ │ ├── vrs4_erff.c │ │ ├── vrs4_exp2f.c │ │ ├── vrs4_expf.c │ │ ├── vrs4_fabsf.c │ │ ├── vrs4_linearfracf.c │ │ ├── vrs4_log10f.c │ │ ├── vrs4_log2f.c │ │ ├── vrs4_logf.c │ │ ├── vrs4_powf.c │ │ ├── vrs4_powxf.c │ │ ├── vrs4_sincosf.c │ │ ├── vrs4_sinf.c │ │ ├── vrs4_sqrtf.c │ │ ├── vrs4_tanf.c │ │ ├── vrs4_tanhf.c │ │ ├── vrs8_acosf.c │ │ ├── vrs8_asinf.c │ │ ├── vrs8_atanf.c │ │ ├── vrs8_cosf.c │ │ ├── vrs8_coshf.c │ │ ├── vrs8_erff.c │ │ ├── vrs8_exp2f.c │ │ ├── vrs8_expf.c │ │ ├── vrs8_fabsf.c │ │ ├── vrs8_linearfracf.c │ │ ├── vrs8_log10f.c │ │ ├── vrs8_log2f.c │ │ ├── vrs8_logf.c │ │ ├── vrs8_powf.c │ │ ├── vrs8_powxf.c │ │ ├── vrs8_sincosf.c │ │ ├── vrs8_sinf.c │ │ ├── vrs8_sqrtf.c │ │ ├── vrs8_tanf.c │ │ ├── vrs8_tanhf.c │ │ ├── vrsa_addf.c │ │ ├── vrsa_addfi.c │ │ ├── vrsa_cbrtf.c │ │ ├── vrsa_cosf.c │ │ ├── vrsa_divf.c │ │ ├── vrsa_divfi.c │ │ ├── vrsa_exp10f.c │ │ ├── vrsa_exp2f.c │ │ ├── vrsa_expf.c │ │ ├── vrsa_expm1f.c │ │ ├── vrsa_fabsf.c │ │ ├── vrsa_fmaxf.c │ │ ├── vrsa_fmaxfi.c │ │ ├── vrsa_fminf.c │ │ ├── vrsa_fminfi.c │ │ ├── vrsa_linearfracf.c │ │ ├── vrsa_log10f.c │ │ ├── vrsa_log1pf.c │ │ ├── vrsa_log2f.c │ │ ├── vrsa_logf.c │ │ ├── vrsa_mulf.c │ │ ├── vrsa_mulfi.c │ │ ├── vrsa_powf.c │ │ ├── vrsa_powxf.c │ │ ├── vrsa_sincosf.c │ │ ├── vrsa_sinf.c │ │ ├── vrsa_sqrtf.c │ │ ├── vrsa_subf.c │ │ └── vrsa_subfi.c ├── buildsysinfo.h ├── compat │ ├── CMakeLists.txt │ ├── SConscript │ └── glibc-compat.c ├── cpu_features.c ├── entry_pt.c ├── entry_pt_macros.h ├── entry_pt_map.c ├── entry_pt_map_libm._c ├── fast │ ├── CMakeLists.txt │ ├── SConscript │ ├── _exp_tables.c │ ├── acos.c │ ├── acosf.c │ ├── asin.c │ ├── asinf.c │ ├── atan.c │ ├── atanf.c │ ├── cos.c │ ├── cosf.c │ ├── erf.c │ ├── erff.c │ ├── exp.c │ ├── expf.c │ ├── log.c │ ├── logf.c │ ├── pow.c │ ├── powf.c │ ├── sin.c │ ├── sinf.c │ ├── tan.c │ └── tanf.c ├── iface.c ├── iface │ ├── CMakeLists.txt │ ├── SConscript │ ├── acos.c │ ├── acosh.c │ ├── add.c │ ├── addi.c │ ├── asin.c │ ├── asinh.c │ ├── atan.c │ ├── atan2.c │ ├── atanh.c │ ├── cbrt.c │ ├── ceil.c │ ├── cexp.c │ ├── clog.c │ ├── copysign.c │ ├── cos.c │ ├── cosh.c │ ├── cospi.c │ ├── cpow.c │ ├── div.c │ ├── divi.c │ ├── erf.c │ ├── exp.c │ ├── exp10.c │ ├── exp2.c │ ├── expm1.c │ ├── fabs.c │ ├── fdim.c │ ├── finite.c │ ├── floor.c │ ├── fma.c │ ├── fmax.c │ ├── fmaxi.c │ ├── fmin.c │ ├── fmini.c │ ├── fmod.c │ ├── frexp.c │ ├── hypot.c │ ├── ilogb.c │ ├── ldexp.c │ ├── linearfrac.c │ ├── llrint.c │ ├── llround.c │ ├── log.c │ ├── log10.c │ ├── log1p.c │ ├── log2.c │ ├── logb.c │ ├── lrint.c │ ├── lround.c │ ├── modf.c │ ├── mul.c │ ├── muli.c │ ├── nan.c │ ├── nearbyint.c │ ├── nextafter.c │ ├── nexttoward.c │ ├── pow.c │ ├── powx.c │ ├── remainder.c │ ├── remquo.c │ ├── rint.c │ ├── round.c │ ├── scalbln.c │ ├── scalbn.c │ ├── sin.c │ ├── sincos.c │ ├── sinh.c │ ├── sinpi.c │ ├── sqrt.c │ ├── sub.c │ ├── subi.c │ ├── tan.c │ ├── tanh.c │ ├── tanpi.c │ └── trunc.c ├── isa │ ├── CMakeLists.txt │ ├── SConscript │ ├── avx │ │ ├── CMakeLists.txt │ │ ├── fma.c │ │ ├── fmaf.c │ │ ├── gas │ │ │ ├── cbrt.S │ │ │ ├── cbrtf.S │ │ │ ├── cexp.S │ │ │ ├── cexpf.S │ │ │ ├── copysign.S │ │ │ ├── copysignf.S │ │ │ ├── cos.S │ │ │ ├── cosf.S │ │ │ ├── exp.S │ │ │ ├── exp10.S │ │ │ ├── exp10f.S │ │ │ ├── exp2.S │ │ │ ├── exp2f.S │ │ │ ├── expf.S │ │ │ ├── expm1.S │ │ │ ├── expm1f.S │ │ │ ├── fabs.S │ │ │ ├── fabsf.S │ │ │ ├── fdim.S │ │ │ ├── fdimf.S │ │ │ ├── fmax.S │ │ │ ├── fmaxf.S │ │ │ ├── fmin.S │ │ │ ├── fminf.S │ │ │ ├── fmod.S │ │ │ ├── fmodf.S │ │ │ ├── internal_vrd4_exp.S │ │ │ ├── internal_vrd4_log.S │ │ │ ├── log.S │ │ │ ├── log10.S │ │ │ ├── log10f.S │ │ │ ├── log2.S │ │ │ ├── log2f.S │ │ │ ├── logf.S │ │ │ ├── nearbyint.S │ │ │ ├── pow.S │ │ │ ├── powf.S │ │ │ ├── remainder.S │ │ │ ├── remainder_piby2_new.S │ │ │ ├── remainder_piby2f_new.S │ │ │ ├── remainderf.S │ │ │ ├── round.S │ │ │ ├── sin.S │ │ │ ├── sincos.S │ │ │ ├── sincosf.S │ │ │ ├── sinf.S │ │ │ ├── trunc.S │ │ │ ├── truncf.S │ │ │ ├── vrd2_cbrt.S │ │ │ ├── vrd2_cos.S │ │ │ ├── vrd2_exp.S │ │ │ ├── vrd2_exp10.S │ │ │ ├── vrd2_exp2.S │ │ │ ├── vrd2_expm1.S │ │ │ ├── vrd2_log.S │ │ │ ├── vrd2_log10.S │ │ │ ├── vrd2_log1p.S │ │ │ ├── vrd2_log2.S │ │ │ ├── vrd2_sin.S │ │ │ ├── vrd2_sincos.S │ │ │ ├── vrd4_frcpa.S │ │ │ ├── vrda_cbrt.S │ │ │ ├── vrda_cos.S │ │ │ ├── vrda_exp.S │ │ │ ├── vrda_exp10.S │ │ │ ├── vrda_exp2.S │ │ │ ├── vrda_expm1.S │ │ │ ├── vrda_log.S │ │ │ ├── vrda_log10.S │ │ │ ├── vrda_log1p.S │ │ │ ├── vrda_log2.S │ │ │ ├── vrda_scaled_logr.S │ │ │ ├── vrda_sin.S │ │ │ ├── vrda_sincos.S │ │ │ ├── vrs4_cbrtf.S │ │ │ ├── vrs4_cosf.S │ │ │ ├── vrs4_exp10f.S │ │ │ ├── vrs4_exp2f.S │ │ │ ├── vrs4_expf.S │ │ │ ├── vrs4_expm1f.S │ │ │ ├── vrs4_log10f.S │ │ │ ├── vrs4_log1pf.S │ │ │ ├── vrs4_log2f.S │ │ │ ├── vrs4_logf.S │ │ │ ├── vrs4_powf.S │ │ │ ├── vrs4_powxf.S │ │ │ ├── vrs4_sincosf.S │ │ │ ├── vrs4_sinf.S │ │ │ ├── vrsa_cbrtf.S │ │ │ ├── vrsa_cosf.S │ │ │ ├── vrsa_exp10f.S │ │ │ ├── vrsa_exp2f.S │ │ │ ├── vrsa_expf.S │ │ │ ├── vrsa_expm1f.S │ │ │ ├── vrsa_log10f.S │ │ │ ├── vrsa_log1pf.S │ │ │ ├── vrsa_log2f.S │ │ │ ├── vrsa_logf.S │ │ │ ├── vrsa_powf.S │ │ │ ├── vrsa_powxf.S │ │ │ ├── vrsa_sincosf.S │ │ │ └── vrsa_sinf.S │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── masm │ │ │ ├── cbrt.asm │ │ │ ├── cbrtf.asm │ │ │ ├── cexp.asm │ │ │ ├── cexpf.asm │ │ │ ├── copysign.asm │ │ │ ├── copysignf.asm │ │ │ ├── cos.asm │ │ │ ├── cosf.asm │ │ │ ├── exp.asm │ │ │ ├── exp10.asm │ │ │ ├── exp10f.asm │ │ │ ├── exp2.asm │ │ │ ├── exp2f.asm │ │ │ ├── expf.asm │ │ │ ├── expm1.asm │ │ │ ├── expm1f.asm │ │ │ ├── fabs.asm │ │ │ ├── fabsf.asm │ │ │ ├── fdim.asm │ │ │ ├── fdimf.asm │ │ │ ├── fmax.asm │ │ │ ├── fmaxf.asm │ │ │ ├── fmin.asm │ │ │ ├── fminf.asm │ │ │ ├── fmod.asm │ │ │ ├── fmodf.asm │ │ │ ├── internal_vrd4_exp.asm │ │ │ ├── internal_vrd4_log.asm │ │ │ ├── log.asm │ │ │ ├── log10.asm │ │ │ ├── log10f.asm │ │ │ ├── log2.asm │ │ │ ├── log2f.asm │ │ │ ├── logf.asm │ │ │ ├── map.asm │ │ │ ├── nearbyint.asm │ │ │ ├── pow.asm │ │ │ ├── powf.asm │ │ │ ├── remainder.asm │ │ │ ├── remainder_piby2_new.asm │ │ │ ├── remainder_piby2f_new.asm │ │ │ ├── remainderf.asm │ │ │ ├── round.asm │ │ │ ├── sin.asm │ │ │ ├── sincos.asm │ │ │ ├── sincosf.asm │ │ │ ├── sinf.asm │ │ │ ├── trunc.asm │ │ │ ├── truncf.asm │ │ │ ├── vrd2_cbrt.asm │ │ │ ├── vrd2_cos.asm │ │ │ ├── vrd2_exp.asm │ │ │ ├── vrd2_exp10.asm │ │ │ ├── vrd2_exp2.asm │ │ │ ├── vrd2_expm1.asm │ │ │ ├── vrd2_log.asm │ │ │ ├── vrd2_log10.asm │ │ │ ├── vrd2_log1p.asm │ │ │ ├── vrd2_log2.asm │ │ │ ├── vrd2_sin.asm │ │ │ ├── vrd2_sincos.asm │ │ │ ├── vrda_cbrt.asm │ │ │ ├── vrda_cos.asm │ │ │ ├── vrda_exp.asm │ │ │ ├── vrda_exp10.asm │ │ │ ├── vrda_exp2.asm │ │ │ ├── vrda_expm1.asm │ │ │ ├── vrda_log.asm │ │ │ ├── vrda_log10.asm │ │ │ ├── vrda_log1p.asm │ │ │ ├── vrda_log2.asm │ │ │ ├── vrda_sin.asm │ │ │ ├── vrda_sincos.asm │ │ │ ├── vrs4_cbrtf.asm │ │ │ ├── vrs4_cosf.asm │ │ │ ├── vrs4_exp10f.asm │ │ │ ├── vrs4_exp2f.asm │ │ │ ├── vrs4_expf.asm │ │ │ ├── vrs4_expm1f.asm │ │ │ ├── vrs4_log10f.asm │ │ │ ├── vrs4_log1pf.asm │ │ │ ├── vrs4_log2f.asm │ │ │ ├── vrs4_logf.asm │ │ │ ├── vrs4_powf.asm │ │ │ ├── vrs4_powxf.asm │ │ │ ├── vrs4_sincosf.asm │ │ │ ├── vrs4_sinf.asm │ │ │ ├── vrsa_cbrtf.asm │ │ │ ├── vrsa_cosf.asm │ │ │ ├── vrsa_exp10f.asm │ │ │ ├── vrsa_exp2f.asm │ │ │ ├── vrsa_expf.asm │ │ │ ├── vrsa_expm1f.asm │ │ │ ├── vrsa_log10f.asm │ │ │ ├── vrsa_log1pf.asm │ │ │ ├── vrsa_log2f.asm │ │ │ ├── vrsa_logf.asm │ │ │ ├── vrsa_powf.asm │ │ │ ├── vrsa_powxf.asm │ │ │ ├── vrsa_sincosf.asm │ │ │ └── vrsa_sinf.asm │ │ ├── vrd2_tan.c │ │ └── vrs4_tanf.c │ ├── avx2 │ │ ├── CMakeLists.txt │ │ ├── SConscript │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── expf.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── gas │ │ │ ├── cbrt_fma3.S │ │ │ ├── cbrtf_fma3.S │ │ │ ├── cos_fma3.S │ │ │ ├── cosf_fma3.S │ │ │ ├── exp10_fma3.S │ │ │ ├── exp10f_fma3.S │ │ │ ├── exp2_fma3.S │ │ │ ├── exp2f_fma3.S │ │ │ ├── exp_fma3.S │ │ │ ├── expf_fma3.S │ │ │ ├── expm1_fma3.S │ │ │ ├── expm1f_fma3.S │ │ │ ├── fabs.S │ │ │ ├── fabsf.S │ │ │ ├── fastpow_fma3.S │ │ │ ├── fma_fma3.S │ │ │ ├── fmaf_fma3.S │ │ │ ├── include │ │ │ │ └── log_scalar_tables.h │ │ │ ├── log10_fma3.S │ │ │ ├── log10f_fma3.S │ │ │ ├── log1p_fma3.S │ │ │ ├── log1pf_fma3.S │ │ │ ├── log2_fma3.S │ │ │ ├── log2f_fma3.S │ │ │ ├── log_fma3.S │ │ │ ├── logf_fma3.S │ │ │ ├── pow_fma3.S │ │ │ ├── powf_fma3.S │ │ │ ├── sin_fma3.S │ │ │ ├── sincos_fma3.S │ │ │ ├── sincosf_fma3.S │ │ │ ├── sinf_fma3.S │ │ │ ├── tan_fma3.S │ │ │ ├── tanf_fma3.S │ │ │ ├── vrd2_cbrt_fma3.S │ │ │ ├── vrd2_cos_fma3.S │ │ │ ├── vrd2_exp10_fma3.S │ │ │ ├── vrd2_exp2_fma3.S │ │ │ ├── vrd2_exp_fma3.S │ │ │ ├── vrd2_expm1_fma3.S │ │ │ ├── vrd2_log10_fma3.S │ │ │ ├── vrd2_log1p_fma3.S │ │ │ ├── vrd2_log2_fma3.S │ │ │ ├── vrd2_log_fma3.S │ │ │ ├── vrd2_pow_fma3.S │ │ │ ├── vrd2_sin_fma3.S │ │ │ ├── vrd2_tan_fma3.S │ │ │ ├── vrd4_exp2_fma3.S │ │ │ ├── vrd4_exp_fma3.S │ │ │ ├── vrd4_log_fma3.S │ │ │ ├── vrd4_pow_fma3.S │ │ │ ├── vrda_cbrt_fma3.S │ │ │ ├── vrda_cos_fma3.S │ │ │ ├── vrda_exp10_fma3.S │ │ │ ├── vrda_exp2_fma3.S │ │ │ ├── vrda_exp_fma3.S │ │ │ ├── vrda_expm1_fma3.S │ │ │ ├── vrda_log10_fma3.S │ │ │ ├── vrda_log1p_fma3.S │ │ │ ├── vrda_log2_fma3.S │ │ │ ├── vrda_log_fma3.S │ │ │ ├── vrda_sin_fma3.S │ │ │ ├── vrs4_cbrtf_fma3.S │ │ │ ├── vrs4_cosf_fma3.S │ │ │ ├── vrs4_exp10f_fma3.S │ │ │ ├── vrs4_exp2f_fma3.S │ │ │ ├── vrs4_expf_fma3.S │ │ │ ├── vrs4_expm1f_fma3.S │ │ │ ├── vrs4_log10f_fma3.S │ │ │ ├── vrs4_log1pf_fma3.S │ │ │ ├── vrs4_log2f_fma3.S │ │ │ ├── vrs4_logf_fma3.S │ │ │ ├── vrs4_sinf_fma3.S │ │ │ ├── vrs4_tanf_fma3.S │ │ │ ├── vrsa_cbrtf_fma3.S │ │ │ ├── vrsa_cosf_fma3.S │ │ │ ├── vrsa_exp10f_fma3.S │ │ │ ├── vrsa_exp2f_fma3.S │ │ │ ├── vrsa_expf_fma3.S │ │ │ ├── vrsa_expm1f_fma3.S │ │ │ ├── vrsa_log10f_fma3.S │ │ │ ├── vrsa_log1pf_fma3.S │ │ │ ├── vrsa_log2f_fma3.S │ │ │ ├── vrsa_logf_fma3.S │ │ │ └── vrsa_sinf_fma3.S │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── include │ │ │ └── trig_func.h │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log2.c │ │ ├── log2f.c │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logf.c │ │ ├── lround.c │ │ ├── masm │ │ │ ├── cbrt_fma3.asm │ │ │ ├── cbrtf_fma3.asm │ │ │ ├── cos_fma3.asm │ │ │ ├── cosf_fma3.asm │ │ │ ├── exp10_fma3.asm │ │ │ ├── exp10f_fma3.asm │ │ │ ├── exp2_fma3.asm │ │ │ ├── exp2f_fma3.asm │ │ │ ├── exp_fma3.asm │ │ │ ├── expf_fma3.asm │ │ │ ├── expm1_fma3.asm │ │ │ ├── expm1f_fma3.asm │ │ │ ├── fma_fma3.asm │ │ │ ├── fmaf_fma3.asm │ │ │ ├── log10_fma3.asm │ │ │ ├── log10f_fma3.asm │ │ │ ├── log1p_fma3.asm │ │ │ ├── log1pf_fma3.asm │ │ │ ├── log2_fma3.asm │ │ │ ├── log2f_fma3.asm │ │ │ ├── log_fma3.asm │ │ │ ├── logf_fma3.asm │ │ │ ├── pow_fma3.asm │ │ │ ├── powf_fma3.asm │ │ │ ├── sin_fma3.asm │ │ │ ├── sinf_fma3.asm │ │ │ ├── tan_fma3.asm │ │ │ ├── tanf_fma3.asm │ │ │ ├── vrd2_cbrt_fma3.asm │ │ │ ├── vrd2_cos_fma3.asm │ │ │ ├── vrd2_exp10_fma3.asm │ │ │ ├── vrd2_exp2_fma3.asm │ │ │ ├── vrd2_exp_fma3.asm │ │ │ ├── vrd2_expm1_fma3.asm │ │ │ ├── vrd2_log10_fma3.asm │ │ │ ├── vrd2_log1p_fma3.asm │ │ │ ├── vrd2_log2_fma3.asm │ │ │ ├── vrd2_log_fma3.asm │ │ │ ├── vrd2_sin_fma3.asm │ │ │ ├── vrd2_tan_fma3.asm │ │ │ ├── vrda_cbrt_fma3.asm │ │ │ ├── vrda_cos_fma3.asm │ │ │ ├── vrda_exp10_fma3.asm │ │ │ ├── vrda_exp2_fma3.asm │ │ │ ├── vrda_exp_fma3.asm │ │ │ ├── vrda_expm1_fma3.asm │ │ │ ├── vrda_log10_fma3.asm │ │ │ ├── vrda_log1p_fma3.asm │ │ │ ├── vrda_log2_fma3.asm │ │ │ ├── vrda_log_fma3.asm │ │ │ ├── vrda_sin_fma3.asm │ │ │ ├── vrs4_cbrtf_fma3.asm │ │ │ ├── vrs4_cosf_fma3.asm │ │ │ ├── vrs4_exp10f_fma3.asm │ │ │ ├── vrs4_exp2f_fma3.asm │ │ │ ├── vrs4_expf_fma3.asm │ │ │ ├── vrs4_expm1f_fma3.asm │ │ │ ├── vrs4_log10f_fma3.asm │ │ │ ├── vrs4_log1pf_fma3.asm │ │ │ ├── vrs4_log2f_fma3.asm │ │ │ ├── vrs4_logf_fma3.asm │ │ │ ├── vrs4_sinf_fma3.asm │ │ │ ├── vrs4_tanf_fma3.asm │ │ │ ├── vrsa_cbrtf_fma3.asm │ │ │ ├── vrsa_cosf_fma3.asm │ │ │ ├── vrsa_exp10f_fma3.asm │ │ │ ├── vrsa_exp2f_fma3.asm │ │ │ ├── vrsa_expf_fma3.asm │ │ │ ├── vrsa_expm1f_fma3.asm │ │ │ ├── vrsa_log10f_fma3.asm │ │ │ ├── vrsa_log1pf_fma3.asm │ │ │ ├── vrsa_log2f_fma3.asm │ │ │ ├── vrsa_logf_fma3.asm │ │ │ └── vrsa_sinf_fma3.asm │ │ ├── pow.c │ │ ├── powf.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── vrd2_atan.c │ │ ├── vrd2_cos.c │ │ ├── vrd2_erf.c │ │ ├── vrd2_exp.c │ │ ├── vrd2_exp2.c │ │ ├── vrd2_fabs.c │ │ ├── vrd2_linearfrac.c │ │ ├── vrd2_log.c │ │ ├── vrd2_log2.c │ │ ├── vrd2_pow.c │ │ ├── vrd2_powx.c │ │ ├── vrd2_sin.c │ │ ├── vrd2_sincos.c │ │ ├── vrd2_sqrt.c │ │ ├── vrd2_tan.c │ │ ├── vrd4_atan.c │ │ ├── vrd4_cos.c │ │ ├── vrd4_erf.c │ │ ├── vrd4_exp.c │ │ ├── vrd4_exp2.c │ │ ├── vrd4_fabs.c │ │ ├── vrd4_linearfrac.c │ │ ├── vrd4_log.c │ │ ├── vrd4_log2.c │ │ ├── vrd4_pow.c │ │ ├── vrd4_powx.c │ │ ├── vrd4_sin.c │ │ ├── vrd4_sincos.c │ │ ├── vrd4_sqrt.c │ │ ├── vrd4_tan.c │ │ ├── vrda_add.c │ │ ├── vrda_addi.c │ │ ├── vrda_cbrt.c │ │ ├── vrda_cos.c │ │ ├── vrda_div.c │ │ ├── vrda_divi.c │ │ ├── vrda_exp.c │ │ ├── vrda_exp10.c │ │ ├── vrda_exp2.c │ │ ├── vrda_expm1.c │ │ ├── vrda_fabs.c │ │ ├── vrda_fmax.c │ │ ├── vrda_fmaxi.c │ │ ├── vrda_fmin.c │ │ ├── vrda_fmini.c │ │ ├── vrda_linearfrac.c │ │ ├── vrda_log.c │ │ ├── vrda_log10.c │ │ ├── vrda_log1p.c │ │ ├── vrda_log2.c │ │ ├── vrda_mul.c │ │ ├── vrda_muli.c │ │ ├── vrda_pow.c │ │ ├── vrda_powx.c │ │ ├── vrda_sin.c │ │ ├── vrda_sincos.c │ │ ├── vrda_sqrt.c │ │ ├── vrda_sub.c │ │ ├── vrda_subi.c │ │ ├── vrs4_acosf.c │ │ ├── vrs4_asinf.c │ │ ├── vrs4_atanf.c │ │ ├── vrs4_cosf.c │ │ ├── vrs4_coshf.c │ │ ├── vrs4_erff.c │ │ ├── vrs4_exp2f.c │ │ ├── vrs4_expf.c │ │ ├── vrs4_fabsf.c │ │ ├── vrs4_linearfracf.c │ │ ├── vrs4_log10f.c │ │ ├── vrs4_log2f.c │ │ ├── vrs4_logf.c │ │ ├── vrs4_powf.c │ │ ├── vrs4_powxf.c │ │ ├── vrs4_sincosf.c │ │ ├── vrs4_sinf.c │ │ ├── vrs4_sqrtf.c │ │ ├── vrs4_tanf.c │ │ ├── vrs4_tanhf.c │ │ ├── vrs8_acosf.c │ │ ├── vrs8_asinf.c │ │ ├── vrs8_atanf.c │ │ ├── vrs8_cosf.c │ │ ├── vrs8_coshf.c │ │ ├── vrs8_erff.c │ │ ├── vrs8_exp2f.c │ │ ├── vrs8_expf.c │ │ ├── vrs8_fabsf.c │ │ ├── vrs8_linearfracf.c │ │ ├── vrs8_log10f.c │ │ ├── vrs8_log2f.c │ │ ├── vrs8_logf.c │ │ ├── vrs8_powf.c │ │ ├── vrs8_powxf.c │ │ ├── vrs8_sincosf.c │ │ ├── vrs8_sinf.c │ │ ├── vrs8_sqrtf.c │ │ ├── vrs8_tanf.c │ │ ├── vrs8_tanhf.c │ │ ├── vrsa_addf.c │ │ ├── vrsa_addfi.c │ │ ├── vrsa_cbrtf.c │ │ ├── vrsa_cosf.c │ │ ├── vrsa_divf.c │ │ ├── vrsa_divfi.c │ │ ├── vrsa_exp10f.c │ │ ├── vrsa_exp2f.c │ │ ├── vrsa_expf.c │ │ ├── vrsa_expm1f.c │ │ ├── vrsa_fabsf.c │ │ ├── vrsa_fmaxf.c │ │ ├── vrsa_fmaxfi.c │ │ ├── vrsa_fminf.c │ │ ├── vrsa_fminfi.c │ │ ├── vrsa_linearfracf.c │ │ ├── vrsa_log10f.c │ │ ├── vrsa_log1pf.c │ │ ├── vrsa_log2f.c │ │ ├── vrsa_logf.c │ │ ├── vrsa_mulf.c │ │ ├── vrsa_mulfi.c │ │ ├── vrsa_powf.c │ │ ├── vrsa_powxf.c │ │ ├── vrsa_sincosf.c │ │ ├── vrsa_sinf.c │ │ ├── vrsa_sqrtf.c │ │ ├── vrsa_subf.c │ │ └── vrsa_subfi.c │ └── include │ │ ├── exp_tables.h │ │ └── log_tables.h ├── kern │ ├── expf.c │ ├── log1p.c │ ├── sqrt_pos.c │ └── sqrtf_pos.c ├── ld-syms-libm.lds ├── optimized │ ├── CMakeLists.txt │ ├── SConscript │ ├── acos.c │ ├── acosf.c │ ├── acosh.c │ ├── acoshf.c │ ├── asin.c │ ├── asinf.c │ ├── asinh.c │ ├── asinhf.c │ ├── atan.c │ ├── atan2.c │ ├── atan2_data.h │ ├── atanf.c │ ├── atanh.c │ ├── atanhf.c │ ├── cbrt.c │ ├── cbrt_data.h │ ├── cbrtf.c │ ├── cbrtf_data.h │ ├── ceil.c │ ├── ceilf.c │ ├── cmplx │ │ ├── SConscript │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── cpow.c │ │ └── cpowf.c │ ├── copysign.c │ ├── copysignf.c │ ├── cos.c │ ├── cosf.c │ ├── cosh.c │ ├── cosh_data.h │ ├── coshf.c │ ├── data │ │ ├── _exp_j_by_64.c │ │ ├── _exp_tbl_128_interleaved.data │ │ ├── _exp_tbl_64_interleaved.data │ │ ├── _log_data.c │ │ └── _log_v3_tbl_128_interleaved.data │ ├── erf.c │ ├── erff.c │ ├── exp.c │ ├── exp10.c │ ├── exp10f.c │ ├── exp2.c │ ├── exp2f.c │ ├── exp_data.h │ ├── exp_tables.c │ ├── expf.c │ ├── expf_data.h │ ├── expm1.c │ ├── expm1f.c │ ├── expm1f_data.h │ ├── fabs.c │ ├── fabsf.c │ ├── fdim.c │ ├── fdimf.c │ ├── floor.c │ ├── floorf.c │ ├── fmax.c │ ├── fmaxf.c │ ├── fmin.c │ ├── fminf.c │ ├── fmod.c │ ├── fmodf.c │ ├── hypot.c │ ├── hypotf.c │ ├── ilogb.c │ ├── ilogbf.c │ ├── log.c │ ├── log10.c │ ├── log10f.c │ ├── log1p.c │ ├── log1p_data.h │ ├── log1pf.c │ ├── log2.c │ ├── log2f.c │ ├── log_data.h │ ├── log_tables.c │ ├── log_v3.c │ ├── logb.c │ ├── logbf.c │ ├── logf.c │ ├── logf_data.h │ ├── lround.c │ ├── lroundf.c │ ├── nearbyint.c │ ├── nearbyintf.c │ ├── pow.c │ ├── pow_data.c │ ├── powf.c │ ├── remainder.c │ ├── remainderf.c │ ├── round.c │ ├── roundf.c │ ├── sin.c │ ├── sincos.c │ ├── sincosf.c │ ├── sinf.c │ ├── sinh.c │ ├── sinh_data.c │ ├── sinhf.c │ ├── sqrt.c │ ├── sqrtf.c │ ├── tan.c │ ├── tanf.c │ ├── tanh.c │ ├── tanhf.c │ ├── trunc.c │ ├── truncf.c │ ├── vec │ │ ├── SConscript │ │ ├── alm_special.c │ │ ├── vrd2_atan.c │ │ ├── vrd2_cos.c │ │ ├── vrd2_erf.c │ │ ├── vrd2_exp.c │ │ ├── vrd2_exp2.c │ │ ├── vrd2_fabs.c │ │ ├── vrd2_log.c │ │ ├── vrd2_log2.c │ │ ├── vrd2_pow.c │ │ ├── vrd2_sin.c │ │ ├── vrd2_sincos.c │ │ ├── vrd2_sqrt.c │ │ ├── vrd2_tan.c │ │ ├── vrd4_atan.c │ │ ├── vrd4_cos.c │ │ ├── vrd4_erf.c │ │ ├── vrd4_exp.c │ │ ├── vrd4_exp2.c │ │ ├── vrd4_fabs.c │ │ ├── vrd4_log.c │ │ ├── vrd4_log2.c │ │ ├── vrd4_pow.c │ │ ├── vrd4_sin.c │ │ ├── vrd4_sincos.c │ │ ├── vrd4_sqrt.c │ │ ├── vrd4_tan.c │ │ ├── vrda_add.c │ │ ├── vrda_addi.c │ │ ├── vrda_cbrt.c │ │ ├── vrda_cos.c │ │ ├── vrda_div.c │ │ ├── vrda_divi.c │ │ ├── vrda_exp.c │ │ ├── vrda_exp10.c │ │ ├── vrda_exp2.c │ │ ├── vrda_expm1.c │ │ ├── vrda_fabs.c │ │ ├── vrda_fmax.c │ │ ├── vrda_fmaxi.c │ │ ├── vrda_fmin.c │ │ ├── vrda_fmini.c │ │ ├── vrda_log.c │ │ ├── vrda_log10.c │ │ ├── vrda_log1p.c │ │ ├── vrda_log2.c │ │ ├── vrda_mul.c │ │ ├── vrda_muli.c │ │ ├── vrda_pow.c │ │ ├── vrda_sin.c │ │ ├── vrda_sincos.c │ │ ├── vrda_sqrt.c │ │ ├── vrda_sub.c │ │ ├── vrda_subi.c │ │ ├── vrs4_acosf.c │ │ ├── vrs4_asinf.c │ │ ├── vrs4_atanf.c │ │ ├── vrs4_cosf.c │ │ ├── vrs4_coshf.c │ │ ├── vrs4_erff.c │ │ ├── vrs4_exp2f.c │ │ ├── vrs4_expf.c │ │ ├── vrs4_fabsf.c │ │ ├── vrs4_log10f.c │ │ ├── vrs4_log2f.c │ │ ├── vrs4_logf.c │ │ ├── vrs4_powf.c │ │ ├── vrs4_sincosf.c │ │ ├── vrs4_sinf.c │ │ ├── vrs4_sqrtf.c │ │ ├── vrs4_tanf.c │ │ ├── vrs4_tanhf.c │ │ ├── vrs8_acosf.c │ │ ├── vrs8_asinf.c │ │ ├── vrs8_atanf.c │ │ ├── vrs8_cosf.c │ │ ├── vrs8_coshf.c │ │ ├── vrs8_erff.c │ │ ├── vrs8_exp2f.c │ │ ├── vrs8_expf.c │ │ ├── vrs8_fabsf.c │ │ ├── vrs8_log10f.c │ │ ├── vrs8_log2f.c │ │ ├── vrs8_logf.c │ │ ├── vrs8_powf.c │ │ ├── vrs8_sincosf.c │ │ ├── vrs8_sinf.c │ │ ├── vrs8_sqrtf.c │ │ ├── vrs8_tanf.c │ │ ├── vrs8_tanhf.c │ │ ├── vrsa_addf.c │ │ ├── vrsa_addfi.c │ │ ├── vrsa_cbrtf.c │ │ ├── vrsa_cosf.c │ │ ├── vrsa_divf.c │ │ ├── vrsa_divfi.c │ │ ├── vrsa_exp10f.c │ │ ├── vrsa_exp2f.c │ │ ├── vrsa_expf.c │ │ ├── vrsa_expm1f.c │ │ ├── vrsa_fabsf.c │ │ ├── vrsa_fmaxf.c │ │ ├── vrsa_fmaxfi.c │ │ ├── vrsa_fminf.c │ │ ├── vrsa_fminfi.c │ │ ├── vrsa_log10f.c │ │ ├── vrsa_log1pf.c │ │ ├── vrsa_log2f.c │ │ ├── vrsa_logf.c │ │ ├── vrsa_mulf.c │ │ ├── vrsa_mulfi.c │ │ ├── vrsa_powf.c │ │ ├── vrsa_sincosf.c │ │ ├── vrsa_sinf.c │ │ ├── vrsa_sqrtf.c │ │ ├── vrsa_subf.c │ │ └── vrsa_subfi.c │ └── vectormath │ │ ├── SConscript │ │ ├── vrd2_linearfrac.c │ │ ├── vrd2_powx.c │ │ ├── vrd4_linearfrac.c │ │ ├── vrd4_powx.c │ │ ├── vrda_linearfrac.c │ │ ├── vrda_powx.c │ │ ├── vrs4_linearfracf.c │ │ ├── vrs4_powxf.c │ │ ├── vrs8_linearfracf.c │ │ ├── vrs8_powxf.c │ │ ├── vrsa_linearfracf.c │ │ └── vrsa_powxf.c ├── optmized │ ├── SConscript │ ├── acos.c │ ├── acosf.c │ ├── acosh.c │ ├── acoshf.c │ ├── asin.c │ ├── asinf.c │ ├── asinh.c │ ├── asinhf.c │ ├── atan.c │ ├── atan2.c │ ├── atan2_data.h │ ├── atanf.c │ ├── atanh.c │ ├── atanhf.c │ ├── cbrtf.c │ ├── cbrtf_data.h │ ├── ceil.c │ ├── ceilf.c │ ├── cmplx │ │ ├── SConscript │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── cpow.c │ │ └── cpowf.c │ ├── copysign.c │ ├── copysignf.c │ ├── cos.c │ ├── cosf.c │ ├── cosh.c │ ├── cosh_data.h │ ├── coshf.c │ ├── data │ │ ├── _exp_j_by_64.c │ │ ├── _exp_tbl_128_interleaved.data │ │ ├── _exp_tbl_64_interleaved.data │ │ ├── _log_data.c │ │ └── _log_v3_tbl_128_interleaved.data │ ├── erff.c │ ├── exp.c │ ├── exp10.c │ ├── exp10f.c │ ├── exp2.c │ ├── exp2f.c │ ├── exp_data.h │ ├── exp_tables.c │ ├── expf.c │ ├── expf_data.h │ ├── expm1.c │ ├── expm1f.c │ ├── expm1f_data.h │ ├── fabs.c │ ├── fabsf.c │ ├── floor.c │ ├── floorf.c │ ├── hypot.c │ ├── hypotf.c │ ├── ilogb.c │ ├── ilogbf.c │ ├── log.c │ ├── log10.c │ ├── log10f.c │ ├── log1p.c │ ├── log1p_data.h │ ├── log1pf.c │ ├── log2.c │ ├── log2f.c │ ├── log_data.h │ ├── log_tables.c │ ├── log_v3.c │ ├── logb.c │ ├── logbf.c │ ├── logf.c │ ├── logf_data.h │ ├── lround.c │ ├── lroundf.c │ ├── pow.c │ ├── pow_data.c │ ├── powf.c │ ├── round.c │ ├── roundf.c │ ├── sin.c │ ├── sincos.c │ ├── sincosf.c │ ├── sinf.c │ ├── sinh.c │ ├── sinh_data.c │ ├── sinhf.c │ ├── sqrt.c │ ├── sqrtf.c │ ├── tan.c │ ├── tanf.c │ ├── tanh.c │ ├── tanhf.c │ ├── trunc.c │ ├── truncf.c │ └── vec │ │ ├── SConscript │ │ ├── alm_special.c │ │ ├── vrd2_atan.c │ │ ├── vrd2_cos.c │ │ ├── vrd2_exp.c │ │ ├── vrd2_exp2.c │ │ ├── vrd2_log.c │ │ ├── vrd2_log2.c │ │ ├── vrd2_pow.c │ │ ├── vrd2_sin.c │ │ ├── vrd2_tan.c │ │ ├── vrd4_atan.c │ │ ├── vrd4_cos.c │ │ ├── vrd4_exp.c │ │ ├── vrd4_exp2.c │ │ ├── vrd4_log.c │ │ ├── vrd4_log2.c │ │ ├── vrd4_pow.c │ │ ├── vrd4_sin.c │ │ ├── vrd4_tan.c │ │ ├── vrs4_acosf.c │ │ ├── vrs4_asinf.c │ │ ├── vrs4_atanf.c │ │ ├── vrs4_cosf.c │ │ ├── vrs4_coshf.c │ │ ├── vrs4_erff.c │ │ ├── vrs4_exp2f.c │ │ ├── vrs4_expf.c │ │ ├── vrs4_log10f.c │ │ ├── vrs4_log2f.c │ │ ├── vrs4_logf.c │ │ ├── vrs4_powf.c │ │ ├── vrs4_sinf.c │ │ ├── vrs4_tanf.c │ │ ├── vrs4_tanhf.c │ │ ├── vrs8_acosf.c │ │ ├── vrs8_asinf.c │ │ ├── vrs8_atanf.c │ │ ├── vrs8_cosf.c │ │ ├── vrs8_coshf.c │ │ ├── vrs8_erff.c │ │ ├── vrs8_exp2f.c │ │ ├── vrs8_expf.c │ │ ├── vrs8_log10f.c │ │ ├── vrs8_log2f.c │ │ ├── vrs8_logf.c │ │ ├── vrs8_powf.c │ │ ├── vrs8_sinf.c │ │ ├── vrs8_tanf.c │ │ └── vrs8_tanhf.c ├── ref │ ├── CMakeLists.txt │ ├── SConscript │ ├── acos.c │ ├── acosf.c │ ├── acosh.c │ ├── acoshf.c │ ├── amd_pow.c │ ├── asin.c │ ├── asinf.c │ ├── asinh.c │ ├── asinhf.c │ ├── atan.c │ ├── atan2.c │ ├── atan2f.c │ ├── atanf.c │ ├── atanh.c │ ├── atanhf.c │ ├── ceil.c │ ├── ceilf.c │ ├── cmplx │ │ ├── SConscript │ │ ├── cexp.c │ │ └── cexpf.c │ ├── cosh.c │ ├── coshf.c │ ├── cospi.c │ ├── cospif.c │ ├── exp_tables.c │ ├── finite.c │ ├── finitef.c │ ├── floor.c │ ├── floorf.c │ ├── frexp.c │ ├── frexpf.c │ ├── hypot.c │ ├── hypotf.c │ ├── ilogb.c │ ├── ilogbf.c │ ├── ldexp.c │ ├── ldexpf.c │ ├── llrint.c │ ├── llrintf.c │ ├── llround.c │ ├── llroundf.c │ ├── logb.c │ ├── logbf.c │ ├── lrint.c │ ├── lrintf.c │ ├── lround.c │ ├── lroundf.c │ ├── modf.c │ ├── modff.c │ ├── nan.c │ ├── nanf.c │ ├── nearbyintf.c │ ├── nextafter.c │ ├── nextafterf.c │ ├── nexttoward.c │ ├── nexttowardf.c │ ├── remainder_piby2.c │ ├── remainder_piby2d2f.c │ ├── remquo.c │ ├── remquof.c │ ├── rint.c │ ├── rintf.c │ ├── roundf.c │ ├── scalbln.c │ ├── scalblnf.c │ ├── scalbn.c │ ├── scalbnf.c │ ├── sinh.c │ ├── sinhf.c │ ├── sinpi.c │ ├── sinpif.c │ ├── sqrt.c │ ├── sqrtf.c │ ├── tan.c │ ├── tanf.c │ ├── tanh.c │ ├── tanhf.c │ ├── tanpi.c │ ├── tanpif.c │ ├── vrd2_cosh.c │ └── vrd4_expm1.c └── version.txt └── tools ├── indent-options ├── log_table_generation ├── inv_log_generate.c ├── log2_table_interleave.c ├── log2f_table_interleave.c └── log_table_interleave.c └── sollya ├── asinf.sollya ├── atan.sollya ├── erf.sollya ├── erff.sollya ├── fasterf.sollya ├── fastexp.sollya ├── fastlogf.sollya ├── fastpow-log2f.sollya ├── fastpowf-log2f.sollya ├── tan.sollya ├── tanf.sollya ├── vector_log.sollya ├── vrd2_exp.sollya ├── vrd4_exp2.sollya ├── vrd8_asin.sollya ├── vrs4_asinf.sollya ├── vrs4_expf.sollya ├── vrs4_log10f.sollya ├── vrs4_logf.sollya ├── vrs8_exp2f.sollya └── vrs8_tanf.sollya /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING_on_Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/BUILDING_on_Linux.txt -------------------------------------------------------------------------------- /CMake/Config.hh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/CMake/Config.hh.in -------------------------------------------------------------------------------- /CMake/Version.hh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/CMake/Version.hh.in -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/NOTICES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/SConstruct -------------------------------------------------------------------------------- /docs/internal/cosh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/docs/internal/cosh.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/README -------------------------------------------------------------------------------- /examples/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/main.c -------------------------------------------------------------------------------- /examples/src/use_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_add.c -------------------------------------------------------------------------------- /examples/src/use_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_cos.c -------------------------------------------------------------------------------- /examples/src/use_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_div.c -------------------------------------------------------------------------------- /examples/src/use_erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_erf.c -------------------------------------------------------------------------------- /examples/src/use_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_exp.c -------------------------------------------------------------------------------- /examples/src/use_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_log.c -------------------------------------------------------------------------------- /examples/src/use_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_mul.c -------------------------------------------------------------------------------- /examples/src/use_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_pow.c -------------------------------------------------------------------------------- /examples/src/use_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_sin.c -------------------------------------------------------------------------------- /examples/src/use_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_sub.c -------------------------------------------------------------------------------- /examples/src/use_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/examples/src/use_tan.c -------------------------------------------------------------------------------- /gtests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/README -------------------------------------------------------------------------------- /gtests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/SConscript -------------------------------------------------------------------------------- /gtests/acos/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/acos/SConscript -------------------------------------------------------------------------------- /gtests/add/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/add/SConscript -------------------------------------------------------------------------------- /gtests/add/add_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/add/add_perf.cc -------------------------------------------------------------------------------- /gtests/almtesttype.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/almtesttype.cc -------------------------------------------------------------------------------- /gtests/asin/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/asin/SConscript -------------------------------------------------------------------------------- /gtests/atan/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/atan/SConscript -------------------------------------------------------------------------------- /gtests/cbrt/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/cbrt/SConscript -------------------------------------------------------------------------------- /gtests/ceil/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/ceil/SConscript -------------------------------------------------------------------------------- /gtests/cexp/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/cexp/SConscript -------------------------------------------------------------------------------- /gtests/cmdline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/cmdline.cc -------------------------------------------------------------------------------- /gtests/cos/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/cos/SConscript -------------------------------------------------------------------------------- /gtests/cos/cos_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/cos/cos_perf.cc -------------------------------------------------------------------------------- /gtests/cosh/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/cosh/SConscript -------------------------------------------------------------------------------- /gtests/erf/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/erf/SConscript -------------------------------------------------------------------------------- /gtests/erf/erf_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/erf/erf_perf.cc -------------------------------------------------------------------------------- /gtests/exp/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/exp/SConscript -------------------------------------------------------------------------------- /gtests/exp/exp_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/exp/exp_perf.cc -------------------------------------------------------------------------------- /gtests/exp2/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/exp2/SConscript -------------------------------------------------------------------------------- /gtests/fabs/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/fabs/SConscript -------------------------------------------------------------------------------- /gtests/fdim/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/fdim/SConscript -------------------------------------------------------------------------------- /gtests/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/filter.cc -------------------------------------------------------------------------------- /gtests/fmax/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/fmax/SConscript -------------------------------------------------------------------------------- /gtests/fmin/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/fmin/SConscript -------------------------------------------------------------------------------- /gtests/fmod/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/fmod/SConscript -------------------------------------------------------------------------------- /gtests/gapi/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/gapi/SConscript -------------------------------------------------------------------------------- /gtests/gbench_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/gbench_main.cc -------------------------------------------------------------------------------- /gtests/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/gtest_main.cc -------------------------------------------------------------------------------- /gtests/include/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/include/args.h -------------------------------------------------------------------------------- /gtests/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/include/debug.h -------------------------------------------------------------------------------- /gtests/log/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/log/SConscript -------------------------------------------------------------------------------- /gtests/log/log_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/log/log_perf.cc -------------------------------------------------------------------------------- /gtests/log2/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/log2/SConscript -------------------------------------------------------------------------------- /gtests/logb/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/logb/SConscript -------------------------------------------------------------------------------- /gtests/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/main.cc -------------------------------------------------------------------------------- /gtests/mul/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/mul/SConscript -------------------------------------------------------------------------------- /gtests/mul/mul_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/mul/mul_perf.cc -------------------------------------------------------------------------------- /gtests/pow/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/pow/SConscript -------------------------------------------------------------------------------- /gtests/pow/pow_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/pow/pow_perf.cc -------------------------------------------------------------------------------- /gtests/powx/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/powx/SConscript -------------------------------------------------------------------------------- /gtests/random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/random.cc -------------------------------------------------------------------------------- /gtests/rint/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/rint/SConscript -------------------------------------------------------------------------------- /gtests/sin/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/sin/SConscript -------------------------------------------------------------------------------- /gtests/sin/sin_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/sin/sin_perf.cc -------------------------------------------------------------------------------- /gtests/sincos/sincos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/sincos/sincos.h -------------------------------------------------------------------------------- /gtests/sinh/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/sinh/SConscript -------------------------------------------------------------------------------- /gtests/sqrt/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/sqrt/SConscript -------------------------------------------------------------------------------- /gtests/sub/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/sub/SConscript -------------------------------------------------------------------------------- /gtests/sub/sub_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/sub/sub_perf.cc -------------------------------------------------------------------------------- /gtests/tan/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/tan/SConscript -------------------------------------------------------------------------------- /gtests/tan/tan_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/tan/tan_perf.cc -------------------------------------------------------------------------------- /gtests/tanh/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/tanh/SConscript -------------------------------------------------------------------------------- /gtests/ulp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/ulp.cc -------------------------------------------------------------------------------- /gtests/verify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/gtests/verify.cc -------------------------------------------------------------------------------- /include/fn_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/include/fn_macros.h -------------------------------------------------------------------------------- /include/libm/iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/include/libm/iface.h -------------------------------------------------------------------------------- /include/libm/poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/include/libm/poly.h -------------------------------------------------------------------------------- /include/libm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/include/libm/types.h -------------------------------------------------------------------------------- /include/libm_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/include/libm_amd.h -------------------------------------------------------------------------------- /include/libm_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/include/libm_macros.h -------------------------------------------------------------------------------- /include/weak_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/include/weak_macros.h -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/almfast.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/almfast.def -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/libalm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/libalm.def -------------------------------------------------------------------------------- /scripts/mparith32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/mparith32.def -------------------------------------------------------------------------------- /scripts/mparith64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/mparith64.def -------------------------------------------------------------------------------- /scripts/perf-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/perf-setup.sh -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/run/acos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/acos.sh -------------------------------------------------------------------------------- /scripts/run/asin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/asin.sh -------------------------------------------------------------------------------- /scripts/run/asinh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/asinh.sh -------------------------------------------------------------------------------- /scripts/run/atan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/atan.sh -------------------------------------------------------------------------------- /scripts/run/cos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/cos.sh -------------------------------------------------------------------------------- /scripts/run/cosh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/cosh.sh -------------------------------------------------------------------------------- /scripts/run/exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/exp.sh -------------------------------------------------------------------------------- /scripts/run/exp2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/exp2.sh -------------------------------------------------------------------------------- /scripts/run/expf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/expf.sh -------------------------------------------------------------------------------- /scripts/run/expm1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/expm1.sh -------------------------------------------------------------------------------- /scripts/run/fabs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/fabs.sh -------------------------------------------------------------------------------- /scripts/run/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/log.sh -------------------------------------------------------------------------------- /scripts/run/log10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/log10.sh -------------------------------------------------------------------------------- /scripts/run/log2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/log2.sh -------------------------------------------------------------------------------- /scripts/run/pow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/pow.sh -------------------------------------------------------------------------------- /scripts/run/sin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/sin.sh -------------------------------------------------------------------------------- /scripts/run/sinh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/sinh.sh -------------------------------------------------------------------------------- /scripts/run/tan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/tan.sh -------------------------------------------------------------------------------- /scripts/run/tanh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/run/tanh.sh -------------------------------------------------------------------------------- /scripts/site_scons/alm/build.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/site_scons/alm/toolchain.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/style/astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/scripts/style/astylerc -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/SConscript -------------------------------------------------------------------------------- /src/alm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/alm_main.c -------------------------------------------------------------------------------- /src/alm_special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/alm_special.c -------------------------------------------------------------------------------- /src/alm_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/alm_version.h -------------------------------------------------------------------------------- /src/arch/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/SConscript -------------------------------------------------------------------------------- /src/arch/zen/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/acos.c -------------------------------------------------------------------------------- /src/arch/zen/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/acosf.c -------------------------------------------------------------------------------- /src/arch/zen/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/acosh.c -------------------------------------------------------------------------------- /src/arch/zen/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/acoshf.c -------------------------------------------------------------------------------- /src/arch/zen/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/asin.c -------------------------------------------------------------------------------- /src/arch/zen/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/asinf.c -------------------------------------------------------------------------------- /src/arch/zen/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/asinh.c -------------------------------------------------------------------------------- /src/arch/zen/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/asinhf.c -------------------------------------------------------------------------------- /src/arch/zen/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/atan.c -------------------------------------------------------------------------------- /src/arch/zen/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/atan2.c -------------------------------------------------------------------------------- /src/arch/zen/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/atanf.c -------------------------------------------------------------------------------- /src/arch/zen/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/atanh.c -------------------------------------------------------------------------------- /src/arch/zen/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/atanhf.c -------------------------------------------------------------------------------- /src/arch/zen/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cbrt.c -------------------------------------------------------------------------------- /src/arch/zen/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cbrtf.c -------------------------------------------------------------------------------- /src/arch/zen/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/ceil.c -------------------------------------------------------------------------------- /src/arch/zen/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/ceilf.c -------------------------------------------------------------------------------- /src/arch/zen/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cexp.c -------------------------------------------------------------------------------- /src/arch/zen/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cexpf.c -------------------------------------------------------------------------------- /src/arch/zen/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/clog.c -------------------------------------------------------------------------------- /src/arch/zen/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/clogf.c -------------------------------------------------------------------------------- /src/arch/zen/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cos.c -------------------------------------------------------------------------------- /src/arch/zen/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cosf.c -------------------------------------------------------------------------------- /src/arch/zen/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cosh.c -------------------------------------------------------------------------------- /src/arch/zen/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/coshf.c -------------------------------------------------------------------------------- /src/arch/zen/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cpow.c -------------------------------------------------------------------------------- /src/arch/zen/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/cpowf.c -------------------------------------------------------------------------------- /src/arch/zen/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/erf.c -------------------------------------------------------------------------------- /src/arch/zen/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/erff.c -------------------------------------------------------------------------------- /src/arch/zen/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/exp.c -------------------------------------------------------------------------------- /src/arch/zen/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/exp10.c -------------------------------------------------------------------------------- /src/arch/zen/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/exp10f.c -------------------------------------------------------------------------------- /src/arch/zen/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/exp2.c -------------------------------------------------------------------------------- /src/arch/zen/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/exp2f.c -------------------------------------------------------------------------------- /src/arch/zen/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/expf.c -------------------------------------------------------------------------------- /src/arch/zen/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/expm1.c -------------------------------------------------------------------------------- /src/arch/zen/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/expm1f.c -------------------------------------------------------------------------------- /src/arch/zen/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/fabs.c -------------------------------------------------------------------------------- /src/arch/zen/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/fabsf.c -------------------------------------------------------------------------------- /src/arch/zen/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/floor.c -------------------------------------------------------------------------------- /src/arch/zen/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/floorf.c -------------------------------------------------------------------------------- /src/arch/zen/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/fmax.c -------------------------------------------------------------------------------- /src/arch/zen/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/fmaxf.c -------------------------------------------------------------------------------- /src/arch/zen/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/fmin.c -------------------------------------------------------------------------------- /src/arch/zen/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/fminf.c -------------------------------------------------------------------------------- /src/arch/zen/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/fmod.c -------------------------------------------------------------------------------- /src/arch/zen/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/fmodf.c -------------------------------------------------------------------------------- /src/arch/zen/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/hypot.c -------------------------------------------------------------------------------- /src/arch/zen/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/hypotf.c -------------------------------------------------------------------------------- /src/arch/zen/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/ilogb.c -------------------------------------------------------------------------------- /src/arch/zen/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/ilogbf.c -------------------------------------------------------------------------------- /src/arch/zen/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/log.c -------------------------------------------------------------------------------- /src/arch/zen/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/log10.c -------------------------------------------------------------------------------- /src/arch/zen/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/log10f.c -------------------------------------------------------------------------------- /src/arch/zen/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/log1p.c -------------------------------------------------------------------------------- /src/arch/zen/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/log1pf.c -------------------------------------------------------------------------------- /src/arch/zen/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/log2.c -------------------------------------------------------------------------------- /src/arch/zen/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/log2f.c -------------------------------------------------------------------------------- /src/arch/zen/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/logb.c -------------------------------------------------------------------------------- /src/arch/zen/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/logbf.c -------------------------------------------------------------------------------- /src/arch/zen/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/logf.c -------------------------------------------------------------------------------- /src/arch/zen/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/lround.c -------------------------------------------------------------------------------- /src/arch/zen/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/pow.c -------------------------------------------------------------------------------- /src/arch/zen/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/powf.c -------------------------------------------------------------------------------- /src/arch/zen/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/round.c -------------------------------------------------------------------------------- /src/arch/zen/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/roundf.c -------------------------------------------------------------------------------- /src/arch/zen/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/sin.c -------------------------------------------------------------------------------- /src/arch/zen/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/sincos.c -------------------------------------------------------------------------------- /src/arch/zen/sincosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/sincosf.c -------------------------------------------------------------------------------- /src/arch/zen/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/sinf.c -------------------------------------------------------------------------------- /src/arch/zen/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/sinh.c -------------------------------------------------------------------------------- /src/arch/zen/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/sinhf.c -------------------------------------------------------------------------------- /src/arch/zen/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/sqrt.c -------------------------------------------------------------------------------- /src/arch/zen/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/sqrtf.c -------------------------------------------------------------------------------- /src/arch/zen/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/tan.c -------------------------------------------------------------------------------- /src/arch/zen/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/tanf.c -------------------------------------------------------------------------------- /src/arch/zen/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/tanh.c -------------------------------------------------------------------------------- /src/arch/zen/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/tanhf.c -------------------------------------------------------------------------------- /src/arch/zen/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/trunc.c -------------------------------------------------------------------------------- /src/arch/zen/truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen/truncf.c -------------------------------------------------------------------------------- /src/arch/zen2/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/acos.c -------------------------------------------------------------------------------- /src/arch/zen2/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/acosf.c -------------------------------------------------------------------------------- /src/arch/zen2/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/acosh.c -------------------------------------------------------------------------------- /src/arch/zen2/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/acoshf.c -------------------------------------------------------------------------------- /src/arch/zen2/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/asin.c -------------------------------------------------------------------------------- /src/arch/zen2/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/asinf.c -------------------------------------------------------------------------------- /src/arch/zen2/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/asinh.c -------------------------------------------------------------------------------- /src/arch/zen2/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/asinhf.c -------------------------------------------------------------------------------- /src/arch/zen2/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/atan.c -------------------------------------------------------------------------------- /src/arch/zen2/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/atan2.c -------------------------------------------------------------------------------- /src/arch/zen2/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/atanf.c -------------------------------------------------------------------------------- /src/arch/zen2/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/atanh.c -------------------------------------------------------------------------------- /src/arch/zen2/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/atanhf.c -------------------------------------------------------------------------------- /src/arch/zen2/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cbrt.c -------------------------------------------------------------------------------- /src/arch/zen2/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cbrtf.c -------------------------------------------------------------------------------- /src/arch/zen2/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/ceil.c -------------------------------------------------------------------------------- /src/arch/zen2/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/ceilf.c -------------------------------------------------------------------------------- /src/arch/zen2/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cexp.c -------------------------------------------------------------------------------- /src/arch/zen2/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cexpf.c -------------------------------------------------------------------------------- /src/arch/zen2/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/clog.c -------------------------------------------------------------------------------- /src/arch/zen2/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/clogf.c -------------------------------------------------------------------------------- /src/arch/zen2/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cos.c -------------------------------------------------------------------------------- /src/arch/zen2/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cosf.c -------------------------------------------------------------------------------- /src/arch/zen2/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cosh.c -------------------------------------------------------------------------------- /src/arch/zen2/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/coshf.c -------------------------------------------------------------------------------- /src/arch/zen2/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cpow.c -------------------------------------------------------------------------------- /src/arch/zen2/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/cpowf.c -------------------------------------------------------------------------------- /src/arch/zen2/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/erf.c -------------------------------------------------------------------------------- /src/arch/zen2/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/erff.c -------------------------------------------------------------------------------- /src/arch/zen2/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/exp.c -------------------------------------------------------------------------------- /src/arch/zen2/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/exp10.c -------------------------------------------------------------------------------- /src/arch/zen2/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/exp10f.c -------------------------------------------------------------------------------- /src/arch/zen2/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/exp2.c -------------------------------------------------------------------------------- /src/arch/zen2/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/exp2f.c -------------------------------------------------------------------------------- /src/arch/zen2/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/expf.c -------------------------------------------------------------------------------- /src/arch/zen2/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/expm1.c -------------------------------------------------------------------------------- /src/arch/zen2/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/expm1f.c -------------------------------------------------------------------------------- /src/arch/zen2/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/fabs.c -------------------------------------------------------------------------------- /src/arch/zen2/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/fabsf.c -------------------------------------------------------------------------------- /src/arch/zen2/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/floor.c -------------------------------------------------------------------------------- /src/arch/zen2/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/floorf.c -------------------------------------------------------------------------------- /src/arch/zen2/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/fmax.c -------------------------------------------------------------------------------- /src/arch/zen2/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/fmaxf.c -------------------------------------------------------------------------------- /src/arch/zen2/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/fmin.c -------------------------------------------------------------------------------- /src/arch/zen2/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/fminf.c -------------------------------------------------------------------------------- /src/arch/zen2/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/fmod.c -------------------------------------------------------------------------------- /src/arch/zen2/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/fmodf.c -------------------------------------------------------------------------------- /src/arch/zen2/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/hypot.c -------------------------------------------------------------------------------- /src/arch/zen2/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/hypotf.c -------------------------------------------------------------------------------- /src/arch/zen2/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/ilogb.c -------------------------------------------------------------------------------- /src/arch/zen2/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/ilogbf.c -------------------------------------------------------------------------------- /src/arch/zen2/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/log.c -------------------------------------------------------------------------------- /src/arch/zen2/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/log10.c -------------------------------------------------------------------------------- /src/arch/zen2/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/log10f.c -------------------------------------------------------------------------------- /src/arch/zen2/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/log1p.c -------------------------------------------------------------------------------- /src/arch/zen2/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/log1pf.c -------------------------------------------------------------------------------- /src/arch/zen2/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/log2.c -------------------------------------------------------------------------------- /src/arch/zen2/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/log2f.c -------------------------------------------------------------------------------- /src/arch/zen2/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/logb.c -------------------------------------------------------------------------------- /src/arch/zen2/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/logbf.c -------------------------------------------------------------------------------- /src/arch/zen2/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/logf.c -------------------------------------------------------------------------------- /src/arch/zen2/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/lround.c -------------------------------------------------------------------------------- /src/arch/zen2/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/pow.c -------------------------------------------------------------------------------- /src/arch/zen2/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/powf.c -------------------------------------------------------------------------------- /src/arch/zen2/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/round.c -------------------------------------------------------------------------------- /src/arch/zen2/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/roundf.c -------------------------------------------------------------------------------- /src/arch/zen2/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/sin.c -------------------------------------------------------------------------------- /src/arch/zen2/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/sincos.c -------------------------------------------------------------------------------- /src/arch/zen2/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/sinf.c -------------------------------------------------------------------------------- /src/arch/zen2/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/sinh.c -------------------------------------------------------------------------------- /src/arch/zen2/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/sinhf.c -------------------------------------------------------------------------------- /src/arch/zen2/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/sqrt.c -------------------------------------------------------------------------------- /src/arch/zen2/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/sqrtf.c -------------------------------------------------------------------------------- /src/arch/zen2/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/tan.c -------------------------------------------------------------------------------- /src/arch/zen2/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/tanf.c -------------------------------------------------------------------------------- /src/arch/zen2/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/tanh.c -------------------------------------------------------------------------------- /src/arch/zen2/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/tanhf.c -------------------------------------------------------------------------------- /src/arch/zen2/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/trunc.c -------------------------------------------------------------------------------- /src/arch/zen2/truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen2/truncf.c -------------------------------------------------------------------------------- /src/arch/zen3/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/acos.c -------------------------------------------------------------------------------- /src/arch/zen3/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/acosf.c -------------------------------------------------------------------------------- /src/arch/zen3/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/acosh.c -------------------------------------------------------------------------------- /src/arch/zen3/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/acoshf.c -------------------------------------------------------------------------------- /src/arch/zen3/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/asin.c -------------------------------------------------------------------------------- /src/arch/zen3/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/asinf.c -------------------------------------------------------------------------------- /src/arch/zen3/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/asinh.c -------------------------------------------------------------------------------- /src/arch/zen3/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/asinhf.c -------------------------------------------------------------------------------- /src/arch/zen3/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/atan.c -------------------------------------------------------------------------------- /src/arch/zen3/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/atan2.c -------------------------------------------------------------------------------- /src/arch/zen3/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/atanf.c -------------------------------------------------------------------------------- /src/arch/zen3/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/atanh.c -------------------------------------------------------------------------------- /src/arch/zen3/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/atanhf.c -------------------------------------------------------------------------------- /src/arch/zen3/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cbrt.c -------------------------------------------------------------------------------- /src/arch/zen3/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cbrtf.c -------------------------------------------------------------------------------- /src/arch/zen3/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/ceil.c -------------------------------------------------------------------------------- /src/arch/zen3/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/ceilf.c -------------------------------------------------------------------------------- /src/arch/zen3/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cexp.c -------------------------------------------------------------------------------- /src/arch/zen3/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cexpf.c -------------------------------------------------------------------------------- /src/arch/zen3/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/clog.c -------------------------------------------------------------------------------- /src/arch/zen3/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/clogf.c -------------------------------------------------------------------------------- /src/arch/zen3/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cos.c -------------------------------------------------------------------------------- /src/arch/zen3/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cosf.c -------------------------------------------------------------------------------- /src/arch/zen3/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cosh.c -------------------------------------------------------------------------------- /src/arch/zen3/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/coshf.c -------------------------------------------------------------------------------- /src/arch/zen3/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cpow.c -------------------------------------------------------------------------------- /src/arch/zen3/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/cpowf.c -------------------------------------------------------------------------------- /src/arch/zen3/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/erf.c -------------------------------------------------------------------------------- /src/arch/zen3/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/erff.c -------------------------------------------------------------------------------- /src/arch/zen3/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/exp.c -------------------------------------------------------------------------------- /src/arch/zen3/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/exp10.c -------------------------------------------------------------------------------- /src/arch/zen3/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/exp10f.c -------------------------------------------------------------------------------- /src/arch/zen3/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/exp2.c -------------------------------------------------------------------------------- /src/arch/zen3/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/exp2f.c -------------------------------------------------------------------------------- /src/arch/zen3/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/expf.c -------------------------------------------------------------------------------- /src/arch/zen3/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/expm1.c -------------------------------------------------------------------------------- /src/arch/zen3/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/expm1f.c -------------------------------------------------------------------------------- /src/arch/zen3/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/fabs.c -------------------------------------------------------------------------------- /src/arch/zen3/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/fabsf.c -------------------------------------------------------------------------------- /src/arch/zen3/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/floor.c -------------------------------------------------------------------------------- /src/arch/zen3/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/floorf.c -------------------------------------------------------------------------------- /src/arch/zen3/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/fmax.c -------------------------------------------------------------------------------- /src/arch/zen3/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/fmaxf.c -------------------------------------------------------------------------------- /src/arch/zen3/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/fmin.c -------------------------------------------------------------------------------- /src/arch/zen3/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/fminf.c -------------------------------------------------------------------------------- /src/arch/zen3/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/fmod.c -------------------------------------------------------------------------------- /src/arch/zen3/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/fmodf.c -------------------------------------------------------------------------------- /src/arch/zen3/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/hypot.c -------------------------------------------------------------------------------- /src/arch/zen3/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/hypotf.c -------------------------------------------------------------------------------- /src/arch/zen3/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/ilogb.c -------------------------------------------------------------------------------- /src/arch/zen3/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/ilogbf.c -------------------------------------------------------------------------------- /src/arch/zen3/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/log.c -------------------------------------------------------------------------------- /src/arch/zen3/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/log10.c -------------------------------------------------------------------------------- /src/arch/zen3/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/log10f.c -------------------------------------------------------------------------------- /src/arch/zen3/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/log1p.c -------------------------------------------------------------------------------- /src/arch/zen3/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/log1pf.c -------------------------------------------------------------------------------- /src/arch/zen3/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/log2.c -------------------------------------------------------------------------------- /src/arch/zen3/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/log2f.c -------------------------------------------------------------------------------- /src/arch/zen3/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/logb.c -------------------------------------------------------------------------------- /src/arch/zen3/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/logbf.c -------------------------------------------------------------------------------- /src/arch/zen3/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/logf.c -------------------------------------------------------------------------------- /src/arch/zen3/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/lround.c -------------------------------------------------------------------------------- /src/arch/zen3/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/pow.c -------------------------------------------------------------------------------- /src/arch/zen3/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/powf.c -------------------------------------------------------------------------------- /src/arch/zen3/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/round.c -------------------------------------------------------------------------------- /src/arch/zen3/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/roundf.c -------------------------------------------------------------------------------- /src/arch/zen3/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/sin.c -------------------------------------------------------------------------------- /src/arch/zen3/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/sincos.c -------------------------------------------------------------------------------- /src/arch/zen3/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/sinf.c -------------------------------------------------------------------------------- /src/arch/zen3/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/sinh.c -------------------------------------------------------------------------------- /src/arch/zen3/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/sinhf.c -------------------------------------------------------------------------------- /src/arch/zen3/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/sqrt.c -------------------------------------------------------------------------------- /src/arch/zen3/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/sqrtf.c -------------------------------------------------------------------------------- /src/arch/zen3/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/tan.c -------------------------------------------------------------------------------- /src/arch/zen3/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/tanf.c -------------------------------------------------------------------------------- /src/arch/zen3/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/tanh.c -------------------------------------------------------------------------------- /src/arch/zen3/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/tanhf.c -------------------------------------------------------------------------------- /src/arch/zen3/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/trunc.c -------------------------------------------------------------------------------- /src/arch/zen3/truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen3/truncf.c -------------------------------------------------------------------------------- /src/arch/zen4/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/acos.c -------------------------------------------------------------------------------- /src/arch/zen4/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/acosf.c -------------------------------------------------------------------------------- /src/arch/zen4/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/acosh.c -------------------------------------------------------------------------------- /src/arch/zen4/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/acoshf.c -------------------------------------------------------------------------------- /src/arch/zen4/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/asin.c -------------------------------------------------------------------------------- /src/arch/zen4/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/asinf.c -------------------------------------------------------------------------------- /src/arch/zen4/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/asinh.c -------------------------------------------------------------------------------- /src/arch/zen4/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/asinhf.c -------------------------------------------------------------------------------- /src/arch/zen4/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/atan.c -------------------------------------------------------------------------------- /src/arch/zen4/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/atan2.c -------------------------------------------------------------------------------- /src/arch/zen4/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/atanf.c -------------------------------------------------------------------------------- /src/arch/zen4/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/atanh.c -------------------------------------------------------------------------------- /src/arch/zen4/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/atanhf.c -------------------------------------------------------------------------------- /src/arch/zen4/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cbrt.c -------------------------------------------------------------------------------- /src/arch/zen4/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cbrtf.c -------------------------------------------------------------------------------- /src/arch/zen4/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/ceil.c -------------------------------------------------------------------------------- /src/arch/zen4/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/ceilf.c -------------------------------------------------------------------------------- /src/arch/zen4/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cexp.c -------------------------------------------------------------------------------- /src/arch/zen4/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cexpf.c -------------------------------------------------------------------------------- /src/arch/zen4/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/clog.c -------------------------------------------------------------------------------- /src/arch/zen4/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/clogf.c -------------------------------------------------------------------------------- /src/arch/zen4/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cos.c -------------------------------------------------------------------------------- /src/arch/zen4/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cosf.c -------------------------------------------------------------------------------- /src/arch/zen4/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cosh.c -------------------------------------------------------------------------------- /src/arch/zen4/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/coshf.c -------------------------------------------------------------------------------- /src/arch/zen4/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cpow.c -------------------------------------------------------------------------------- /src/arch/zen4/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/cpowf.c -------------------------------------------------------------------------------- /src/arch/zen4/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/erf.c -------------------------------------------------------------------------------- /src/arch/zen4/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/erff.c -------------------------------------------------------------------------------- /src/arch/zen4/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/exp.c -------------------------------------------------------------------------------- /src/arch/zen4/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/exp10.c -------------------------------------------------------------------------------- /src/arch/zen4/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/exp10f.c -------------------------------------------------------------------------------- /src/arch/zen4/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/exp2.c -------------------------------------------------------------------------------- /src/arch/zen4/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/exp2f.c -------------------------------------------------------------------------------- /src/arch/zen4/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/expf.c -------------------------------------------------------------------------------- /src/arch/zen4/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/expm1.c -------------------------------------------------------------------------------- /src/arch/zen4/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/expm1f.c -------------------------------------------------------------------------------- /src/arch/zen4/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/fabs.c -------------------------------------------------------------------------------- /src/arch/zen4/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/fabsf.c -------------------------------------------------------------------------------- /src/arch/zen4/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/floor.c -------------------------------------------------------------------------------- /src/arch/zen4/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/floorf.c -------------------------------------------------------------------------------- /src/arch/zen4/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/fmax.c -------------------------------------------------------------------------------- /src/arch/zen4/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/fmaxf.c -------------------------------------------------------------------------------- /src/arch/zen4/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/fmin.c -------------------------------------------------------------------------------- /src/arch/zen4/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/fminf.c -------------------------------------------------------------------------------- /src/arch/zen4/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/fmod.c -------------------------------------------------------------------------------- /src/arch/zen4/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/fmodf.c -------------------------------------------------------------------------------- /src/arch/zen4/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/hypot.c -------------------------------------------------------------------------------- /src/arch/zen4/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/hypotf.c -------------------------------------------------------------------------------- /src/arch/zen4/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/ilogb.c -------------------------------------------------------------------------------- /src/arch/zen4/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/ilogbf.c -------------------------------------------------------------------------------- /src/arch/zen4/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/log.c -------------------------------------------------------------------------------- /src/arch/zen4/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/log10.c -------------------------------------------------------------------------------- /src/arch/zen4/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/log10f.c -------------------------------------------------------------------------------- /src/arch/zen4/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/log1p.c -------------------------------------------------------------------------------- /src/arch/zen4/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/log1pf.c -------------------------------------------------------------------------------- /src/arch/zen4/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/log2.c -------------------------------------------------------------------------------- /src/arch/zen4/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/log2f.c -------------------------------------------------------------------------------- /src/arch/zen4/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/logb.c -------------------------------------------------------------------------------- /src/arch/zen4/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/logbf.c -------------------------------------------------------------------------------- /src/arch/zen4/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/logf.c -------------------------------------------------------------------------------- /src/arch/zen4/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/lround.c -------------------------------------------------------------------------------- /src/arch/zen4/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/pow.c -------------------------------------------------------------------------------- /src/arch/zen4/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/powf.c -------------------------------------------------------------------------------- /src/arch/zen4/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/round.c -------------------------------------------------------------------------------- /src/arch/zen4/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/roundf.c -------------------------------------------------------------------------------- /src/arch/zen4/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/sin.c -------------------------------------------------------------------------------- /src/arch/zen4/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/sincos.c -------------------------------------------------------------------------------- /src/arch/zen4/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/sinf.c -------------------------------------------------------------------------------- /src/arch/zen4/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/sinh.c -------------------------------------------------------------------------------- /src/arch/zen4/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/sinhf.c -------------------------------------------------------------------------------- /src/arch/zen4/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/sqrt.c -------------------------------------------------------------------------------- /src/arch/zen4/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/sqrtf.c -------------------------------------------------------------------------------- /src/arch/zen4/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/tan.c -------------------------------------------------------------------------------- /src/arch/zen4/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/tanf.c -------------------------------------------------------------------------------- /src/arch/zen4/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/tanh.c -------------------------------------------------------------------------------- /src/arch/zen4/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/tanhf.c -------------------------------------------------------------------------------- /src/arch/zen4/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/trunc.c -------------------------------------------------------------------------------- /src/arch/zen4/truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen4/truncf.c -------------------------------------------------------------------------------- /src/arch/zen5/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/acos.c -------------------------------------------------------------------------------- /src/arch/zen5/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/acosf.c -------------------------------------------------------------------------------- /src/arch/zen5/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/acosh.c -------------------------------------------------------------------------------- /src/arch/zen5/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/acoshf.c -------------------------------------------------------------------------------- /src/arch/zen5/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/asin.c -------------------------------------------------------------------------------- /src/arch/zen5/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/asinf.c -------------------------------------------------------------------------------- /src/arch/zen5/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/asinh.c -------------------------------------------------------------------------------- /src/arch/zen5/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/asinhf.c -------------------------------------------------------------------------------- /src/arch/zen5/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/atan.c -------------------------------------------------------------------------------- /src/arch/zen5/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/atan2.c -------------------------------------------------------------------------------- /src/arch/zen5/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/atanf.c -------------------------------------------------------------------------------- /src/arch/zen5/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/atanh.c -------------------------------------------------------------------------------- /src/arch/zen5/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/atanhf.c -------------------------------------------------------------------------------- /src/arch/zen5/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cbrt.c -------------------------------------------------------------------------------- /src/arch/zen5/cbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cbtrf.c -------------------------------------------------------------------------------- /src/arch/zen5/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/ceil.c -------------------------------------------------------------------------------- /src/arch/zen5/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/ceilf.c -------------------------------------------------------------------------------- /src/arch/zen5/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cexp.c -------------------------------------------------------------------------------- /src/arch/zen5/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cexpf.c -------------------------------------------------------------------------------- /src/arch/zen5/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/clog.c -------------------------------------------------------------------------------- /src/arch/zen5/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/clogf.c -------------------------------------------------------------------------------- /src/arch/zen5/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cos.c -------------------------------------------------------------------------------- /src/arch/zen5/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cosf.c -------------------------------------------------------------------------------- /src/arch/zen5/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cosh.c -------------------------------------------------------------------------------- /src/arch/zen5/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/coshf.c -------------------------------------------------------------------------------- /src/arch/zen5/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cpow.c -------------------------------------------------------------------------------- /src/arch/zen5/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/cpowf.c -------------------------------------------------------------------------------- /src/arch/zen5/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/erf.c -------------------------------------------------------------------------------- /src/arch/zen5/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/erff.c -------------------------------------------------------------------------------- /src/arch/zen5/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/exp.c -------------------------------------------------------------------------------- /src/arch/zen5/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/exp10.c -------------------------------------------------------------------------------- /src/arch/zen5/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/exp10f.c -------------------------------------------------------------------------------- /src/arch/zen5/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/exp2.c -------------------------------------------------------------------------------- /src/arch/zen5/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/exp2f.c -------------------------------------------------------------------------------- /src/arch/zen5/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/expf.c -------------------------------------------------------------------------------- /src/arch/zen5/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/expm1.c -------------------------------------------------------------------------------- /src/arch/zen5/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/expm1f.c -------------------------------------------------------------------------------- /src/arch/zen5/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/fabs.c -------------------------------------------------------------------------------- /src/arch/zen5/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/fabsf.c -------------------------------------------------------------------------------- /src/arch/zen5/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/floor.c -------------------------------------------------------------------------------- /src/arch/zen5/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/floorf.c -------------------------------------------------------------------------------- /src/arch/zen5/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/fmax.c -------------------------------------------------------------------------------- /src/arch/zen5/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/fmaxf.c -------------------------------------------------------------------------------- /src/arch/zen5/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/fmin.c -------------------------------------------------------------------------------- /src/arch/zen5/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/fminf.c -------------------------------------------------------------------------------- /src/arch/zen5/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/fmod.c -------------------------------------------------------------------------------- /src/arch/zen5/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/fmodf.c -------------------------------------------------------------------------------- /src/arch/zen5/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/hypot.c -------------------------------------------------------------------------------- /src/arch/zen5/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/hypotf.c -------------------------------------------------------------------------------- /src/arch/zen5/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/ilogb.c -------------------------------------------------------------------------------- /src/arch/zen5/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/ilogbf.c -------------------------------------------------------------------------------- /src/arch/zen5/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/log.c -------------------------------------------------------------------------------- /src/arch/zen5/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/log10.c -------------------------------------------------------------------------------- /src/arch/zen5/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/log10f.c -------------------------------------------------------------------------------- /src/arch/zen5/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/log1p.c -------------------------------------------------------------------------------- /src/arch/zen5/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/log1pf.c -------------------------------------------------------------------------------- /src/arch/zen5/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/log2.c -------------------------------------------------------------------------------- /src/arch/zen5/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/log2f.c -------------------------------------------------------------------------------- /src/arch/zen5/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/logb.c -------------------------------------------------------------------------------- /src/arch/zen5/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/logbf.c -------------------------------------------------------------------------------- /src/arch/zen5/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/logf.c -------------------------------------------------------------------------------- /src/arch/zen5/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/lround.c -------------------------------------------------------------------------------- /src/arch/zen5/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/pow.c -------------------------------------------------------------------------------- /src/arch/zen5/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/powf.c -------------------------------------------------------------------------------- /src/arch/zen5/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/round.c -------------------------------------------------------------------------------- /src/arch/zen5/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/roundf.c -------------------------------------------------------------------------------- /src/arch/zen5/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/sin.c -------------------------------------------------------------------------------- /src/arch/zen5/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/sincos.c -------------------------------------------------------------------------------- /src/arch/zen5/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/sinf.c -------------------------------------------------------------------------------- /src/arch/zen5/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/sinh.c -------------------------------------------------------------------------------- /src/arch/zen5/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/sinhf.c -------------------------------------------------------------------------------- /src/arch/zen5/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/sqrt.c -------------------------------------------------------------------------------- /src/arch/zen5/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/sqrtf.c -------------------------------------------------------------------------------- /src/arch/zen5/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/tan.c -------------------------------------------------------------------------------- /src/arch/zen5/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/tanf.c -------------------------------------------------------------------------------- /src/arch/zen5/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/tanh.c -------------------------------------------------------------------------------- /src/arch/zen5/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/tanhf.c -------------------------------------------------------------------------------- /src/arch/zen5/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/trunc.c -------------------------------------------------------------------------------- /src/arch/zen5/truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/arch/zen5/truncf.c -------------------------------------------------------------------------------- /src/buildsysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/buildsysinfo.h -------------------------------------------------------------------------------- /src/compat/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/compat/SConscript -------------------------------------------------------------------------------- /src/cpu_features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/cpu_features.c -------------------------------------------------------------------------------- /src/entry_pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/entry_pt.c -------------------------------------------------------------------------------- /src/entry_pt_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/entry_pt_macros.h -------------------------------------------------------------------------------- /src/entry_pt_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/entry_pt_map.c -------------------------------------------------------------------------------- /src/fast/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/SConscript -------------------------------------------------------------------------------- /src/fast/_exp_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/_exp_tables.c -------------------------------------------------------------------------------- /src/fast/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/acos.c -------------------------------------------------------------------------------- /src/fast/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/acosf.c -------------------------------------------------------------------------------- /src/fast/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/asin.c -------------------------------------------------------------------------------- /src/fast/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/asinf.c -------------------------------------------------------------------------------- /src/fast/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/atan.c -------------------------------------------------------------------------------- /src/fast/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/atanf.c -------------------------------------------------------------------------------- /src/fast/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/cos.c -------------------------------------------------------------------------------- /src/fast/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/cosf.c -------------------------------------------------------------------------------- /src/fast/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/erf.c -------------------------------------------------------------------------------- /src/fast/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/erff.c -------------------------------------------------------------------------------- /src/fast/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/exp.c -------------------------------------------------------------------------------- /src/fast/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/expf.c -------------------------------------------------------------------------------- /src/fast/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/log.c -------------------------------------------------------------------------------- /src/fast/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/logf.c -------------------------------------------------------------------------------- /src/fast/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/pow.c -------------------------------------------------------------------------------- /src/fast/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/powf.c -------------------------------------------------------------------------------- /src/fast/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/sin.c -------------------------------------------------------------------------------- /src/fast/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/sinf.c -------------------------------------------------------------------------------- /src/fast/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/tan.c -------------------------------------------------------------------------------- /src/fast/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/fast/tanf.c -------------------------------------------------------------------------------- /src/iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface.c -------------------------------------------------------------------------------- /src/iface/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/SConscript -------------------------------------------------------------------------------- /src/iface/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/acos.c -------------------------------------------------------------------------------- /src/iface/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/acosh.c -------------------------------------------------------------------------------- /src/iface/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/add.c -------------------------------------------------------------------------------- /src/iface/addi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/addi.c -------------------------------------------------------------------------------- /src/iface/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/asin.c -------------------------------------------------------------------------------- /src/iface/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/asinh.c -------------------------------------------------------------------------------- /src/iface/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/atan.c -------------------------------------------------------------------------------- /src/iface/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/atan2.c -------------------------------------------------------------------------------- /src/iface/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/atanh.c -------------------------------------------------------------------------------- /src/iface/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/cbrt.c -------------------------------------------------------------------------------- /src/iface/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/ceil.c -------------------------------------------------------------------------------- /src/iface/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/cexp.c -------------------------------------------------------------------------------- /src/iface/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/clog.c -------------------------------------------------------------------------------- /src/iface/copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/copysign.c -------------------------------------------------------------------------------- /src/iface/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/cos.c -------------------------------------------------------------------------------- /src/iface/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/cosh.c -------------------------------------------------------------------------------- /src/iface/cospi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/cospi.c -------------------------------------------------------------------------------- /src/iface/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/cpow.c -------------------------------------------------------------------------------- /src/iface/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/div.c -------------------------------------------------------------------------------- /src/iface/divi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/divi.c -------------------------------------------------------------------------------- /src/iface/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/erf.c -------------------------------------------------------------------------------- /src/iface/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/exp.c -------------------------------------------------------------------------------- /src/iface/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/exp10.c -------------------------------------------------------------------------------- /src/iface/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/exp2.c -------------------------------------------------------------------------------- /src/iface/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/expm1.c -------------------------------------------------------------------------------- /src/iface/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/fabs.c -------------------------------------------------------------------------------- /src/iface/fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/fdim.c -------------------------------------------------------------------------------- /src/iface/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/finite.c -------------------------------------------------------------------------------- /src/iface/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/floor.c -------------------------------------------------------------------------------- /src/iface/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/fma.c -------------------------------------------------------------------------------- /src/iface/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/fmax.c -------------------------------------------------------------------------------- /src/iface/fmaxi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/fmaxi.c -------------------------------------------------------------------------------- /src/iface/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/fmin.c -------------------------------------------------------------------------------- /src/iface/fmini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/fmini.c -------------------------------------------------------------------------------- /src/iface/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/fmod.c -------------------------------------------------------------------------------- /src/iface/frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/frexp.c -------------------------------------------------------------------------------- /src/iface/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/hypot.c -------------------------------------------------------------------------------- /src/iface/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/ilogb.c -------------------------------------------------------------------------------- /src/iface/ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/ldexp.c -------------------------------------------------------------------------------- /src/iface/linearfrac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/linearfrac.c -------------------------------------------------------------------------------- /src/iface/llrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/llrint.c -------------------------------------------------------------------------------- /src/iface/llround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/llround.c -------------------------------------------------------------------------------- /src/iface/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/log.c -------------------------------------------------------------------------------- /src/iface/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/log10.c -------------------------------------------------------------------------------- /src/iface/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/log1p.c -------------------------------------------------------------------------------- /src/iface/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/log2.c -------------------------------------------------------------------------------- /src/iface/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/logb.c -------------------------------------------------------------------------------- /src/iface/lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/lrint.c -------------------------------------------------------------------------------- /src/iface/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/lround.c -------------------------------------------------------------------------------- /src/iface/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/modf.c -------------------------------------------------------------------------------- /src/iface/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/mul.c -------------------------------------------------------------------------------- /src/iface/muli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/muli.c -------------------------------------------------------------------------------- /src/iface/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/nan.c -------------------------------------------------------------------------------- /src/iface/nearbyint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/nearbyint.c -------------------------------------------------------------------------------- /src/iface/nextafter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/nextafter.c -------------------------------------------------------------------------------- /src/iface/nexttoward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/nexttoward.c -------------------------------------------------------------------------------- /src/iface/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/pow.c -------------------------------------------------------------------------------- /src/iface/powx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/powx.c -------------------------------------------------------------------------------- /src/iface/remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/remainder.c -------------------------------------------------------------------------------- /src/iface/remquo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/remquo.c -------------------------------------------------------------------------------- /src/iface/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/rint.c -------------------------------------------------------------------------------- /src/iface/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/round.c -------------------------------------------------------------------------------- /src/iface/scalbln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/scalbln.c -------------------------------------------------------------------------------- /src/iface/scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/scalbn.c -------------------------------------------------------------------------------- /src/iface/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/sin.c -------------------------------------------------------------------------------- /src/iface/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/sincos.c -------------------------------------------------------------------------------- /src/iface/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/sinh.c -------------------------------------------------------------------------------- /src/iface/sinpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/sinpi.c -------------------------------------------------------------------------------- /src/iface/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/sqrt.c -------------------------------------------------------------------------------- /src/iface/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/sub.c -------------------------------------------------------------------------------- /src/iface/subi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/subi.c -------------------------------------------------------------------------------- /src/iface/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/tan.c -------------------------------------------------------------------------------- /src/iface/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/tanh.c -------------------------------------------------------------------------------- /src/iface/tanpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/tanpi.c -------------------------------------------------------------------------------- /src/iface/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/iface/trunc.c -------------------------------------------------------------------------------- /src/isa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/CMakeLists.txt -------------------------------------------------------------------------------- /src/isa/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/SConscript -------------------------------------------------------------------------------- /src/isa/avx/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/fma.c -------------------------------------------------------------------------------- /src/isa/avx/fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/fmaf.c -------------------------------------------------------------------------------- /src/isa/avx/gas/cbrt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/cbrt.S -------------------------------------------------------------------------------- /src/isa/avx/gas/cexp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/cexp.S -------------------------------------------------------------------------------- /src/isa/avx/gas/cos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/cos.S -------------------------------------------------------------------------------- /src/isa/avx/gas/cosf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/cosf.S -------------------------------------------------------------------------------- /src/isa/avx/gas/exp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/exp.S -------------------------------------------------------------------------------- /src/isa/avx/gas/exp2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/exp2.S -------------------------------------------------------------------------------- /src/isa/avx/gas/expf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/expf.S -------------------------------------------------------------------------------- /src/isa/avx/gas/fabs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/fabs.S -------------------------------------------------------------------------------- /src/isa/avx/gas/fdim.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/fdim.S -------------------------------------------------------------------------------- /src/isa/avx/gas/fmax.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/fmax.S -------------------------------------------------------------------------------- /src/isa/avx/gas/fmin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/fmin.S -------------------------------------------------------------------------------- /src/isa/avx/gas/fmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/fmod.S -------------------------------------------------------------------------------- /src/isa/avx/gas/log.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/log.S -------------------------------------------------------------------------------- /src/isa/avx/gas/log2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/log2.S -------------------------------------------------------------------------------- /src/isa/avx/gas/logf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/logf.S -------------------------------------------------------------------------------- /src/isa/avx/gas/pow.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/pow.S -------------------------------------------------------------------------------- /src/isa/avx/gas/powf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/powf.S -------------------------------------------------------------------------------- /src/isa/avx/gas/sin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/sin.S -------------------------------------------------------------------------------- /src/isa/avx/gas/sinf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/gas/sinf.S -------------------------------------------------------------------------------- /src/isa/avx/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/log1p.c -------------------------------------------------------------------------------- /src/isa/avx/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/log1pf.c -------------------------------------------------------------------------------- /src/isa/avx/vrd2_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx/vrd2_tan.c -------------------------------------------------------------------------------- /src/isa/avx2/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/acos.c -------------------------------------------------------------------------------- /src/isa/avx2/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/acosf.c -------------------------------------------------------------------------------- /src/isa/avx2/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/acosh.c -------------------------------------------------------------------------------- /src/isa/avx2/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/acoshf.c -------------------------------------------------------------------------------- /src/isa/avx2/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/asin.c -------------------------------------------------------------------------------- /src/isa/avx2/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/asinf.c -------------------------------------------------------------------------------- /src/isa/avx2/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/asinh.c -------------------------------------------------------------------------------- /src/isa/avx2/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/asinhf.c -------------------------------------------------------------------------------- /src/isa/avx2/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/atan.c -------------------------------------------------------------------------------- /src/isa/avx2/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/atan2.c -------------------------------------------------------------------------------- /src/isa/avx2/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/atanf.c -------------------------------------------------------------------------------- /src/isa/avx2/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/atanh.c -------------------------------------------------------------------------------- /src/isa/avx2/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/atanhf.c -------------------------------------------------------------------------------- /src/isa/avx2/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cbrt.c -------------------------------------------------------------------------------- /src/isa/avx2/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cbrtf.c -------------------------------------------------------------------------------- /src/isa/avx2/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/ceil.c -------------------------------------------------------------------------------- /src/isa/avx2/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/ceilf.c -------------------------------------------------------------------------------- /src/isa/avx2/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cexp.c -------------------------------------------------------------------------------- /src/isa/avx2/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cexpf.c -------------------------------------------------------------------------------- /src/isa/avx2/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/clog.c -------------------------------------------------------------------------------- /src/isa/avx2/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/clogf.c -------------------------------------------------------------------------------- /src/isa/avx2/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cos.c -------------------------------------------------------------------------------- /src/isa/avx2/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cosf.c -------------------------------------------------------------------------------- /src/isa/avx2/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cosh.c -------------------------------------------------------------------------------- /src/isa/avx2/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/coshf.c -------------------------------------------------------------------------------- /src/isa/avx2/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cpow.c -------------------------------------------------------------------------------- /src/isa/avx2/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/cpowf.c -------------------------------------------------------------------------------- /src/isa/avx2/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/erf.c -------------------------------------------------------------------------------- /src/isa/avx2/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/erff.c -------------------------------------------------------------------------------- /src/isa/avx2/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/exp.c -------------------------------------------------------------------------------- /src/isa/avx2/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/exp10.c -------------------------------------------------------------------------------- /src/isa/avx2/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/exp10f.c -------------------------------------------------------------------------------- /src/isa/avx2/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/exp2.c -------------------------------------------------------------------------------- /src/isa/avx2/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/exp2f.c -------------------------------------------------------------------------------- /src/isa/avx2/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/expf.c -------------------------------------------------------------------------------- /src/isa/avx2/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/expm1.c -------------------------------------------------------------------------------- /src/isa/avx2/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/expm1f.c -------------------------------------------------------------------------------- /src/isa/avx2/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/fabs.c -------------------------------------------------------------------------------- /src/isa/avx2/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/fabsf.c -------------------------------------------------------------------------------- /src/isa/avx2/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/floor.c -------------------------------------------------------------------------------- /src/isa/avx2/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/floorf.c -------------------------------------------------------------------------------- /src/isa/avx2/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/fmax.c -------------------------------------------------------------------------------- /src/isa/avx2/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/fmaxf.c -------------------------------------------------------------------------------- /src/isa/avx2/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/fmin.c -------------------------------------------------------------------------------- /src/isa/avx2/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/fminf.c -------------------------------------------------------------------------------- /src/isa/avx2/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/fmod.c -------------------------------------------------------------------------------- /src/isa/avx2/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/fmodf.c -------------------------------------------------------------------------------- /src/isa/avx2/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/hypot.c -------------------------------------------------------------------------------- /src/isa/avx2/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/hypotf.c -------------------------------------------------------------------------------- /src/isa/avx2/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/ilogb.c -------------------------------------------------------------------------------- /src/isa/avx2/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/ilogbf.c -------------------------------------------------------------------------------- /src/isa/avx2/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/log.c -------------------------------------------------------------------------------- /src/isa/avx2/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/log10.c -------------------------------------------------------------------------------- /src/isa/avx2/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/log10f.c -------------------------------------------------------------------------------- /src/isa/avx2/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/log1p.c -------------------------------------------------------------------------------- /src/isa/avx2/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/log1pf.c -------------------------------------------------------------------------------- /src/isa/avx2/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/log2.c -------------------------------------------------------------------------------- /src/isa/avx2/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/log2f.c -------------------------------------------------------------------------------- /src/isa/avx2/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/logb.c -------------------------------------------------------------------------------- /src/isa/avx2/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/logbf.c -------------------------------------------------------------------------------- /src/isa/avx2/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/logf.c -------------------------------------------------------------------------------- /src/isa/avx2/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/lround.c -------------------------------------------------------------------------------- /src/isa/avx2/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/pow.c -------------------------------------------------------------------------------- /src/isa/avx2/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/powf.c -------------------------------------------------------------------------------- /src/isa/avx2/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/round.c -------------------------------------------------------------------------------- /src/isa/avx2/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/roundf.c -------------------------------------------------------------------------------- /src/isa/avx2/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/sin.c -------------------------------------------------------------------------------- /src/isa/avx2/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/sincos.c -------------------------------------------------------------------------------- /src/isa/avx2/sincosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/sincosf.c -------------------------------------------------------------------------------- /src/isa/avx2/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/sinf.c -------------------------------------------------------------------------------- /src/isa/avx2/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/sinh.c -------------------------------------------------------------------------------- /src/isa/avx2/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/sinhf.c -------------------------------------------------------------------------------- /src/isa/avx2/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/sqrt.c -------------------------------------------------------------------------------- /src/isa/avx2/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/sqrtf.c -------------------------------------------------------------------------------- /src/isa/avx2/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/tan.c -------------------------------------------------------------------------------- /src/isa/avx2/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/tanf.c -------------------------------------------------------------------------------- /src/isa/avx2/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/tanh.c -------------------------------------------------------------------------------- /src/isa/avx2/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/tanhf.c -------------------------------------------------------------------------------- /src/isa/avx2/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/trunc.c -------------------------------------------------------------------------------- /src/isa/avx2/truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/isa/avx2/truncf.c -------------------------------------------------------------------------------- /src/kern/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/kern/expf.c -------------------------------------------------------------------------------- /src/kern/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/kern/log1p.c -------------------------------------------------------------------------------- /src/kern/sqrt_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/kern/sqrt_pos.c -------------------------------------------------------------------------------- /src/kern/sqrtf_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/kern/sqrtf_pos.c -------------------------------------------------------------------------------- /src/ld-syms-libm.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ld-syms-libm.lds -------------------------------------------------------------------------------- /src/optimized/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/acos.c -------------------------------------------------------------------------------- /src/optimized/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/acosf.c -------------------------------------------------------------------------------- /src/optimized/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/acosh.c -------------------------------------------------------------------------------- /src/optimized/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/acoshf.c -------------------------------------------------------------------------------- /src/optimized/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/asin.c -------------------------------------------------------------------------------- /src/optimized/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/asinf.c -------------------------------------------------------------------------------- /src/optimized/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/asinh.c -------------------------------------------------------------------------------- /src/optimized/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/asinhf.c -------------------------------------------------------------------------------- /src/optimized/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/atan.c -------------------------------------------------------------------------------- /src/optimized/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/atan2.c -------------------------------------------------------------------------------- /src/optimized/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/atanf.c -------------------------------------------------------------------------------- /src/optimized/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/atanh.c -------------------------------------------------------------------------------- /src/optimized/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/atanhf.c -------------------------------------------------------------------------------- /src/optimized/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/cbrt.c -------------------------------------------------------------------------------- /src/optimized/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/cbrtf.c -------------------------------------------------------------------------------- /src/optimized/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/ceil.c -------------------------------------------------------------------------------- /src/optimized/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/ceilf.c -------------------------------------------------------------------------------- /src/optimized/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/cos.c -------------------------------------------------------------------------------- /src/optimized/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/cosf.c -------------------------------------------------------------------------------- /src/optimized/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/cosh.c -------------------------------------------------------------------------------- /src/optimized/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/coshf.c -------------------------------------------------------------------------------- /src/optimized/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/erf.c -------------------------------------------------------------------------------- /src/optimized/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/erff.c -------------------------------------------------------------------------------- /src/optimized/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/exp.c -------------------------------------------------------------------------------- /src/optimized/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/exp10.c -------------------------------------------------------------------------------- /src/optimized/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/exp10f.c -------------------------------------------------------------------------------- /src/optimized/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/exp2.c -------------------------------------------------------------------------------- /src/optimized/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/exp2f.c -------------------------------------------------------------------------------- /src/optimized/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/expf.c -------------------------------------------------------------------------------- /src/optimized/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/expm1.c -------------------------------------------------------------------------------- /src/optimized/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/expm1f.c -------------------------------------------------------------------------------- /src/optimized/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fabs.c -------------------------------------------------------------------------------- /src/optimized/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fabsf.c -------------------------------------------------------------------------------- /src/optimized/fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fdim.c -------------------------------------------------------------------------------- /src/optimized/fdimf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fdimf.c -------------------------------------------------------------------------------- /src/optimized/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/floor.c -------------------------------------------------------------------------------- /src/optimized/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/floorf.c -------------------------------------------------------------------------------- /src/optimized/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fmax.c -------------------------------------------------------------------------------- /src/optimized/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fmaxf.c -------------------------------------------------------------------------------- /src/optimized/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fmin.c -------------------------------------------------------------------------------- /src/optimized/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fminf.c -------------------------------------------------------------------------------- /src/optimized/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fmod.c -------------------------------------------------------------------------------- /src/optimized/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/fmodf.c -------------------------------------------------------------------------------- /src/optimized/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/hypot.c -------------------------------------------------------------------------------- /src/optimized/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/hypotf.c -------------------------------------------------------------------------------- /src/optimized/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/ilogb.c -------------------------------------------------------------------------------- /src/optimized/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/ilogbf.c -------------------------------------------------------------------------------- /src/optimized/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/log.c -------------------------------------------------------------------------------- /src/optimized/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/log10.c -------------------------------------------------------------------------------- /src/optimized/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/log10f.c -------------------------------------------------------------------------------- /src/optimized/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/log1p.c -------------------------------------------------------------------------------- /src/optimized/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/log1pf.c -------------------------------------------------------------------------------- /src/optimized/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/log2.c -------------------------------------------------------------------------------- /src/optimized/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/log2f.c -------------------------------------------------------------------------------- /src/optimized/log_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/log_v3.c -------------------------------------------------------------------------------- /src/optimized/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/logb.c -------------------------------------------------------------------------------- /src/optimized/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/logbf.c -------------------------------------------------------------------------------- /src/optimized/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/logf.c -------------------------------------------------------------------------------- /src/optimized/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/lround.c -------------------------------------------------------------------------------- /src/optimized/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/pow.c -------------------------------------------------------------------------------- /src/optimized/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/powf.c -------------------------------------------------------------------------------- /src/optimized/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/round.c -------------------------------------------------------------------------------- /src/optimized/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/roundf.c -------------------------------------------------------------------------------- /src/optimized/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/sin.c -------------------------------------------------------------------------------- /src/optimized/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/sincos.c -------------------------------------------------------------------------------- /src/optimized/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/sinf.c -------------------------------------------------------------------------------- /src/optimized/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/sinh.c -------------------------------------------------------------------------------- /src/optimized/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/sinhf.c -------------------------------------------------------------------------------- /src/optimized/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/sqrt.c -------------------------------------------------------------------------------- /src/optimized/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/sqrtf.c -------------------------------------------------------------------------------- /src/optimized/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/tan.c -------------------------------------------------------------------------------- /src/optimized/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/tanf.c -------------------------------------------------------------------------------- /src/optimized/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/tanh.c -------------------------------------------------------------------------------- /src/optimized/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optimized/tanhf.c -------------------------------------------------------------------------------- /src/optmized/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/acos.c -------------------------------------------------------------------------------- /src/optmized/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/acosf.c -------------------------------------------------------------------------------- /src/optmized/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/acosh.c -------------------------------------------------------------------------------- /src/optmized/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/asin.c -------------------------------------------------------------------------------- /src/optmized/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/asinf.c -------------------------------------------------------------------------------- /src/optmized/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/asinh.c -------------------------------------------------------------------------------- /src/optmized/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/atan.c -------------------------------------------------------------------------------- /src/optmized/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/atan2.c -------------------------------------------------------------------------------- /src/optmized/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/atanf.c -------------------------------------------------------------------------------- /src/optmized/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/atanh.c -------------------------------------------------------------------------------- /src/optmized/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/cbrtf.c -------------------------------------------------------------------------------- /src/optmized/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/ceil.c -------------------------------------------------------------------------------- /src/optmized/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/ceilf.c -------------------------------------------------------------------------------- /src/optmized/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/cos.c -------------------------------------------------------------------------------- /src/optmized/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/cosf.c -------------------------------------------------------------------------------- /src/optmized/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/cosh.c -------------------------------------------------------------------------------- /src/optmized/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/coshf.c -------------------------------------------------------------------------------- /src/optmized/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/erff.c -------------------------------------------------------------------------------- /src/optmized/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/exp.c -------------------------------------------------------------------------------- /src/optmized/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/exp10.c -------------------------------------------------------------------------------- /src/optmized/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/exp2.c -------------------------------------------------------------------------------- /src/optmized/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/exp2f.c -------------------------------------------------------------------------------- /src/optmized/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/expf.c -------------------------------------------------------------------------------- /src/optmized/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/expm1.c -------------------------------------------------------------------------------- /src/optmized/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/fabs.c -------------------------------------------------------------------------------- /src/optmized/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/fabsf.c -------------------------------------------------------------------------------- /src/optmized/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/floor.c -------------------------------------------------------------------------------- /src/optmized/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/hypot.c -------------------------------------------------------------------------------- /src/optmized/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/ilogb.c -------------------------------------------------------------------------------- /src/optmized/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/log.c -------------------------------------------------------------------------------- /src/optmized/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/log10.c -------------------------------------------------------------------------------- /src/optmized/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/log1p.c -------------------------------------------------------------------------------- /src/optmized/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/log2.c -------------------------------------------------------------------------------- /src/optmized/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/log2f.c -------------------------------------------------------------------------------- /src/optmized/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/logb.c -------------------------------------------------------------------------------- /src/optmized/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/logbf.c -------------------------------------------------------------------------------- /src/optmized/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/logf.c -------------------------------------------------------------------------------- /src/optmized/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/pow.c -------------------------------------------------------------------------------- /src/optmized/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/powf.c -------------------------------------------------------------------------------- /src/optmized/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/round.c -------------------------------------------------------------------------------- /src/optmized/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/sin.c -------------------------------------------------------------------------------- /src/optmized/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/sinf.c -------------------------------------------------------------------------------- /src/optmized/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/sinh.c -------------------------------------------------------------------------------- /src/optmized/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/sinhf.c -------------------------------------------------------------------------------- /src/optmized/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/sqrt.c -------------------------------------------------------------------------------- /src/optmized/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/sqrtf.c -------------------------------------------------------------------------------- /src/optmized/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/tan.c -------------------------------------------------------------------------------- /src/optmized/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/tanf.c -------------------------------------------------------------------------------- /src/optmized/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/tanh.c -------------------------------------------------------------------------------- /src/optmized/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/tanhf.c -------------------------------------------------------------------------------- /src/optmized/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/optmized/trunc.c -------------------------------------------------------------------------------- /src/ref/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/SConscript -------------------------------------------------------------------------------- /src/ref/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/acos.c -------------------------------------------------------------------------------- /src/ref/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/acosf.c -------------------------------------------------------------------------------- /src/ref/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/acosh.c -------------------------------------------------------------------------------- /src/ref/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/acoshf.c -------------------------------------------------------------------------------- /src/ref/amd_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/amd_pow.c -------------------------------------------------------------------------------- /src/ref/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/asin.c -------------------------------------------------------------------------------- /src/ref/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/asinf.c -------------------------------------------------------------------------------- /src/ref/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/asinh.c -------------------------------------------------------------------------------- /src/ref/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/asinhf.c -------------------------------------------------------------------------------- /src/ref/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/atan.c -------------------------------------------------------------------------------- /src/ref/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/atan2.c -------------------------------------------------------------------------------- /src/ref/atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/atan2f.c -------------------------------------------------------------------------------- /src/ref/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/atanf.c -------------------------------------------------------------------------------- /src/ref/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/atanh.c -------------------------------------------------------------------------------- /src/ref/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/atanhf.c -------------------------------------------------------------------------------- /src/ref/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/ceil.c -------------------------------------------------------------------------------- /src/ref/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/ceilf.c -------------------------------------------------------------------------------- /src/ref/cmplx/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/cmplx/cexp.c -------------------------------------------------------------------------------- /src/ref/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/cosh.c -------------------------------------------------------------------------------- /src/ref/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/coshf.c -------------------------------------------------------------------------------- /src/ref/cospi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/cospi.c -------------------------------------------------------------------------------- /src/ref/cospif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/cospif.c -------------------------------------------------------------------------------- /src/ref/exp_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/exp_tables.c -------------------------------------------------------------------------------- /src/ref/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/finite.c -------------------------------------------------------------------------------- /src/ref/finitef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/finitef.c -------------------------------------------------------------------------------- /src/ref/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/floor.c -------------------------------------------------------------------------------- /src/ref/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/floorf.c -------------------------------------------------------------------------------- /src/ref/frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/frexp.c -------------------------------------------------------------------------------- /src/ref/frexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/frexpf.c -------------------------------------------------------------------------------- /src/ref/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/hypot.c -------------------------------------------------------------------------------- /src/ref/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/hypotf.c -------------------------------------------------------------------------------- /src/ref/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/ilogb.c -------------------------------------------------------------------------------- /src/ref/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/ilogbf.c -------------------------------------------------------------------------------- /src/ref/ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/ldexp.c -------------------------------------------------------------------------------- /src/ref/ldexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/ldexpf.c -------------------------------------------------------------------------------- /src/ref/llrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/llrint.c -------------------------------------------------------------------------------- /src/ref/llrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/llrintf.c -------------------------------------------------------------------------------- /src/ref/llround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/llround.c -------------------------------------------------------------------------------- /src/ref/llroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/llroundf.c -------------------------------------------------------------------------------- /src/ref/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/logb.c -------------------------------------------------------------------------------- /src/ref/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/logbf.c -------------------------------------------------------------------------------- /src/ref/lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/lrint.c -------------------------------------------------------------------------------- /src/ref/lrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/lrintf.c -------------------------------------------------------------------------------- /src/ref/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/lround.c -------------------------------------------------------------------------------- /src/ref/lroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/lroundf.c -------------------------------------------------------------------------------- /src/ref/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/modf.c -------------------------------------------------------------------------------- /src/ref/modff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/modff.c -------------------------------------------------------------------------------- /src/ref/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/nan.c -------------------------------------------------------------------------------- /src/ref/nanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/nanf.c -------------------------------------------------------------------------------- /src/ref/nearbyintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/nearbyintf.c -------------------------------------------------------------------------------- /src/ref/nextafter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/nextafter.c -------------------------------------------------------------------------------- /src/ref/nextafterf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/nextafterf.c -------------------------------------------------------------------------------- /src/ref/nexttoward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/nexttoward.c -------------------------------------------------------------------------------- /src/ref/remquo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/remquo.c -------------------------------------------------------------------------------- /src/ref/remquof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/remquof.c -------------------------------------------------------------------------------- /src/ref/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/rint.c -------------------------------------------------------------------------------- /src/ref/rintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/rintf.c -------------------------------------------------------------------------------- /src/ref/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/roundf.c -------------------------------------------------------------------------------- /src/ref/scalbln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/scalbln.c -------------------------------------------------------------------------------- /src/ref/scalblnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/scalblnf.c -------------------------------------------------------------------------------- /src/ref/scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/scalbn.c -------------------------------------------------------------------------------- /src/ref/scalbnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/scalbnf.c -------------------------------------------------------------------------------- /src/ref/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/sinh.c -------------------------------------------------------------------------------- /src/ref/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/sinhf.c -------------------------------------------------------------------------------- /src/ref/sinpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/sinpi.c -------------------------------------------------------------------------------- /src/ref/sinpif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/sinpif.c -------------------------------------------------------------------------------- /src/ref/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/sqrt.c -------------------------------------------------------------------------------- /src/ref/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/sqrtf.c -------------------------------------------------------------------------------- /src/ref/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/tan.c -------------------------------------------------------------------------------- /src/ref/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/tanf.c -------------------------------------------------------------------------------- /src/ref/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/tanh.c -------------------------------------------------------------------------------- /src/ref/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/tanhf.c -------------------------------------------------------------------------------- /src/ref/tanpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/tanpi.c -------------------------------------------------------------------------------- /src/ref/tanpif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/tanpif.c -------------------------------------------------------------------------------- /src/ref/vrd2_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/vrd2_cosh.c -------------------------------------------------------------------------------- /src/ref/vrd4_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/src/ref/vrd4_expm1.c -------------------------------------------------------------------------------- /src/version.txt: -------------------------------------------------------------------------------- 1 | 5.1.0 2 | -------------------------------------------------------------------------------- /tools/indent-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amd/aocl-libm-ose/HEAD/tools/indent-options --------------------------------------------------------------------------------