Home
last modified time | relevance | path

Searched refs:f32 (Results 1 – 9 of 9) sorted by relevance

/TwlSDK-5.3.1/include/twl/dsp/common/
Dgraphics.h111 BOOL DSPi_ScalingCore(const void* src, void* dst, u16 img_width, u16 img_height, f32 rw, f32 ry, DS…
236 …DSP_Scaling(const void* src, void* dst, u16 img_width, u16 img_height, f32 rx, f32 ry, DSPGraphics… in DSP_Scaling()
254 …ne BOOL DSP_ScalingAsync(const void* src, void* dst, u16 img_width, u16 img_height, f32 rx, f32 ry, in DSP_ScalingAsync()
274 …P_ScalingEx(const void* src, void* dst, u16 img_width, u16 img_height, f32 rx, f32 ry, DSPGraphics… in DSP_ScalingEx()
294 …lingAsyncEx(const void* src, void* dst, u16 img_width, u16 img_height, f32 rx, f32 ry, DSPGraphics… in DSP_ScalingAsyncEx()
326 static inline f32 DSP_CalcScalingFactorF32(const u16 src_size, const u16 dst_size) in DSP_CalcScalingFactorF32()
329 return (dst_size / (f32)src_size + 0.0009f); in DSP_CalcScalingFactorF32()
334 return FX_F32_TO_FX32(dst_size / (f32)src_size + 0.0009f); in DSP_CalcScalingFactorFx32()
/TwlSDK-5.3.1/include/nitro/fx/
Dfx.h55 #define FX_FX32_TO_F32(x) ((f32)((x) / (f32)(1 << FX32_SHIFT)))
78 #define FX_FX64_TO_F32(x) ((f32)((x) / (f32)(1 << FX64_SHIFT)))
101 #define FX_FX64C_TO_F32(x) ((f32)((x) / (f32)((fx64c)1 << FX64C_SHIFT)))
127 #define FX_FX16_TO_F32(x) ((f32)((x) / (f32)(1 << FX16_SHIFT)))
/TwlSDK-5.3.1/build/libraries/dsp/ARM9.TWL/src/
Ddsp_graphics.c35 static BOOL CheckLimitation(f32 rx, f32 ry, DSPGraphicsScalingMode mode, u16 src_width);
50 static BOOL CheckLimitation(f32 rx, f32 ry, DSPGraphicsScalingMode mode, u16 src_width) in CheckLimitation()
298 BOOL DSPi_ScalingCore(const void* src, void* dst, u16 img_width, u16 img_height, f32 rx, f32 ry, DS… in DSPi_ScalingCore()
/TwlSDK-5.3.1/build/tools/makelst/
Dtypes.h62 typedef float f32; typedef
63 typedef volatile f32 vf32;
/TwlSDK-5.3.1/build/tools/stripdebug/
Dtypes.h62 typedef float f32; typedef
63 typedef volatile f32 vf32;
/TwlSDK-5.3.1/include/nitro/
Dtypes.h67 typedef float f32; typedef
68 typedef volatile f32 vf32;
/TwlSDK-5.3.1/build/libraries/fx/common/src/
Dfx.c103 f32 rad; in FX_Init()
107 rad = (f32)((3.14159265358979323846 * 2 / 4096) * i); in FX_Init()
/TwlSDK-5.3.1/build/demos/fx/test/src/
Dmain.c183 typedef double (*BINARY_FUNC_PTR) (f32 lhs, f32 rhs);
186 static double getErrorBtweenFx32AnbF32_Multiple(f32 lhs, f32 rhs) in getErrorBtweenFx32AnbF32_Multiple()
/TwlSDK-5.3.1/build/demos.TWL/dsp/scaling-2/src/
Dmain.c260 f32 factx, facty; in ExecScaling()