OpenTTD
|
Some methods of Pool are placed here in order to reduce compilation time and binary size. More...
Go to the source code of this file.
Macros | |
#define | DEFINE_POOL_METHOD(type) |
Helper for defining the method's signature. | |
#define | INSTANTIATE_POOL_METHODS(name) |
Force instantiation of pool methods so we don't get linker errors. |
Functions | |
DEFINE_POOL_METHOD (inline) | |
Create a clean pool. | |
DEFINE_POOL_METHOD (inline void *) | |
Makes given index valid. | |
DEFINE_POOL_METHOD (void *) | |
Allocates new item. | |
DEFINE_POOL_METHOD (void) | |
Deallocates memory used by this index and marks item as free. |
Some methods of Pool are placed here in order to reduce compilation time and binary size.
Definition in file pool_func.hpp.
#define DEFINE_POOL_METHOD | ( | type | ) |
Helper for defining the method's signature.
type | The return type of the method. |
Definition at line 23 of file pool_func.hpp.
#define INSTANTIATE_POOL_METHODS | ( | name | ) |
Force instantiation of pool methods so we don't get linker errors.
Only methods accessed from methods defined in pool.hpp need to be forcefully instantiated.
Definition at line 224 of file pool_func.hpp.
DEFINE_POOL_METHOD | ( | inline | size_t | ) |
Create a clean pool.
Searches for first free index.
Resizes the pool so 'index' can be addressed.
name | The name for the pool. |
index | index we will allocate later |
Definition at line 31 of file pool_func.hpp.
DEFINE_POOL_METHOD | ( | inline void * | ) |
Makes given index valid.
size | size of item |
index | index of item |
Definition at line 101 of file pool_func.hpp.
References max().
DEFINE_POOL_METHOD | ( | void * | ) |
Allocates new item.
Allocates new item with given index.
size | size of item |
size | size of item |
index | index of item |
Definition at line 134 of file pool_func.hpp.
References error().
DEFINE_POOL_METHOD | ( | void | ) |
Deallocates memory used by this index and marks item as free.
Destroys all items in the pool and resets all member variables.
index | item to deallocate |
Definition at line 178 of file pool_func.hpp.