ReactOS 0.4.16-dev-981-g80eb313
|
#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 302 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 308 of file ftmemory.h.
Definition at line 261 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 259 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 369 of file ftmemory.h.
#define FT_FREE | ( | ptr | ) | FT_MEM_FREE( ptr ) |
Definition at line 328 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 366 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 270 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 286 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 360 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 330 of file ftmemory.h.
#define FT_NEW_ARRAY | ( | ptr, | |
count | |||
) | FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) |
Definition at line 332 of file ftmemory.h.
#define FT_QALLOC | ( | ptr, | |
size | |||
) | FT_MEM_SET_ERROR( FT_MEM_QALLOC( ptr, size ) ) |
Definition at line 315 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 321 of file ftmemory.h.
#define FT_QNEW | ( | ptr | ) | FT_MEM_SET_ERROR( FT_MEM_QNEW( ptr ) ) |
Definition at line 338 of file ftmemory.h.
#define FT_QNEW_ARRAY | ( | ptr, | |
count | |||
) | FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) |
Definition at line 341 of file ftmemory.h.
#define FT_QREALLOC | ( | ptr, | |
cursz, | |||
newsz | |||
) | FT_MEM_SET_ERROR( FT_MEM_QREALLOC( ptr, cursz, newsz ) ) |
Definition at line 318 of file ftmemory.h.
Definition at line 324 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 344 of file ftmemory.h.
#define FT_REALLOC | ( | ptr, | |
cursz, | |||
newsz | |||
) | FT_MEM_SET_ERROR( FT_MEM_REALLOC( ptr, cursz, newsz ) ) |
Definition at line 305 of file ftmemory.h.
Definition at line 311 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 335 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 381 of file ftmemory.h.
#define FT_STRDUP | ( | dst, | |
str | |||
) | FT_MEM_SET_ERROR( FT_MEM_STRDUP( dst, str ) ) |
Definition at line 363 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.