Home
last modified time | relevance | path

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

/PHP-8.0/ext/xml/tests/
H A Dbug30875.phpt14 <elt att="&ref;">a&ref;</elt>
/PHP-8.0/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.0/ext/spl/tests/
H A Dgh8366.phpt6 foreach ($it as $elt) {}
/PHP-8.0/ext/hash/
H A Dhash.c277 zval *elt; in php_hash_unserialize_spec() local
290 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
291 if (!elt || Z_TYPE_P(elt) != IS_STRING || Z_STRLEN_P(elt) != count) { in php_hash_unserialize_spec()
295 memcpy(buf + pos, Z_STRVAL_P(elt), count); in php_hash_unserialize_spec()
300 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
301 if (!elt || Z_TYPE_P(elt) != IS_LONG) { in php_hash_unserialize_spec()
305 val = (uint32_t) Z_LVAL_P(elt); in php_hash_unserialize_spec()
307 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
308 if (!elt || Z_TYPE_P(elt) != IS_LONG) { in php_hash_unserialize_spec()
312 val += ((uint64_t) Z_LVAL_P(elt)) << 32; in php_hash_unserialize_spec()
/PHP-8.0/ext/imap/
H A Dphp_imap.c3016 MESSAGECACHE *elt; in PHP_FUNCTION() local
3021 if (((elt = mail_elt (imap_le_struct->imap_stream, i))->sequence) && in PHP_FUNCTION()
3053 add_property_long(&myoverview, "size", elt->rfc822_size); in PHP_FUNCTION()
3056 add_property_long(&myoverview, "recent", elt->recent); in PHP_FUNCTION()
3057 add_property_long(&myoverview, "flagged", elt->flagged); in PHP_FUNCTION()
3058 add_property_long(&myoverview, "answered", elt->answered); in PHP_FUNCTION()
3059 add_property_long(&myoverview, "deleted", elt->deleted); in PHP_FUNCTION()
3060 add_property_long(&myoverview, "seen", elt->seen); in PHP_FUNCTION()
3061 add_property_long(&myoverview, "draft", elt->draft); in PHP_FUNCTION()
3062 add_property_long(&myoverview, "udate", mail_longdate(elt)); in PHP_FUNCTION()

Completed in 80 milliseconds