Home
last modified time | relevance | path

Searched refs:elem (Results 1 – 25 of 43) sorted by relevance

12

/PHP-8.0/ext/gd/libgd/
H A Dgdcache.c79 elem = head->mru; in gdCacheDelete()
80 while (elem) in gdCacheDelete()
83 prev = elem; in gdCacheDelete()
84 elem = elem->next; in gdCacheDelete()
97 elem = head->mru; in gdCacheGet()
98 while (elem) in gdCacheGet()
112 prev = elem; in gdCacheGet()
113 elem = elem->next; in gdCacheGet()
130 elem = prev; in gdCacheGet()
135 head->mru = elem; in gdCacheGet()
[all …]
/PHP-8.0/ext/spl/
H A Dspl_dllist.c41 #define SPL_LLIST_RC(elem) Z_EXTRA((elem)->data) argument
43 #define SPL_LLIST_DELREF(elem) if (!--SPL_LLIST_RC(elem)) { \ argument
44 efree(elem); \
47 #define SPL_LLIST_CHECK_DELREF(elem) if ((elem) && !--SPL_LLIST_RC(elem)) { \ argument
48 efree(elem); \
51 #define SPL_LLIST_ADDREF(elem) SPL_LLIST_RC(elem)++ argument
52 #define SPL_LLIST_CHECK_ADDREF(elem) if (elem) SPL_LLIST_RC(elem)++ argument
195 elem->prev = NULL; in spl_ptr_llist_unshift()
206 llist->head = elem; in spl_ptr_llist_unshift()
210 llist->ctor(elem); in spl_ptr_llist_unshift()
[all …]
H A Dspl_heap.c104 zval_ptr_dtor((zval *) elem); in spl_ptr_heap_zval_dtor()
109 Z_TRY_ADDREF_P((zval *) elem); in spl_ptr_heap_zval_ctor()
147 Z_TRY_ADDREF(elem->data); in spl_pqueue_extract_helper()
149 Z_TRY_ADDREF(elem->priority); in spl_pqueue_extract_helper()
301 if (elem) { in spl_ptr_heap_delete_top()
520 zval elem; in spl_heap_object_get_debug_info() local
526 Z_TRY_ADDREF_P(elem); in spl_heap_object_get_debug_info()
639 spl_pqueue_elem elem; in PHP_METHOD() local
664 spl_pqueue_elem elem; in PHP_METHOD() local
692 spl_pqueue_elem *elem; in PHP_METHOD() local
[all …]
/PHP-8.0/ext/simplexml/tests/
H A D024.phpt11 <elem attr1='11' attr2='12' attr3='13'/>
12 <elem attr1='21' attr2='22' attr3='23'/>
13 <elem attr1='31' attr2='32' attr3='33'/>
27 test('elem/@attr2');
30 test('elem[2]/@attr2');
34 ===elem/@attr2===
163 ===elem[2]/@attr2===
H A Dbug72957.phpt8 $xml = new SimpleXMLElement('<root><elem>Text</elem></root>');
/PHP-8.0/Zend/
H A Dzend_ptr_stack.c40 void *elem; in zend_ptr_stack_n_push() local
46 elem = va_arg(ptr, void *); in zend_ptr_stack_n_push()
48 *(stack->top_element++) = elem; in zend_ptr_stack_n_push()
58 void **elem; in zend_ptr_stack_n_pop() local
62 elem = va_arg(ptr, void **); in zend_ptr_stack_n_pop()
63 *elem = *(--stack->top_element); in zend_ptr_stack_n_pop()
/PHP-8.0/ext/date/tests/
H A Ddate_sun_info_003.phpt9 foreach ($sun_info as $key => $elem ) {
10 echo "$key: " . date("H:i:s", $elem) . "\n";
16 foreach ($sun_info as $key => $elem ) {
17 echo "$key: " . date("H:i:s", $elem) . "\n";
H A Ddate_sun_info_002.phpt7 foreach ($sun_info as $key => $elem )
9 echo date( 'Y-m-d H:i:s T', $elem ), " ", $key, "\n";
/PHP-8.0/ext/xml/tests/
H A Dxml_closures_001.phpt9 $start_element = function ($xp, $elem, $attribs)
11 print "<$elem";
20 $end_element = function ($xp, $elem)
22 print "</$elem>\n";
H A Dxml004.phpt26 function start_element($xp, $elem, $attribs)
28 print "<$elem";
37 function end_element($xp, $elem)
39 print "</$elem>\n";
/PHP-8.0/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp388 zval *elem; in umsg_format_helper() local
395 ZVAL_DEREF(elem); in umsg_format_helper()
471 double d = zval_get_double(elem); in umsg_format_helper()
479 if (Z_TYPE_P(elem) == IS_DOUBLE) { in umsg_format_helper()
486 tInt32 = (int32_t)Z_DVAL_P(elem); in umsg_format_helper()
489 if (Z_LVAL_P(elem) > INT32_MAX || in umsg_format_helper()
490 Z_LVAL_P(elem) < INT32_MIN) { in umsg_format_helper()
495 tInt32 = (int32_t)Z_LVAL_P(elem); in umsg_format_helper()
507 if (Z_TYPE_P(elem) == IS_DOUBLE) { in umsg_format_helper()
518 tInt64 = (int64_t)Z_LVAL_P(elem); in umsg_format_helper()
[all …]
/PHP-8.0/ext/dom/tests/
H A Dbug67474.phpt18 $elem = $doc->documentElement;
19 $list = $elem->getElementsByTagNameNS('', 'a');
21 $list = $elem->getElementsByTagNameNS(null, 'a');
H A Ddomelement.phpt75 echo 'Element Name: '.(($elem = $dom->getElementByID('n1'))?$elem->localName:'Not Found')."\n";
78 echo 'Element Name: '.(($elem = $dom->getElementByID('n1'))?$elem->localName:'Not Found')."\n";
80 echo 'Element Name: '.(($elem = $dom->getElementByID('n3'))?$elem->nodeName:'Not Found')."\n";
85 echo 'Element Name: '.(($elem = $dom->getElementByID('n3'))?$elem->nodeName:'Not Found')."\n";
H A Ddom002.phpt19 foreach ($elems as $elem) {
20 var_dump($elem->nodeName);
21 dump($elem->childNodes);
H A Dbug34276.phpt14 foreach ($elems as $elem) {
15 var_dump($elem->nodeName);
16 dump($elem->childNodes);
/PHP-8.0/ext/sysvmsg/tests/
H A D006.phpt12 foreach ($tests as $elem) {
13 echo @"Sending/receiving '$elem':\n";
15 var_dump(msg_send($queue, 1, $elem, false));
23 var_dump($elem == $msg);
24 var_dump($elem === $msg);
/PHP-8.0/ext/standard/tests/array/
H A Dbug22463.phpt10 function cb($v, $elem) {
11 return $v + a($elem);
H A Dbug35821.phpt13 public static function CallBack(Element $elem)
15 $elem->ThrowException();
/PHP-8.0/ext/spl/tests/
H A Dbug65387.phpt11 $it2 = new CallbackFilterIterator($it, function($elem) use(&$it2) {
19 $this->it = new CallbackFilterIterator($it, function($elem) {
27 $it2 = new RecursiveCallbackFilterIterator($it, function($elem) use(&$it2) {
H A Ddllist_004.phpt29 foreach ($stack as $elem) {
30 echo "[$elem]\n";
H A Ddllist_005.phpt29 foreach ($queue as $elem) {
30 echo "[$elem]\n";
/PHP-8.0/ext/sockets/
H A Dconversions.c102 int *elem; in param_get_bool() local
104 return *elem; in param_get_bool()
214 zval *elem; in from_array_iterate() local
226 func(elem, i, args, ctx); in from_array_iterate()
245 zval *elem; in from_zval_write_aggregation() local
704 zval *elem; in from_zval_write_sockaddr_aux() local
918 zval *elem; in from_zval_write_control_array() local
1018 zval *elem, tmp; in to_zval_read_control_array() local
1203 zval elem; in to_zval_read_iov() local
1355 if (Z_TYPE_P(elem) == IS_OBJECT && Z_OBJCE_P(elem) == socket_ce) { in from_zval_write_fd_array_aux()
[all …]
/PHP-8.0/scripts/dev/
H A Dbless_tests.php104 foreach ($diff as $elem) {
105 if ($elem->type == DiffElem::TYPE_KEEP) {
106 $result[] = $elem->old;
107 } else if ($elem->type == DiffElem::TYPE_ADD) {
108 $result[] = normalizeOutput($elem->new);
/PHP-8.0/Zend/tests/list/
H A Dlist_reference_008.phpt15 * $a is first set as a reference to the 0'th elem, '1'
16 * $a is then set to the value of the 1'st elem, '2'
/PHP-8.0/ext/com_dotnet/
H A Dcom_typeinfo.c571 ELEMDESC *elem = &func->lprgelemdescParam[j]; in php_com_process_typeinfo() local
573 php_printf("\t\t/* %s [%d] ", vt_to_string(elem->tdesc.vt), elem->tdesc.vt); in php_com_process_typeinfo()
575 if (elem->paramdesc.wParamFlags & PARAMFLAG_FIN) in php_com_process_typeinfo()
577 if (elem->paramdesc.wParamFlags & PARAMFLAG_FOUT) in php_com_process_typeinfo()
580 if (elem->tdesc.vt == VT_PTR) { in php_com_process_typeinfo()
583 vt_to_string(elem->tdesc.lptdesc->vt), in php_com_process_typeinfo()
584 elem->tdesc.lptdesc->vt in php_com_process_typeinfo()
597 elem->tdesc.vt == VT_PTR ? "&$" : "$", in php_com_process_typeinfo()

Completed in 88 milliseconds

12