_size 2363 Zend/zend_alloc.c # define _ZEND_BIN_ALLOCATOR(_num, _size, _elements, _pages, x, y) \ _size 2364 Zend/zend_alloc.c ZEND_API void* ZEND_FASTCALL _emalloc_ ## _size(void) { \ _size 2365 Zend/zend_alloc.c ZEND_MM_CUSTOM_ALLOCATOR(_size); \ _size 2366 Zend/zend_alloc.c return zend_mm_alloc_small(AG(mm_heap), _size, _num ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC); \ _size 2386 Zend/zend_alloc.c # define _ZEND_BIN_FREE(_num, _size, _elements, _pages, x, y) \ _size 2387 Zend/zend_alloc.c ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *ptr) { \ _size 2400 Zend/zend_alloc.c # define _ZEND_BIN_FREE(_num, _size, _elements, _pages, x, y) \ _size 2401 Zend/zend_alloc.c ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *ptr) { \ _size 93 Zend/zend_alloc.h # define _ZEND_BIN_ALLOCATOR_DEF(_num, _size, _elements, _pages, x, y) \ _size 94 Zend/zend_alloc.h ZEND_API void* ZEND_FASTCALL _emalloc_ ## _size(void) ZEND_ATTRIBUTE_MALLOC; _size 101 Zend/zend_alloc.h # define _ZEND_BIN_ALLOCATOR_SELECTOR_START(_num, _size, _elements, _pages, size, y) \ _size 102 Zend/zend_alloc.h ((size <= _size) ? _emalloc_ ## _size() : _size 103 Zend/zend_alloc.h # define _ZEND_BIN_ALLOCATOR_SELECTOR_END(_num, _size, _elements, _pages, size, y) \ _size 118 Zend/zend_alloc.h # define _ZEND_BIN_DEALLOCATOR_DEF(_num, _size, _elements, _pages, x, y) \ _size 119 Zend/zend_alloc.h ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *); _size 126 Zend/zend_alloc.h # define _ZEND_BIN_DEALLOCATOR_SELECTOR_START(_num, _size, _elements, _pages, ptr, size) \ _size 127 Zend/zend_alloc.h if (size <= _size) { _efree_ ## _size(ptr); } else