ReactOS 0.4.16-dev-942-g91fadeb
stubs.c File Reference
#include <stdint.h>
#include <intrin.h>
#include <malloc.h>
#include <math.h>
Include dependency graph for stubs.c:

Go to the source code of this file.

Macros

#define _USE_MATH_DEFINES
 

Functions

int __cdecl _crt_atexit (void(__cdecl *)(void))
 
int __cdecl atexit (void(__cdecl *function)(void))
 
void *__cdecl operator_new (size_t size)
 
void _cdecl operator_delete (void *mem)
 
int __cdecl __acrt_initialize_sse2 (void)
 
double fma (double x, double y, double z)
 
float fmaf (float x, float y, float z)
 
double log2 (double x)
 
float log2f (float x)
 
long int lrint (double x)
 
long int lrintf (float x)
 

Macro Definition Documentation

◆ _USE_MATH_DEFINES

#define _USE_MATH_DEFINES

Definition at line 5 of file stubs.c.

Function Documentation

◆ __acrt_initialize_sse2()

int __cdecl __acrt_initialize_sse2 ( void  )

Definition at line 32 of file stubs.c.

33{
34 return 0;
35}

◆ _crt_atexit()

int __cdecl _crt_atexit ( void(__cdecl *)(void function)

Definition at line 41 of file onexit.cpp.

42{
43 return _register_onexit_function(&__acrt_atexit_table, reinterpret_cast<_onexit_t>(function));
44}
int(__cdecl * _onexit_t)(void)
Definition: stdlib.h:28
int __cdecl _register_onexit_function(_onexit_table_t *const table, _onexit_t const function)
Definition: onexit.cpp:82
_onexit_table_t __acrt_atexit_table
Definition: onexit.cpp:25

Referenced by atexit(), test_call_exit(), and test_call_quick_exit().

◆ atexit()

int __cdecl atexit ( void(__cdecl *function)(void )

Definition at line 10 of file stubs.c.

11{
12 return _crt_atexit(function);
13}
int __cdecl _crt_atexit(void(__cdecl *)(void))
Definition: onexit.cpp:41

Referenced by main(), openlog(), Test_atexit(), and xmlInitParser().

◆ fma()

double fma ( double  x,
double  y,
double  z 
)

Definition at line 50 of file stubs.c.

51{
52 // Simplistic implementation
53 return (x * y) + z;
54}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLdouble GLdouble z
Definition: glext.h:5874

◆ fmaf()

float fmaf ( float  x,
float  y,
float  z 
)

Definition at line 56 of file stubs.c.

57{
58 // Simplistic implementation
59 return (x * y) + z;
60}

◆ log2()

double log2 ( double  x)

Definition at line 62 of file stubs.c.

63{
64 // Simplistic implementation: log2(x) = log(x) / log(2)
65 return log(x) * M_LOG2E;
66}
#define M_LOG2E
#define log(outFile, fmt,...)
Definition: util.h:15

Referenced by exp2(), log2f(), logbase2(), and pres_log().

◆ log2f()

float log2f ( float  x)

Definition at line 68 of file stubs.c.

69{
70 return (float)log2((double)x);
71}
double log2(double x)
Definition: stubs.c:62

◆ lrint()

◆ lrintf()

__CRT_INLINE long __cdecl lrintf ( float  x)

Definition at line 79 of file stubs.c.

80{
82 return 0;
83}

Referenced by PerformSampleRateConversion().

◆ operator_delete()

◆ operator_new()

void *__cdecl operator_new ( size_t  size)

Definition at line 15 of file stubs.c.

16{
17 return malloc(size);
18}
#define malloc
Definition: debug_ros.c:4
GLsizeiptr size
Definition: glext.h:5919