Home
last modified time | relevance | path

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

12

/PHP-7.4/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-7.4/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');
35 ===elem/@attr2===
164 ===elem[2]/@attr2===
H A Dbug72957.phpt8 $xml = new SimpleXMLElement('<root><elem>Text</elem></root>');
/PHP-7.4/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-7.4/ext/spl/
H A Dspl_dllist.c42 #define SPL_LLIST_DELREF(elem) if(!--(elem)->rc) { \ argument
43 efree(elem); \
46 #define SPL_LLIST_CHECK_DELREF(elem) if((elem) && !--(elem)->rc) { \ argument
47 efree(elem); \
50 #define SPL_LLIST_ADDREF(elem) (elem)->rc++ argument
51 #define SPL_LLIST_CHECK_ADDREF(elem) if(elem) (elem)->rc++ argument
197 elem->rc = 1; in spl_ptr_llist_unshift()
198 elem->prev = NULL; in spl_ptr_llist_unshift()
221 elem->rc = 1; in spl_ptr_llist_push()
223 elem->next = NULL; in spl_ptr_llist_push()
[all …]
H A Dspl_heap.c106 zval_ptr_dtor((zval *) elem); in spl_ptr_heap_zval_dtor()
111 Z_TRY_ADDREF_P((zval *) elem); in spl_ptr_heap_zval_ctor()
149 Z_TRY_ADDREF(elem->data); in spl_pqueue_extract_helper()
151 Z_TRY_ADDREF(elem->priority); in spl_pqueue_extract_helper()
309 if (elem) { in spl_ptr_heap_delete_top()
537 zval elem; in spl_heap_object_get_debug_info() local
543 Z_TRY_ADDREF_P(elem); in spl_heap_object_get_debug_info()
661 spl_pqueue_elem elem; in SPL_METHOD() local
687 spl_pqueue_elem elem; in SPL_METHOD() local
716 spl_pqueue_elem *elem; in SPL_METHOD() local
[all …]
/PHP-7.4/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-7.4/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-7.4/ext/mysqlnd/
H A Dmysqlnd_reverse_api.c73 MYSQLND_REVERSE_API * elem; in zval_to_mysqlnd() local
74 ZEND_HASH_FOREACH_PTR(&mysqlnd_api_ext_ht, elem) { in zval_to_mysqlnd()
75 if (elem->conversion_cb) { in zval_to_mysqlnd()
76 retval = elem->conversion_cb(zv); in zval_to_mysqlnd()
/PHP-7.4/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp391 zval *elem; in umsg_format_helper() local
473 double d = zval_get_double(elem); in umsg_format_helper()
481 if (Z_TYPE_P(elem) == IS_DOUBLE) { in umsg_format_helper()
488 tInt32 = (int32_t)Z_DVAL_P(elem); in umsg_format_helper()
491 if (Z_LVAL_P(elem) > INT32_MAX || in umsg_format_helper()
492 Z_LVAL_P(elem) < INT32_MIN) { in umsg_format_helper()
497 tInt32 = (int32_t)Z_LVAL_P(elem); in umsg_format_helper()
509 if (Z_TYPE_P(elem) == IS_DOUBLE) { in umsg_format_helper()
516 tInt64 = (int64_t)Z_DVAL_P(elem); in umsg_format_helper()
520 tInt64 = (int64_t)Z_LVAL_P(elem); in umsg_format_helper()
[all …]
/PHP-7.4/ext/sysvmsg/tests/
H A D006.phpt12 foreach ($tests as $elem) {
13 echo @"Sending/receiving '$elem':\n";
14 var_dump(msg_send($queue, 1, $elem, false));
19 var_dump($elem == $msg);
20 var_dump($elem === $msg);
/PHP-7.4/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-7.4/ext/dom/tests/
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-7.4/ext/sockets/
H A Dconversions.c109 int *elem; in param_get_bool() local
111 return *elem; in param_get_bool()
221 zval *elem; in from_array_iterate() local
233 func(elem, i, args, ctx); in from_array_iterate()
252 zval *elem; in from_zval_write_aggregation() local
711 zval *elem; in from_zval_write_sockaddr_aux() local
925 zval *elem; in from_zval_write_control_array() local
1025 zval *elem, tmp; in to_zval_read_control_array() local
1210 zval elem; in to_zval_read_iov() local
1217 ZVAL_NEW_STR(&elem, buf); in to_zval_read_iov()
[all …]
/PHP-7.4/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-7.4/ext/spl/tests/
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-7.4/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-7.4/ext/com_dotnet/
H A Dcom_typeinfo.c576 ELEMDESC *elem = &func->lprgelemdescParam[j]; in php_com_process_typeinfo() local
578 php_printf("\t\t/* %s [%d] ", vt_to_string(elem->tdesc.vt), elem->tdesc.vt); in php_com_process_typeinfo()
580 if (elem->paramdesc.wParamFlags & PARAMFLAG_FIN) in php_com_process_typeinfo()
582 if (elem->paramdesc.wParamFlags & PARAMFLAG_FOUT) in php_com_process_typeinfo()
585 if (elem->tdesc.vt == VT_PTR) { in php_com_process_typeinfo()
588 vt_to_string(elem->tdesc.lptdesc->vt), in php_com_process_typeinfo()
589 elem->tdesc.lptdesc->vt in php_com_process_typeinfo()
602 elem->tdesc.vt == VT_PTR ? "&$" : "$", in php_com_process_typeinfo()
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c259 xml_element* elem = ecalloc(1, sizeof(xml_element)); in xml_elem_new() local
260 if(elem) { in xml_elem_new()
261 Q_Init(&elem->children); in xml_elem_new()
262 Q_Init(&elem->attrs); in xml_elem_new()
263 simplestring_init(&elem->text); in xml_elem_new()
266 simplestring_addn(&elem->text, "", 0); in xml_elem_new()
268 return elem; in xml_elem_new()

Completed in 90 milliseconds

12