Home
last modified time | relevance | path

Searched refs:head (Results 1 – 25 of 103) sorted by relevance

12345

/PHP-7.2/ext/gd/libgd/
H A Dgdcache.c63 gdCache_head_t *head; in gdCacheCreate() local
66 head->mru = NULL; in gdCacheCreate()
67 head->size = size; in gdCacheCreate()
71 return head; in gdCacheCreate()
79 elem = head->mru; in gdCacheDelete()
97 elem = head->mru; in gdCacheGet()
107 head->mru = elem; in gdCacheGet()
116 userdata = (*(head->gdCacheFetch)) (&(head->error), keydata); in gdCacheGet()
122 if (i < head->size) in gdCacheGet()
134 elem->next = head->mru; in gdCacheGet()
[all …]
/PHP-7.2/ext/gd/
H A Dgdcache.c64 gdCache_head_t *head; in gdCacheCreate() local
67 head->mru = NULL; in gdCacheCreate()
68 head->size = size; in gdCacheCreate()
72 return head; in gdCacheCreate()
80 elem = head->mru; in gdCacheDelete()
87 pefree((char *)head, 1); in gdCacheDelete()
97 elem = head->mru; in gdCacheGet()
109 head->mru = elem; in gdCacheGet()
118 userdata = (*(head->gdCacheFetch))(&(head->error), keydata); in gdCacheGet()
133 elem->next = head->mru; in gdCacheGet()
[all …]
/PHP-7.2/ext/dba/libcdb/
H A Dcdb_make.c61 c->head = 0; in cdb_make_start()
80 head = c->head; in cdb_make_addend()
81 if (!head || (head->num >= CDB_HPLIST)) { in cdb_make_addend()
83 if (!head) in cdb_make_addend()
85 head->num = 0; in cdb_make_addend()
86 head->next = c->head; in cdb_make_addend()
87 c->head = head; in cdb_make_addend()
89 head->hp[head->num].h = h; in cdb_make_addend()
90 head->hp[head->num].p = c->pos; in cdb_make_addend()
91 ++head->num; in cdb_make_addend()
[all …]
/PHP-7.2/ext/dom/tests/
H A DDOMDocument_saveHTML_variant1.phpt12 $head = $doc->createElement('head');
13 $head = $root->appendChild($head);
15 $title = $head->appendChild($title);
22 <html><head><title>This is the title</title></head></html>
H A DDOMDocument_saveHTML_basic.phpt15 $head = $doc->createElement('head');
16 $head = $root->appendChild($head);
18 $title = $head->appendChild($title);
24 <html><head><title>This is the title</title></head></html>
H A DDOMDocument_saveHTMLFile_basic.phpt16 $head = $doc->createElement('head');
17 $head = $root->appendChild($head);
19 $title = $head->appendChild($title);
29 <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>This is the t…
H A DDOMDocument_saveHTMLFile_formatOutput.phpt17 $head = $doc->createElement('head');
18 $head = $root->appendChild($head);
20 $title = $head->appendChild($title);
30 <html><head>
33 </head></html>
H A DDOMDocument_saveHTMLFile_error1.phpt15 $head = $doc->createElement('head');
16 $head = $root->appendChild($head);
18 $title = $head->appendChild($title);
H A DDOMDocument_saveHTMLFile_invalid_filename.phpt16 $head = $doc->createElement('head');
17 $head = $root->appendChild($head);
19 $title = $head->appendChild($title);
H A Dbug69679.phpt6 $html = "<!DOCTYPE html><html><head><meta charset='UTF-8'></head><body>U+0000 <span>\x0</span></bod…
12 <html><head><meta charset="UTF-8"></head><body>U+0000 <span></span></body></html>
H A Dbug35673.phpt7 $html = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <title>This is the title</title></head></html>';
17 <html><head>
20 </head></html>
H A Ddom005.phpt23 <html><head><title>Hello world</title></head><body>
29 <html><head><title>Hello world</title></head><body>
/PHP-7.2/ext/tidy/tests/
H A D010.phpt11 var_dump($a->head());
18 <head>
20 </head>
42 <head>
44 </head>
69 </head>
173 <head>
175 </head>
200 </head>
276 </head>
[all …]
H A D002.phpt13 <head>
15 </head>
H A D005.phpt13 <head>
15 </head>
H A D009.phpt14 <head>
16 </head>
H A D005-mb.phpt13 <head>
15 </head>
H A D003.phpt16 <head>
18 </head>
H A D017.phpt11 <head>
13 </head>
/PHP-7.2/Zend/
H A Dzend_llist.c28 l->head = NULL; in zend_llist_init()
45 l->head = tmp; in zend_llist_add_element()
58 tmp->next = l->head; in zend_llist_prepend_element()
60 if (l->head) { in zend_llist_prepend_element()
61 l->head->prev = tmp; in zend_llist_prepend_element()
65 l->head = tmp; in zend_llist_prepend_element()
138 l->head = NULL; in zend_llist_remove_tail()
156 ptr = src->head; in zend_llist_copy()
168 element=l->head; in zend_llist_apply_with_del()
218 l->head = elements[0]; in zend_llist_sort()
[all …]
/PHP-7.2/ext/xmlrpc/libxmlrpc/
H A Dqueue.c132 q->cursor = q->head; in Q_Init()
238 q->cursor = q->head; in Q_Head()
293 n = q->head; in Q_PushHead()
295 q->head = (node*)p; in Q_PushHead()
307 q->head->data = d; in Q_PushHead()
310 q->cursor = q->head; in Q_PushHead()
395 d = q->head->data; in Q_PopHead()
396 n = q->head->next; in Q_PopHead()
397 efree(q->head); in Q_PopHead()
404 q->head = (node *)n; in Q_PopHead()
[all …]
/PHP-7.2/main/streams/
H A Dfilter.c165 if (brigade->head) { in php_stream_bucket_prepend()
170 brigade->head = bucket; in php_stream_bucket_prepend()
186 brigade->head = bucket; in php_stream_bucket_append()
289 if (chain->head) { in php_stream_filter_prepend_ex()
294 chain->head = filter; in php_stream_filter_prepend_ex()
314 chain->head = filter; in php_stream_filter_append_ex()
338 while (brig_in.head) { in php_stream_filter_append_ex()
339 bucket = brig_in.head; in php_stream_filter_append_ex()
343 while (brig_out.head) { in php_stream_filter_append_ex()
388 chain->head = NULL; in _php_stream_filter_append()
[all …]
/PHP-7.2/ext/spl/
H A Dspl_dllist.c136 llist->head = NULL; in spl_ptr_llist_init()
204 if (llist->head) { in spl_ptr_llist_unshift()
210 llist->head = elem; in spl_ptr_llist_unshift()
231 llist->head = elem; in spl_ptr_llist_push()
286 spl_ptr_llist_element *head = llist->head; in spl_ptr_llist_first() local
288 if (head == NULL) { in spl_ptr_llist_first()
298 spl_ptr_llist_element *head = llist->head; in spl_ptr_llist_shift() local
300 if (head == NULL) { in spl_ptr_llist_shift()
305 if (head->next) { in spl_ptr_llist_shift()
311 llist->head = head->next; in spl_ptr_llist_shift()
[all …]
/PHP-7.2/ext/zip/lib/
H A Dzip_extra_field.c43 zip_extra_field_t *head, *prev, *def; in _zip_ef_clone() local
45 head = prev = NULL; in _zip_ef_clone()
50 _zip_ef_free(head); in _zip_ef_clone()
54 if (head == NULL) in _zip_ef_clone()
55 head = def; in _zip_ef_clone()
63 return head; in _zip_ef_clone()
70 zip_extra_field_t *head, *prev; in _zip_ef_delete_by_id() local
74 head = ef; in _zip_ef_delete_by_id()
76 for (; ef; ef=(prev ? prev->next : head)) { in _zip_ef_delete_by_id()
84 head = ef->next; in _zip_ef_delete_by_id()
[all …]
/PHP-7.2/ext/session/tests/
H A Dbug36459.phpt19 <head>
21 </head>
32 <head>
34 </head>

Completed in 72 milliseconds

12345