Home
last modified time | relevance | path

Searched refs:top (Results 51 – 75 of 115) sorted by relevance

12345

/PHP-8.2/ext/ldap/tests/
H A Dldap_delete_ext.phpt20 "top",
H A Dldap_mod_add_error.phpt24 "top",
H A Dldap_modify_error.phpt24 "top",
H A Dldap_modify_batch_error.phpt33 "top",
H A Dldap_mod_ext.phpt108 string(3) "top"
/PHP-8.2/Zend/
H A Dzend_execute.h181 zval *top; member
200 …D_ASSERT_VM_STACK(stack) ZEND_ASSERT(stack->top > (zval *) stack && stack->end > (zval *) stack &&…
215 page->top = ZEND_VM_STACK_ELEMENTS(page); in zend_vm_stack_new_page()
306 EG(vm_stack_top) = prev->top; in zend_vm_stack_free_call_frame_ex()
H A Dzend_objects_API.h47 uint32_t top; member
H A Dzend_gc.c292 static zend_always_inline void gc_stack_push(gc_stack **stack, size_t *top, zend_refcounted *ref) in gc_stack_push() argument
294 if (UNEXPECTED(*top == GC_STACK_SEGMENT_SIZE)) { in gc_stack_push()
296 (*top) = 0; in gc_stack_push()
298 (*stack)->data[(*top)++] = ref; in gc_stack_push()
301 static zend_always_inline zend_refcounted* gc_stack_pop(gc_stack **stack, size_t *top) in gc_stack_pop() argument
303 if (UNEXPECTED((*top) == 0)) { in gc_stack_pop()
308 (*top) = GC_STACK_SEGMENT_SIZE - 1; in gc_stack_pop()
312 return (*stack)->data[--(*top)]; in gc_stack_pop()
/PHP-8.2/Zend/asm/
H A Dmake_ppc32_sysv_xcoff_gas.S71 # first arg of make_fcontext() == top address of context-function
H A Dmake_ppc64_sysv_xcoff_gas.S83 # first arg of make_fcontext() == top address of context-function
H A Dmake_ppc32_sysv_elf_gas.S62 # first arg of make_fcontext() == top address of context-function
H A Dmake_ppc64_sysv_elf_gas.S102 # first arg of make_fcontext() == top address of context-stack
/PHP-8.2/ext/pcre/pcre2lib/sljit/
H A DsljitUtils.c198 stack->top = stack->end; in sljit_allocate_stack()
292 stack->top = stack->end; in sljit_allocate_stack()
/PHP-8.2/ext/spl/
H A Dspl_dllist_arginfo.h92 ZEND_METHOD(SplDoublyLinkedList, top);
121 ZEND_ME(SplDoublyLinkedList, top, arginfo_class_SplDoublyLinkedList_top, ZEND_ACC_PUBLIC)
/PHP-8.2/ext/openssl/
H A Dphp_openssl.h77 int top; member
/PHP-8.2/ext/zend_test/
H A Dfiber.c87 EG(vm_stack_top) = stack->top + ZEND_CALL_FRAME_SLOT; in zend_test_fiber_execute()
91 execute_data = (zend_execute_data *) stack->top; in zend_test_fiber_execute()
/PHP-8.2/ext/sockets/tests/
H A Dsocket_sendrecvmsg_multi_msg-unix.phpt14 * WSARecvMsg (though only the top 6 bits seem to reported), but WSASendMsg
H A Dsocket_sendrecvmsg_multi_msg.phpt12 * WSARecvMsg (though only the top 6 bits seem to reported), but WSASendMsg
/PHP-8.2/ext/gd/libgd/
H A Dgd_gif_in.c191 int top, left; in gdImageCreateFromGifCtx() local
223 top = LM_to_uint(buf[2], buf[3]); in gdImageCreateFromGifCtx()
227 if (left + width > screen_width || top + height > screen_height) { in gdImageCreateFromGifCtx()
/PHP-8.2/ext/pcre/pcre2lib/
H A Dpcre2_jit_match.c55 local_stack.top = local_space + MACHINE_STACK_SIZE; in jit_machine_stack_exec()
/PHP-8.2/.github/scripts/
H A Dsetup-slapd.sh124 objectClass: top
/PHP-8.2/ext/opcache/
H A Dzend_accelerator_module.c510 …snprintf(buf, sizeof(buf), "%zu", (size_t)((char*)ZCSG(interned_strings).top - (char*)(accel_share…
512 …zeof(buf), "%zu", (size_t)((char*)ZCSG(interned_strings).end - (char*)ZCSG(interned_strings).top));
652 …add_assoc_long(&interned_strings_usage, "used_memory", (char*)ZCSG(interned_strings).top - (char*)…
653 …rings_usage, "free_memory", (char*)ZCSG(interned_strings).end - (char*)ZCSG(interned_strings).top);
H A DZendAccelerator.c434 zend_string *s, *top; in accel_interned_strings_restore_state() local
439 0, (char*)ZCSG(interned_strings).top - (char*)ZCSG(interned_strings).saved_top); in accel_interned_strings_restore_state()
442 ZCSG(interned_strings).top = ZCSG(interned_strings).saved_top; in accel_interned_strings_restore_state()
450 top = ZCSG(interned_strings).top; in accel_interned_strings_restore_state()
452 if (EXPECTED(s < top)) { in accel_interned_strings_restore_state()
468 } while (s < top); in accel_interned_strings_restore_state()
475 ZCSG(interned_strings).saved_top = ZCSG(interned_strings).top; in accel_interned_strings_save_state()
543 …if (UNEXPECTED((char*)ZCSG(interned_strings).end - (char*)ZCSG(interned_strings).top < STRTAB_STR_… in accel_new_interned_string()
551 s = ZCSG(interned_strings).top; in accel_new_interned_string()
560 ZCSG(interned_strings).top = STRTAB_NEXT(s); in accel_new_interned_string()
[all …]
/PHP-8.2/ext/json/
H A Djson_parser.y2 %code top {
/PHP-8.2/docs/
H A Dmailinglist-rules.md64 3. Do not top post. Place your answer underneath anyone you wish to quote

Completed in 108 milliseconds

12345