Home
last modified time | relevance | path

Searched refs:_size (Results 1 – 3 of 3) sorted by relevance

/PHP-7.4/Zend/
H A Dzend_alloc.h91 # define _ZEND_BIN_ALLOCATOR_DEF(_num, _size, _elements, _pages, x, y) \ argument
92 ZEND_API void* ZEND_FASTCALL _emalloc_ ## _size(void) ZEND_ATTRIBUTE_MALLOC;
99 # define _ZEND_BIN_ALLOCATOR_SELECTOR_START(_num, _size, _elements, _pages, size, y) \ argument
100 ((size <= _size) ? _emalloc_ ## _size() :
101 # define _ZEND_BIN_ALLOCATOR_SELECTOR_END(_num, _size, _elements, _pages, size, y) \ argument
116 # define _ZEND_BIN_DEALLOCATOR_DEF(_num, _size, _elements, _pages, x, y) \ argument
117 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *);
124 # define _ZEND_BIN_DEALLOCATOR_SELECTOR_START(_num, _size, _elements, _pages, ptr, size) \ argument
125 if (size <= _size) { _efree_ ## _size(ptr); } else
H A Dzend_arena.h140 static zend_always_inline zend_arena *zend_arena_create(size_t _size) in zend_arena_create() argument
H A Dzend_alloc.c2460 # define _ZEND_BIN_ALLOCATOR(_num, _size, _elements, _pages, x, y) \ argument
2461 ZEND_API void* ZEND_FASTCALL _emalloc_ ## _size(void) { \
2462 ZEND_MM_CUSTOM_ALLOCATOR(_size); \
2481 # define _ZEND_BIN_FREE(_num, _size, _elements, _pages, x, y) \ argument
2482 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *ptr) { \
2495 # define _ZEND_BIN_FREE(_num, _size, _elements, _pages, x, y) \ argument
2496 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *ptr) { \

Completed in 19 milliseconds