Searched refs:_size (Results 1 – 4 of 4) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_alloc.h | 85 # define _ZEND_BIN_ALLOCATOR_DEF(_num, _size, _elements, _pages, x, y) \ argument 86 ZEND_API ZEND_ATTRIBUTE_MALLOC void* ZEND_FASTCALL _emalloc_ ## _size(void); 93 # define _ZEND_BIN_ALLOCATOR_SELECTOR_START(_num, _size, _elements, _pages, size, y) \ argument 94 ((size <= _size) ? _emalloc_ ## _size() : 95 # define _ZEND_BIN_ALLOCATOR_SELECTOR_END(_num, _size, _elements, _pages, size, y) \ argument 110 # define _ZEND_BIN_DEALLOCATOR_DEF(_num, _size, _elements, _pages, x, y) \ argument 111 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *); 118 # define _ZEND_BIN_DEALLOCATOR_SELECTOR_START(_num, _size, _elements, _pages, ptr, size) \ argument 119 if (size <= _size) { _efree_ ## _size(ptr); } else
|
H A D | zend_hash.h | 994 #define ZEND_HASH_ELEMENT_EX(__ht, _idx, _size) \ argument 1000 #define ZEND_HASH_NEXT_ELEMENT(_el, _size) \ argument 1001 ((zval*)(((char*)(_el)) + (_size))) 1003 #define ZEND_HASH_PREV_ELEMENT(_el, _size) \ argument 1004 ((zval*)(((char*)(_el)) - (_size))) 1009 size_t _size = ZEND_HASH_ELEMENT_SIZE(__ht); \ 1017 size_t _size = ZEND_HASH_ELEMENT_SIZE(__ht); \ 1018 zval *_z = ZEND_HASH_ELEMENT_EX(__ht, _idx, _size); \ 1020 _z = ZEND_HASH_PREV_ELEMENT(_z, _size); \ 1028 size_t _size = ZEND_HASH_ELEMENT_SIZE(__ht); \ [all …]
|
H A D | zend_arena.h | 140 static zend_always_inline zend_arena *zend_arena_create(size_t _size) in zend_arena_create() argument
|
H A D | zend_alloc.c | 2534 # define _ZEND_BIN_ALLOCATOR(_num, _size, _elements, _pages, x, y) \ argument 2535 ZEND_API void* ZEND_FASTCALL _emalloc_ ## _size(void) { \ 2536 ZEND_MM_CUSTOM_ALLOCATOR(_size); \ 2555 # define _ZEND_BIN_FREE(_num, _size, _elements, _pages, x, y) \ argument 2556 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *ptr) { \ 2569 # define _ZEND_BIN_FREE(_num, _size, _elements, _pages, x, y) \ argument 2570 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *ptr) { \
|
Completed in 38 milliseconds