Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 25 of 29) sorted by relevance

12

/PHP-7.1/ext/xmlrpc/libxmlrpc/
H A Dqueue.c266 q->cursor = q->tail; in Q_Tail()
303 q->tail = q->head; in Q_PushHead()
348 p = q->tail; in Q_PushTail()
349 q->tail = (node *)n; in Q_PushTail()
362 q->tail->data = d; in Q_PushTail()
363 q->cursor = q->tail; in Q_PushTail()
441 d = q->tail->data; in Q_PopTail()
442 p = q->tail->prev; in Q_PopTail()
443 free(q->tail); in Q_PopTail()
449 q->tail = (node *)p; in Q_PopTail()
[all …]
H A Dqueue.h38 node *head, *tail, *cursor; member
84 #define Q_Iter_Tail_F(q) (q ? (q_iter)((queue*)q)->tail : NULL)
/PHP-7.1/Zend/
H A Dzend_llist.c29 l->tail = NULL; in zend_llist_init()
40 tmp->prev = l->tail; in zend_llist_add_element()
42 if (l->tail) { in zend_llist_add_element()
43 l->tail->next = tmp; in zend_llist_add_element()
47 l->tail = tmp; in zend_llist_add_element()
63 l->tail = tmp; in zend_llist_prepend_element()
81 (l)->tail = (current)->prev;\
124 l->head = l->tail = NULL; in zend_llist_clean()
141 l->tail = old_tail->prev; in zend_llist_remove_tail()
226 l->tail = elements[i-1]; in zend_llist_sort()
[all …]
H A Dzend_llist.h39 zend_llist_element *tail; member
/PHP-7.1/main/streams/
H A Dfilter.c198 brigade->tail = bucket; in php_stream_bucket_prepend()
210 bucket->prev = brigade->tail; in php_stream_bucket_append()
213 if (brigade->tail) { in php_stream_bucket_append()
218 brigade->tail = bucket; in php_stream_bucket_append()
322 chain->tail = filter; in php_stream_filter_prepend_ex()
339 filter->prev = chain->tail; in php_stream_filter_append_ex()
341 if (chain->tail) { in php_stream_filter_append_ex()
342 chain->tail->next = filter; in php_stream_filter_append_ex()
346 chain->tail = filter; in php_stream_filter_append_ex()
421 chain->tail = NULL; in _php_stream_filter_append()
[all …]
H A Dphp_stream_filter_api.h59 php_stream_bucket *head, *tail; member
102 php_stream_filter *head, *tail; member
/PHP-7.1/ext/spl/
H A Dspl_dllist.c137 llist->tail = NULL; in spl_ptr_llist_init()
207 llist->tail = elem; in spl_ptr_llist_unshift()
228 if (llist->tail) { in spl_ptr_llist_push()
234 llist->tail = elem; in spl_ptr_llist_push()
245 spl_ptr_llist_element *tail = llist->tail; in spl_ptr_llist_pop() local
247 if (tail == NULL) { in spl_ptr_llist_pop()
252 if (tail->prev) { in spl_ptr_llist_pop()
258 llist->tail = tail->prev; in spl_ptr_llist_pop()
263 llist->dtor(tail); in spl_ptr_llist_pop()
274 spl_ptr_llist_element *tail = llist->tail; in spl_ptr_llist_last() local
[all …]
/PHP-7.1/ext/zip/lib/
H A Dzip_extra_field.c151 zip_extra_field_t *ef2, *tt, *tail; in _zip_ef_merge() local
157 for (tail=to; tail->next; tail=tail->next) in _zip_ef_merge()
176 tail = tail->next = from; in _zip_ef_merge()
/PHP-7.1/win32/build/
H A Dconfigure.tail3 // tail end of configure
H A Dphpize.js.in261 C.Write(file_get_contents(PHP_DIR + "\\script\\configure.tail"));
H A DMakefile228 @copy win32\build\configure.tail $(BUILD_DIR_DEV)\script\ /y >nul
/PHP-7.1/Zend/tests/
H A Dlist_013.phpt2 Disallow tail empty elements in normal arrays
/PHP-7.1/ext/mysqli/tests/
H A Dbug54674.phpt2 Bug #54674 mysqlnd valid_sjis_(head|tail) is using invalid operator and range.
/PHP-7.1/ext/pcntl/
H A Dphp_pcntl.h87 struct php_pcntl_pending_signal *head, *tail, *spares; variable
H A Dpcntl.c532 PCNTL_G(head) = PCNTL_G(tail) = PCNTL_G(spares) = NULL; in PHP_RINIT_FUNCTION()
1397 if (PCNTL_G(head) && PCNTL_G(tail)) { in pcntl_signal_handler()
1398 PCNTL_G(tail)->next = psig; in pcntl_signal_handler()
1402 PCNTL_G(tail) = psig; in pcntl_signal_handler()
/PHP-7.1/sapi/cli/tests/
H A Dcli_process_title_unix.phpt23 $ps_output = shell_exec("ps -p $pid -o $ps_process_title_field | tail -n 1");
/PHP-7.1/ext/pdo_oci/
H A Dconfig.m411 PHP_PDO_OCI_TAIL1=`echo a | tail -n1 2>/dev/null`
13 PHP_PDO_OCI_TAIL1="tail -n1"
15 PHP_PDO_OCI_TAIL1="tail -1"
/PHP-7.1/ext/oci8/
H A Dconfig.m47 PHP_OCI8_TAIL1=`echo a | tail -n1 2>/dev/null`
9 PHP_OCI8_TAIL1="tail -n1"
11 PHP_OCI8_TAIL1="tail -1"
/PHP-7.1/ext/pdo_sqlite/
H A Dsqlite_driver.c183 const char *tail; in sqlite_handle_preparer() local
196 i = sqlite3_prepare(H->db, sql, sql_len, &S->stmt, &tail); in sqlite_handle_preparer()
/PHP-7.1/ext/fileinfo/libmagic/
H A Dcdf.c281 const void *p, size_t tail, int line) in cdf_check_stream_offset() argument
284 const char *e = ((const char *)p) + tail; in cdf_check_stream_offset()
852 size_t tail = (i << 1) + 1; in cdf_read_property_info() local
854 if (cdf_check_stream_offset(sst, h, p, tail * sizeof(uint32_t), in cdf_read_property_info()
857 ofs = CDF_GETUINT32(p, tail); in cdf_read_property_info()
/PHP-7.1/ext/bcmath/libbcmath/
H A Dconfigure1805 rm -f conftest.tail
1819 sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail
1821 mv conftest.tail conftest.vals
/PHP-7.1/ext/mbstring/oniguruma/
H A Dregexec.c2875 const UChar *tail; in bm_search_notrev() local
2883 tail = target_end - 1; in bm_search_notrev()
2884 tlen1 = tail - target; in bm_search_notrev()
2894 t = tail; in bm_search_notrev()
2909 t = tail; in bm_search_notrev()
2930 const UChar *tail; in bm_search() local
2936 tail = target_end - 1; in bm_search()
2941 t = tail; in bm_search()
2952 t = tail; in bm_search()
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_wait.c273 zend_extensions.tail = elm->prev; in phpdbg_webdata_decompress()
/PHP-7.1/main/
H A DSAPI.c611 l->tail = current->prev; in sapi_remove_header()
/PHP-7.1/ext/imap/
H A Dphp_imap.c681 void mail_free_foblist(FOBJECTLIST **foblist, FOBJECTLIST **tail) in mail_free_foblist() argument
694 *tail = NIL; in mail_free_foblist()
747 void mail_free_messagelist(MESSAGELIST **msglist, MESSAGELIST **tail) in mail_free_messagelist() argument
756 *tail = NIL; in mail_free_messagelist()

Completed in 90 milliseconds

12