/PHP-7.4/ext/xmlrpc/libxmlrpc/ |
H A D | queue.c | 261 q->cursor = q->tail; in Q_Tail() 298 q->tail = q->head; in Q_PushHead() 343 p = q->tail; in Q_PushTail() 344 q->tail = (node *)n; in Q_PushTail() 357 q->tail->data = d; in Q_PushTail() 358 q->cursor = q->tail; in Q_PushTail() 436 d = q->tail->data; in Q_PopTail() 437 p = q->tail->prev; in Q_PopTail() 438 efree(q->tail); in Q_PopTail() 444 q->tail = (node *)p; in Q_PopTail() [all …]
|
H A D | queue.h | 38 node *head, *tail, *cursor; member 84 #define Q_Iter_Tail_F(q) (q ? (q_iter)((queue*)q)->tail : NULL)
|
/PHP-7.4/Zend/ |
H A D | zend_llist.c | 27 l->tail = NULL; in zend_llist_init() 38 tmp->prev = l->tail; in zend_llist_add_element() 40 if (l->tail) { in zend_llist_add_element() 41 l->tail->next = tmp; in zend_llist_add_element() 45 l->tail = tmp; in zend_llist_add_element() 61 l->tail = tmp; in zend_llist_prepend_element() 79 (l)->tail = (current)->prev;\ 122 l->head = l->tail = NULL; in zend_llist_clean() 139 l->tail = old_tail->prev; in zend_llist_remove_tail() 224 l->tail = elements[i-1]; in zend_llist_sort() [all …]
|
H A D | zend_llist.h | 37 zend_llist_element *tail; member
|
/PHP-7.4/main/streams/ |
H A D | filter.c | 170 brigade->tail = bucket; in php_stream_bucket_prepend() 182 bucket->prev = brigade->tail; in php_stream_bucket_append() 185 if (brigade->tail) { in php_stream_bucket_append() 190 brigade->tail = bucket; in php_stream_bucket_append() 295 chain->tail = filter; in php_stream_filter_prepend_ex() 312 filter->prev = chain->tail; in php_stream_filter_append_ex() 314 if (chain->tail) { in php_stream_filter_append_ex() 315 chain->tail->next = filter; in php_stream_filter_append_ex() 319 chain->tail = filter; in php_stream_filter_append_ex() 392 chain->tail = NULL; in _php_stream_filter_append() [all …]
|
H A D | php_stream_filter_api.h | 57 php_stream_bucket *head, *tail; member 100 php_stream_filter *head, *tail; member
|
/PHP-7.4/ext/spl/ |
H A D | spl_dllist.c | 135 llist->tail = NULL; in spl_ptr_llist_init() 226 if (llist->tail) { in spl_ptr_llist_push() 232 llist->tail = elem; in spl_ptr_llist_push() 243 spl_ptr_llist_element *tail = llist->tail; in spl_ptr_llist_pop() local 245 if (tail == NULL) { in spl_ptr_llist_pop() 250 if (tail->prev) { in spl_ptr_llist_pop() 256 llist->tail = tail->prev; in spl_ptr_llist_pop() 260 tail->prev = NULL; in spl_ptr_llist_pop() 262 llist->dtor(tail); in spl_ptr_llist_pop() 273 spl_ptr_llist_element *tail = llist->tail; in spl_ptr_llist_last() local [all …]
|
/PHP-7.4/win32/build/ |
H A D | configure.tail | 2 // tail end of configure
|
H A D | phpize.js.in | 266 C.Write(file_get_contents(PHP_DIR + "\\script\\configure.tail"));
|
H A D | Makefile | 243 @copy win32\build\configure.tail $(BUILD_DIR_DEV)\script\ /y >nul
|
/PHP-7.4/Zend/tests/ |
H A D | list_013.phpt | 2 Disallow tail empty elements in normal arrays
|
/PHP-7.4/Zend/tests/array_unpack/ |
H A D | in_destructuring.phpt | 6 [$head, ...$tail] = [1, 2, 3];
|
/PHP-7.4/ext/mysqli/tests/ |
H A D | bug54674.phpt | 2 Bug #54674 mysqlnd valid_sjis_(head|tail) is using invalid operator and range.
|
/PHP-7.4/ext/pcntl/ |
H A D | php_pcntl.h | 88 struct php_pcntl_pending_signal *head, *tail, *spares; variable
|
H A D | pcntl.c | 592 PCNTL_G(head) = PCNTL_G(tail) = PCNTL_G(spares) = NULL; in PHP_RINIT_FUNCTION() 1475 if (PCNTL_G(head) && PCNTL_G(tail)) { in pcntl_signal_handler() 1476 PCNTL_G(tail)->next = psig; in pcntl_signal_handler() 1480 PCNTL_G(tail) = psig; in pcntl_signal_handler()
|
/PHP-7.4/ext/pdo_oci/ |
H A D | config.m4 | 7 PHP_PDO_OCI_TAIL1=`echo a | tail -n1 2>/dev/null` 9 PHP_PDO_OCI_TAIL1="tail -n1" 11 PHP_PDO_OCI_TAIL1="tail -1"
|
/PHP-7.4/sapi/cli/tests/ |
H A D | cli_process_title_unix.phpt | 32 $ps_output = shell_exec("ps -p $pid -o $ps_process_title_field | tail -n 1");
|
/PHP-7.4/ext/mbstring/tests/ |
H A D | mb_str_split_utf8_utf16.phpt | 16 /* 123 string and 4-bytes length character 0xf09280a9 head without tail */
|
/PHP-7.4/ext/oci8/ |
H A D | config.m4 | 7 PHP_OCI8_TAIL1=`echo a | tail -n1 2>/dev/null` 9 PHP_OCI8_TAIL1="tail -n1" 11 PHP_OCI8_TAIL1="tail -1"
|
/PHP-7.4/ext/fileinfo/libmagic/ |
H A D | cdf.c | 310 const void *p, size_t tail, int line) in cdf_check_stream_offset() argument 313 const char *e = RCAST(const char *, p) + tail; in cdf_check_stream_offset() 857 size_t tail = (i << 1) + 1; in cdf_get_property_info_pos() local 865 if (cdf_check_stream_offset(sst, h, p, (tail + 1) * sizeof(uint32_t), in cdf_get_property_info_pos() 868 ofs = CDF_GETUINT32(p, tail); in cdf_get_property_info_pos()
|
/PHP-7.4/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 184 const char *tail; in sqlite_handle_preparer() local 197 i = sqlite3_prepare_v2(H->db, sql, sql_len, &S->stmt, &tail); in sqlite_handle_preparer()
|
/PHP-7.4/ext/sodium/ |
H A D | libsodium.c | 3443 char *tail; in PHP_FUNCTION() local 3447 tail = &ZSTR_VAL(padded)[xpadded_len]; in PHP_FUNCTION() 3452 tail[-i] = (tail[-i] & mask) | (0x80 & barrier_mask); in PHP_FUNCTION() 3494 const char *tail; in PHP_FUNCTION() local 3502 tail = &padded[padded_len - 1U]; in PHP_FUNCTION() 3505 c = tail[-i]; in PHP_FUNCTION()
|
/PHP-7.4/sapi/phpdbg/ |
H A D | phpdbg_wait.c | 274 zend_extensions.tail = elm->prev; in phpdbg_webdata_decompress()
|
/PHP-7.4/main/ |
H A D | SAPI.c | 605 l->tail = current->prev; in sapi_remove_header()
|
/PHP-7.4/ext/imap/ |
H A D | php_imap.c | 683 void mail_free_foblist(FOBJECTLIST **foblist, FOBJECTLIST **tail) in mail_free_foblist() argument 696 *tail = NIL; in mail_free_foblist() 749 void mail_free_messagelist(MESSAGELIST **msglist, MESSAGELIST **tail) in mail_free_messagelist() argument 758 *tail = NIL; in mail_free_messagelist()
|