CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Core/MIPS/MIPSVFPUFallbacks.h
Views: 1401
1
#pragma once
2
3
// These are our old implementation of VFPU math functions, that don't make use of the
4
// accuracy-improving tables from #16984.
5
6
float vfpu_asin_fallback(float angle);
7
float vfpu_sqrt_fallback(float a);
8
float vfpu_rsqrt_fallback(float a);
9
float vfpu_sin_fallback(float a);
10
float vfpu_cos_fallback(float a);
11
void vfpu_sincos_fallback(float a, float &s, float &c);
12
float vfpu_rcp_fallback(float x);
13
float vfpu_log2_fallback(float x);
14
float vfpu_exp2_fallback(float x);
15
16