Home
last modified time | relevance | path

Searched refs:size (Results 1 – 25 of 30) sorted by relevance

12

/ext-fiber/src/
H A Dfiber_stack.c58 bool zend_fiber_stack_allocate(zend_fiber_stack *stack, size_t size) in zend_fiber_stack_allocate() argument
63 ZEND_ASSERT(size >= page_size + ZEND_FIBER_GUARD_PAGES * page_size); in zend_fiber_stack_allocate()
65 stack->size = (size + page_size - 1) / page_size * page_size; in zend_fiber_stack_allocate()
66 const size_t msize = stack->size + ZEND_FIBER_GUARD_PAGES * page_size; in zend_fiber_stack_allocate()
102 stack->valgrind = VALGRIND_STACK_REGISTER(base, base + stack->size); in zend_fiber_stack_allocate()
125 munmap(pointer, stack->size + ZEND_FIBER_GUARD_PAGES * page_size); in zend_fiber_stack_free()
H A Dfiber_asm.c27 extern fcontext_t make_fcontext(void *sp, size_t size, void (*fn)(transfer_t));
57 void *stack = (void *) ((uintptr_t) context->stack.pointer + context->stack.size); in zend_fiber_init_context()
59 context->self = make_fcontext(stack, context->stack.size, zend_fiber_trampoline); in zend_fiber_init_context()
/ext-fiber/boost/asm/
H A Dmake_ppc64_sysv_elf_gas.S92 .size make_fcontext,24
167 .size make_fcontext, .-make_fcontext
170 .size .make_fcontext, .-.L.make_fcontext
172 .size .make_fcontext, .-.make_fcontext
H A Dmake_s390x_sysv_elf_gas.S107 .size make_fcontext,.-make_fcontext
H A Djump_arm_aapcs_pe_armasm.asm37 ; load TIB to save/restore thread size and limit.
H A Dmake_x86_64_sysv_elf_gas.S79 .size make_fcontext,.-make_fcontext
H A Djump_ppc64_sysv_elf_gas.S92 .size jump_fcontext,24
192 .size jump_fcontext, .-jump_fcontext
213 .size .jump_fcontext, .-.L.jump_fcontext
215 .size .jump_fcontext, .-.jump_fcontext
H A Djump_i386_sysv_elf_gas.S80 .size jump_fcontext,.-jump_fcontext
H A Djump_x86_64_sysv_elf_gas.S88 .size jump_fcontext,.-jump_fcontext
H A Djump_ppc32_sysv_elf_gas.S198 .size jump_fcontext, .-jump_fcontext
H A Dmake_arm64_aapcs_elf_gas.S83 .size make_fcontext,.-make_fcontext
H A Dmake_riscv64_sysv_elf_gas.S89 .size make_fcontext,.-make_fcontext
H A Dmake_i386_sysv_elf_gas.S104 .size make_fcontext,.-make_fcontext
H A Dmake_arm_aapcs_elf_gas.S78 .size make_fcontext,.-make_fcontext
H A Djump_arm_aapcs_elf_gas.S85 .size jump_fcontext,.-jump_fcontext
H A Dmake_mips64_n64_elf_gas.S93 .size make_fcontext, .-make_fcontext
H A Djump_s390x_sysv_elf_gas.S155 .size jump_fcontext,.-jump_fcontext
H A Djump_arm64_aapcs_elf_gas.S112 .size jump_fcontext,.-jump_fcontext
H A Dmake_mips32_o32_elf_gas.S94 .size make_fcontext, .-make_fcontext
H A Dmake_arm_aapcs_pe_armasm.asm46 ; second arg of make_fcontext() == size of context-stack
H A Dmake_i386_ms_pe_masm.asm54 ; second arg of make_fcontext() == size of context-stack
56 ; negate stack size for LEA instruction (== substraction)
/ext-fiber/
H A Dfiber.h48 size_t size; member
128 zend_bool zend_fiber_stack_allocate(zend_fiber_stack *stack, size_t size);
/ext-fiber/tests/
H A Dout-of-memory-in-fiber.phpt27 Fatal error: Allowed memory size of %d bytes exhausted%s(tried to allocate %d bytes) in %sout-of-me…
H A Dout-of-memory-in-nested-fiber.phpt31 Fatal error: Allowed memory size of %d bytes exhausted%s(tried to allocate %d bytes) in %sout-of-me…
H A Dout-of-memory-in-recursive-fiber.phpt28 Fatal error: Allowed memory size of %d bytes exhausted%s(tried to allocate %d bytes) in %sout-of-me…

Completed in 36 milliseconds

12