Home
last modified time | relevance | path

Searched refs:elt (Results 1 – 5 of 5) sorted by relevance

/PHP-8.2/ext/xml/tests/
H A Dbug30875.phpt12 <elt att="&ref;">a&ref;</elt>
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_events.c164 struct fpm_event_queue_s *elt; in fpm_event_queue_add() local
174 if (!(elt = malloc(sizeof(struct fpm_event_queue_s)))) { in fpm_event_queue_add()
178 elt->prev = NULL; in fpm_event_queue_add()
179 elt->next = NULL; in fpm_event_queue_add()
180 elt->ev = ev; in fpm_event_queue_add()
183 (*queue)->prev = elt; in fpm_event_queue_add()
184 elt->next = *queue; in fpm_event_queue_add()
186 *queue = elt; in fpm_event_queue_add()
/PHP-8.2/ext/spl/tests/
H A Dgh8366.phpt6 foreach ($it as $elt) {}
/PHP-8.2/ext/hash/
H A Dhash.c285 zval *elt; in php_hash_unserialize_spec() local
298 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
299 if (!elt || Z_TYPE_P(elt) != IS_STRING || Z_STRLEN_P(elt) != count) { in php_hash_unserialize_spec()
303 memcpy(buf + pos, Z_STRVAL_P(elt), count); in php_hash_unserialize_spec()
308 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
309 if (!elt || Z_TYPE_P(elt) != IS_LONG) { in php_hash_unserialize_spec()
313 val = (uint32_t) Z_LVAL_P(elt); in php_hash_unserialize_spec()
315 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
316 if (!elt || Z_TYPE_P(elt) != IS_LONG) { in php_hash_unserialize_spec()
320 val += ((uint64_t) Z_LVAL_P(elt)) << 32; in php_hash_unserialize_spec()
/PHP-8.2/ext/imap/
H A Dphp_imap.c2823 MESSAGECACHE *elt; in PHP_FUNCTION() local
2828 if (((elt = mail_elt (imap_conn_struct->imap_stream, i))->sequence) && in PHP_FUNCTION()
2860 add_property_long(&myoverview, "size", elt->rfc822_size); in PHP_FUNCTION()
2863 add_property_long(&myoverview, "recent", elt->recent); in PHP_FUNCTION()
2864 add_property_long(&myoverview, "flagged", elt->flagged); in PHP_FUNCTION()
2865 add_property_long(&myoverview, "answered", elt->answered); in PHP_FUNCTION()
2866 add_property_long(&myoverview, "deleted", elt->deleted); in PHP_FUNCTION()
2867 add_property_long(&myoverview, "seen", elt->seen); in PHP_FUNCTION()
2868 add_property_long(&myoverview, "draft", elt->draft); in PHP_FUNCTION()
2869 add_property_long(&myoverview, "udate", mail_longdate(elt)); in PHP_FUNCTION()

Completed in 28 milliseconds