Lines Matching refs:p
60 #define ZEND_FAST_ALLOC(p, type, fc_type) \
64 if (((p) = (type *) AG(fast_cache_list_head)[fc_type])) { \
68 (p) = (type *) emalloc(sizeof(type)); \
74 #define ZEND_FAST_FREE(p, fc_type) \
78 …((zend_fast_cache_list_entry *) (p))->next = (zend_fast_cache_list_entry *) AG(fast_cache_list_hea…
79 AG(fast_cache_list_head)[fc_type] = (zend_fast_cache_list_entry *) (p); \
82 #define ZEND_FAST_ALLOC_REL(p, type, fc_type) \
83 ZEND_FAST_ALLOC(p, type, fc_type)
85 #define ZEND_FAST_FREE_REL(p, fc_type) \
86 ZEND_FAST_FREE(p, fc_type)
91 #define ZEND_FAST_ALLOC(p, type, fc_type) \
92 (p) = (type *) emalloc(sizeof(type))
94 #define ZEND_FAST_FREE(p, fc_type) \
95 efree(p)
97 #define ZEND_FAST_ALLOC_REL(p, type, fc_type) \
98 (p) = (type *) emalloc_rel(sizeof(type))
100 #define ZEND_FAST_FREE_REL(p, fc_type) \
101 efree_rel(p)