ReactOS 0.4.16-dev-122-g325d74c
|
#include <ft2build.h>
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 303 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 309 of file ftmemory.h.
Definition at line 262 of file ftmemory.h.
Definition at line 244 of file ftmemory.h.
#define FT_ARRAY_MAX | ( | ptr | ) | ( FT_INT_MAX / sizeof ( *(ptr) ) ) |
Definition at line 260 of file ftmemory.h.
Definition at line 249 of file ftmemory.h.
Definition at line 240 of file ftmemory.h.
Definition at line 104 of file ftmemory.h.
Definition at line 103 of file ftmemory.h.
#define FT_DUP | ( | dst, | |
address, | |||
size | |||
) | FT_MEM_SET_ERROR( FT_MEM_DUP( dst, address, size ) ) |
Definition at line 370 of file ftmemory.h.
#define FT_FREE | ( | ptr | ) | FT_MEM_FREE( ptr ) |
Definition at line 329 of file ftmemory.h.
Definition at line 151 of file ftmemory.h.
Definition at line 189 of file ftmemory.h.
Definition at line 228 of file ftmemory.h.
#define FT_MEM_DUP | ( | dst, | |
address, | |||
size | |||
) | (dst) = ft_mem_dup( memory, (address), (FT_ULong)(size), &error ) |
Definition at line 367 of file ftmemory.h.
Definition at line 156 of file ftmemory.h.
Definition at line 231 of file ftmemory.h.
Definition at line 162 of file ftmemory.h.
Definition at line 271 of file ftmemory.h.
Definition at line 173 of file ftmemory.h.
Definition at line 205 of file ftmemory.h.
Definition at line 178 of file ftmemory.h.
Definition at line 287 of file ftmemory.h.
Definition at line 225 of file ftmemory.h.
Definition at line 222 of file ftmemory.h.
#define FT_MEM_STRDUP | ( | dst, | |
str | |||
) | (dst) = (char*)ft_mem_strdup( memory, (const char*)(str), &error ) |
Definition at line 361 of file ftmemory.h.
Definition at line 235 of file ftmemory.h.
#define FT_NEW | ( | ptr | ) | FT_MEM_SET_ERROR( FT_MEM_NEW( ptr ) ) |
Definition at line 331 of file ftmemory.h.
#define FT_NEW_ARRAY | ( | ptr, | |
count | |||
) | FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) |
Definition at line 333 of file ftmemory.h.
#define FT_QALLOC | ( | ptr, | |
size | |||
) | FT_MEM_SET_ERROR( FT_MEM_QALLOC( ptr, size ) ) |
Definition at line 316 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 322 of file ftmemory.h.
#define FT_QNEW | ( | ptr | ) | FT_MEM_SET_ERROR( FT_MEM_QNEW( ptr ) ) |
Definition at line 339 of file ftmemory.h.
#define FT_QNEW_ARRAY | ( | ptr, | |
count | |||
) | FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) |
Definition at line 342 of file ftmemory.h.
#define FT_QREALLOC | ( | ptr, | |
cursz, | |||
newsz | |||
) | FT_MEM_SET_ERROR( FT_MEM_QREALLOC( ptr, cursz, newsz ) ) |
Definition at line 319 of file ftmemory.h.
Definition at line 325 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 345 of file ftmemory.h.
#define FT_REALLOC | ( | ptr, | |
cursz, | |||
newsz | |||
) | FT_MEM_SET_ERROR( FT_MEM_REALLOC( ptr, cursz, newsz ) ) |
Definition at line 306 of file ftmemory.h.
Definition at line 312 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 336 of file ftmemory.h.
Definition at line 42 of file ftmemory.h.
#define FT_STRCPYN | ( | dst, | |
src, | |||
size | |||
) | ft_mem_strcpyn( (char*)dst, (const char*)(src), (FT_ULong)(size) ) |
Definition at line 382 of file ftmemory.h.
#define FT_STRDUP | ( | dst, | |
str | |||
) | FT_MEM_SET_ERROR( FT_MEM_STRDUP( dst, str ) ) |
Definition at line 364 of file ftmemory.h.
Definition at line 237 of file ftmemory.h.
Definition at line 50 of file ftutil.c.
Definition at line 179 of file ftutil.c.
Referenced by ft_mem_strdup().
Definition at line 170 of file ftutil.c.
Referenced by ft_mem_qrealloc(), FT_Stream_ExitFrame(), and FT_Stream_ReleaseFrame().
Definition at line 66 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 114 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 92 of file ftutil.c.
Definition at line 197 of file ftutil.c.