|
ReactOS 0.4.16-dev-2357-g35d0dfe
|


Go to the source code of this file.
Functions | |
| ft_mem_alloc (FT_Memory memory, FT_Long size, FT_Error *p_error) | |
| ft_mem_qalloc (FT_Memory memory, FT_Long size, FT_Error *p_error) | |
| ft_mem_realloc (FT_Memory memory, FT_Long item_size, FT_Long cur_count, FT_Long new_count, void *block, FT_Error *p_error) | |
| ft_mem_qrealloc (FT_Memory memory, FT_Long item_size, FT_Long cur_count, FT_Long new_count, void *block, FT_Error *p_error) | |
| ft_mem_free (FT_Memory memory, const void *P) | |
| ft_mem_strdup (FT_Memory memory, const char *str, FT_Error *p_error) | |
| ft_mem_dup (FT_Memory memory, const void *address, FT_ULong size, FT_Error *p_error) | |
| ft_mem_strcpyn (char *dst, const char *src, FT_ULong size) | |
| #define FT_ALLOC | ( | ptr, | |
| size | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_ALLOC( ptr, size ) ) |
Definition at line 311 of file ftmemory.h.
| #define FT_ALLOC_MULT | ( | ptr, | |
| count, | |||
| item_size | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_ALLOC_MULT( ptr, count, item_size ) ) |
Definition at line 317 of file ftmemory.h.
Definition at line 270 of file ftmemory.h.
Definition at line 253 of file ftmemory.h.
| #define FT_ARRAY_MAX | ( | ptr | ) | ( FT_INT_MAX / sizeof ( *(ptr) ) ) |
Definition at line 268 of file ftmemory.h.
Definition at line 258 of file ftmemory.h.
Definition at line 249 of file ftmemory.h.
Definition at line 113 of file ftmemory.h.
Definition at line 112 of file ftmemory.h.
| #define FT_DUP | ( | dst, | |
| address, | |||
| size | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_DUP( dst, address, size ) ) |
Definition at line 378 of file ftmemory.h.
| #define FT_FREE | ( | ptr | ) | FT_MEM_FREE( ptr ) |
Definition at line 337 of file ftmemory.h.
Definition at line 160 of file ftmemory.h.
Definition at line 198 of file ftmemory.h.
Definition at line 237 of file ftmemory.h.
| #define FT_MEM_DUP | ( | dst, | |
| address, | |||
| size | |||
| ) | (dst) = ft_mem_dup( memory, (address), (FT_ULong)(size), &error ) |
Definition at line 375 of file ftmemory.h.
Definition at line 165 of file ftmemory.h.
Definition at line 240 of file ftmemory.h.
Definition at line 171 of file ftmemory.h.
Definition at line 279 of file ftmemory.h.
Definition at line 182 of file ftmemory.h.
Definition at line 214 of file ftmemory.h.
Definition at line 187 of file ftmemory.h.
Definition at line 295 of file ftmemory.h.
Definition at line 234 of file ftmemory.h.
Definition at line 231 of file ftmemory.h.
| #define FT_MEM_STRDUP | ( | dst, | |
| str | |||
| ) | (dst) = (char*)ft_mem_strdup( memory, (const char*)(str), &error ) |
Definition at line 369 of file ftmemory.h.
Definition at line 244 of file ftmemory.h.
| #define FT_NEW | ( | ptr | ) | FT_MEM_SET_ERROR( FT_MEM_NEW( ptr ) ) |
Definition at line 339 of file ftmemory.h.
| #define FT_NEW_ARRAY | ( | ptr, | |
| count | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) |
Definition at line 341 of file ftmemory.h.
Definition at line 66 of file ftmemory.h.
| #define FT_QALLOC | ( | ptr, | |
| size | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_QALLOC( ptr, size ) ) |
Definition at line 324 of file ftmemory.h.
| #define FT_QALLOC_MULT | ( | ptr, | |
| count, | |||
| item_size | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_QALLOC_MULT( ptr, count, item_size ) ) |
Definition at line 330 of file ftmemory.h.
| #define FT_QNEW | ( | ptr | ) | FT_MEM_SET_ERROR( FT_MEM_QNEW( ptr ) ) |
Definition at line 347 of file ftmemory.h.
| #define FT_QNEW_ARRAY | ( | ptr, | |
| count | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) |
Definition at line 350 of file ftmemory.h.
| #define FT_QREALLOC | ( | ptr, | |
| cursz, | |||
| newsz | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_QREALLOC( ptr, cursz, newsz ) ) |
Definition at line 327 of file ftmemory.h.
Definition at line 333 of file ftmemory.h.
| #define FT_QRENEW_ARRAY | ( | ptr, | |
| curcnt, | |||
| newcnt | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_RENEW_ARRAY( ptr, curcnt, newcnt ) ) |
Definition at line 353 of file ftmemory.h.
| #define FT_REALLOC | ( | ptr, | |
| cursz, | |||
| newsz | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_REALLOC( ptr, cursz, newsz ) ) |
Definition at line 314 of file ftmemory.h.
Definition at line 320 of file ftmemory.h.
| #define FT_RENEW_ARRAY | ( | ptr, | |
| curcnt, | |||
| newcnt | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_RENEW_ARRAY( ptr, curcnt, newcnt ) ) |
Definition at line 344 of file ftmemory.h.
Definition at line 43 of file ftmemory.h.
| #define FT_STRCPYN | ( | dst, | |
| src, | |||
| size | |||
| ) | ft_mem_strcpyn( (char*)dst, (const char*)(src), (FT_ULong)(size) ) |
Definition at line 390 of file ftmemory.h.
| #define FT_STRDUP | ( | dst, | |
| str | |||
| ) | FT_MEM_SET_ERROR( FT_MEM_STRDUP( dst, str ) ) |
Definition at line 372 of file ftmemory.h.
Definition at line 246 of file ftmemory.h.
Definition at line 49 of file ftutil.c.
Definition at line 178 of file ftutil.c.
Referenced by ft_mem_strdup().
Definition at line 169 of file ftutil.c.
Referenced by ft_mem_qrealloc(), FT_Stream_ExitFrame(), and FT_Stream_ReleaseFrame().
Definition at line 65 of file ftutil.c.
Referenced by ft_mem_alloc(), ft_mem_dup(), and FT_Stream_EnterFrame().
| ft_mem_qrealloc | ( | FT_Memory | memory, |
| FT_Long | item_size, | ||
| FT_Long | cur_count, | ||
| FT_Long | new_count, | ||
| void * | block, | ||
| FT_Error * | p_error | ||
| ) |
Definition at line 113 of file ftutil.c.
Referenced by ft_mem_realloc().
| ft_mem_realloc | ( | FT_Memory | memory, |
| FT_Long | item_size, | ||
| FT_Long | cur_count, | ||
| FT_Long | new_count, | ||
| void * | block, | ||
| FT_Error * | p_error | ||
| ) |
Definition at line 91 of file ftutil.c.
Definition at line 196 of file ftutil.c.