| IVT
    | 
#include <new>#include "PerformanceLib.h"#include "OptimizedFunctions.h"#include <stdio.h>#include "OptimizedFunctionsList.h"Go to the source code of this file.
| Macros | |
| #define | OPT_DEFINE | 
| #define | LOAD_OPTIMIZED_FUNCTION(name) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_0(name) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_1(name, p1) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_2(name, p1, p2) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_3(name, p1, p2, p3) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_4(name, p1, p2, p3, p4) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_5(name, p1, p2, p3, p4, p5) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_5_RET(name, p1, p2, p3, p4, p5) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_8(name, p1, p2, p3, p4, p5, p6, p7, p8) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_9(name, p1, p2, p3, p4, p5, p6, p7, p8, p9) LOAD_OPTIMIZED_FUNCTION(name) | 
| #define | DECLARE_OPTIMIZED_FUNCTION_0(name) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_1(name, p1) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_2(name, p1, p2) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_3(name, p1, p2, p3) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_4(name, p1, p2, p3, p4) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_5(name, p1, p2, p3, p4, p5) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_5_RET(name, p1, p2, p3, p4, p5) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_8(name, p1, p2, p3, p4, p5, p6, p7, p8) Optimized##name = 0; | 
| #define | DECLARE_OPTIMIZED_FUNCTION_9(name, p1, p2, p3, p4, p5, p6, p7, p8, p9) Optimized##name = 0; | 
| Variables | |
| CPerformanceLibInitializer | performanceLibInitializer | 
| #define DECLARE_OPTIMIZED_FUNCTION_0 | ( | name | ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 176 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_0 | ( | name | ) | Optimized##name = 0; | 
Definition at line 176 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_1 | ( | name, | |
| p1 | |||
| ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 177 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_1 | ( | name, | |
| p1 | |||
| ) | Optimized##name = 0; | 
Definition at line 177 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_2 | ( | name, | |
| p1, | |||
| p2 | |||
| ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 178 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_2 | ( | name, | |
| p1, | |||
| p2 | |||
| ) | Optimized##name = 0; | 
Definition at line 178 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_3 | ( | name, | |
| p1, | |||
| p2, | |||
| p3 | |||
| ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 179 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_3 | ( | name, | |
| p1, | |||
| p2, | |||
| p3 | |||
| ) | Optimized##name = 0; | 
Definition at line 179 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_4 | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4 | |||
| ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 180 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_4 | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4 | |||
| ) | Optimized##name = 0; | 
Definition at line 180 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_5 | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4, | |||
| p5 | |||
| ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 181 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_5 | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4, | |||
| p5 | |||
| ) | Optimized##name = 0; | 
Definition at line 181 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_5_RET | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4, | |||
| p5 | |||
| ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 182 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_5_RET | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4, | |||
| p5 | |||
| ) | Optimized##name = 0; | 
Definition at line 182 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_8 | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4, | |||
| p5, | |||
| p6, | |||
| p7, | |||
| p8 | |||
| ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 183 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_8 | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4, | |||
| p5, | |||
| p6, | |||
| p7, | |||
| p8 | |||
| ) | Optimized##name = 0; | 
Definition at line 183 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_9 | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4, | |||
| p5, | |||
| p6, | |||
| p7, | |||
| p8, | |||
| p9 | |||
| ) | LOAD_OPTIMIZED_FUNCTION(name) | 
Definition at line 184 of file PerformanceLib.cpp.
| #define DECLARE_OPTIMIZED_FUNCTION_9 | ( | name, | |
| p1, | |||
| p2, | |||
| p3, | |||
| p4, | |||
| p5, | |||
| p6, | |||
| p7, | |||
| p8, | |||
| p9 | |||
| ) | Optimized##name = 0; | 
Definition at line 184 of file PerformanceLib.cpp.
| #define LOAD_OPTIMIZED_FUNCTION | ( | name | ) | Optimized##name = 0; | 
Definition at line 77 of file PerformanceLib.cpp.
| #define OPT_DEFINE | 
Definition at line 48 of file PerformanceLib.cpp.
| CPerformanceLibInitializer performanceLibInitializer | 
Definition at line 67 of file PerformanceLib.cpp.