Searched refs:_size (Results 1 – 5 of 5) sorted by relevance
/php-src/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 | 1003 #define ZEND_HASH_ELEMENT_EX(__ht, _idx, _size) \ argument 1009 #define ZEND_HASH_NEXT_ELEMENT(_el, _size) \ argument 1010 ((zval*)(((char*)(_el)) + (_size))) 1012 #define ZEND_HASH_PREV_ELEMENT(_el, _size) \ argument 1013 ((zval*)(((char*)(_el)) - (_size))) 1018 size_t _size = ZEND_HASH_ELEMENT_SIZE(__ht); \ 1026 size_t _size = ZEND_HASH_ELEMENT_SIZE(__ht); \ 1027 zval *_z = ZEND_HASH_ELEMENT_EX(__ht, _idx, _size); \ 1029 _z = ZEND_HASH_PREV_ELEMENT(_z, _size); \ 1037 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 | 2650 # define _ZEND_BIN_ALLOCATOR(_num, _size, _elements, _pages, _min_size, y) \ argument 2651 ZEND_API void* ZEND_FASTCALL _emalloc_ ## _size(void) { \ 2652 ZEND_MM_CUSTOM_ALLOCATOR(_size); \ 2653 if (_size < _min_size) { \ 2674 # define _ZEND_BIN_FREE(_num, _size, _elements, _pages, _min_size, y) \ argument 2675 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *ptr) { \ 2677 if (_size < _min_size) { \ 2692 # define _ZEND_BIN_FREE(_num, _size, _elements, _pages, _min_size, y) \ argument 2693 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *ptr) { \ 2695 if (_size < _min_size) { \
|
/php-src/ext/opcache/jit/ir/ |
H A D | ir_builder.h | 529 #define ir_ALLOCA(_size) _ir_ALLOCA(_ir_CTX, (_size)) argument 530 #define ir_AFREE(_size) _ir_AFREE(_ir_CTX, (_size)) argument
|
Completed in 45 milliseconds