Home
last modified time | relevance | path

Searched refs:last (Results 26 – 50 of 296) sorted by relevance

12345678910>>...12

/PHP-7.0/ext/opcache/Optimizer/
H A Dnop_removal.c42 shiftlist = (uint32_t *)DO_ALLOCA(sizeof(uint32_t) * op_array->last); in zend_optimizer_nop_removal()
44 end = op_array->opcodes + op_array->last; in zend_optimizer_nop_removal()
73 op_array->last = new_count; in zend_optimizer_nop_removal()
74 end = op_array->opcodes + op_array->last; in zend_optimizer_nop_removal()
H A Dpass3.c59 zend_op *end = op_array->opcodes + op_array->last; in zend_optimizer_pass3()
66 jmp_hitlist = (uint32_t *)DO_ALLOCA(sizeof(uint32_t)*op_array->last); in zend_optimizer_pass3()
178 while (ZEND_OP1(opline).opline_num < op_array->last in zend_optimizer_pass3()
192 while (ZEND_OP2(opline).opline_num < op_array->last) { in zend_optimizer_pass3()
207 while (ZEND_OP2(opline).opline_num < op_array->last) { in zend_optimizer_pass3()
269 while (ZEND_OP2(opline).opline_num < op_array->last) { in zend_optimizer_pass3()
390 while (ZEND_OP2(opline).opline_num < op_array->last in zend_optimizer_pass3()
398 while (opline->extended_value < op_array->last in zend_optimizer_pass3()
/PHP-7.0/Zend/
H A Dbench.php119 $last = $n-1;
120 print "$Y[$last]\n";
152 $last = $n-1;
153 print "$Y[$last]\n";
168 $last = $n-1;
169 print "$Y[0] $Y[$last]\n";
207 $last = "foo_".($n-1);
208 print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n";
/PHP-7.0/ext/dom/tests/
H A Ddom001.phpt29 // The last node should be identical with the last entry in the children array
30 echo "--------- last\n";
31 $last = $rootnode->lastChild;
32 print_node($last);
34 // The parent of this last node is the root again
36 $parent = $last->parentNode;
129 --------- last
/PHP-7.0/ext/sqlite3/tests/
H A Dsqlite3_32_last_insert_rowid_param.phpt19 echo "Request last inserted id\n";
35 Request last inserted id
/PHP-7.0/ext/dba/tests/
H A Ddba_cdb.phpt34 string(23) "The last content string"
49 string(23) "The last content string"
H A Ddba_db1.phpt31 string(23) "The last content string"
48 string(23) "The last content string"
H A Ddba_db2.phpt31 string(23) "The last content string"
48 string(23) "The last content string"
H A Ddba_db3.phpt31 string(23) "The last content string"
48 string(23) "The last content string"
H A Ddba_db4_000.phpt35 string(23) "The last content string"
52 string(23) "The last content string"
H A Ddba_dbm.phpt31 string(23) "The last content string"
48 string(23) "The last content string"
H A Ddba_flatfile.phpt35 string(23) "The last content string"
52 string(23) "The last content string"
H A Ddba_inifile.phpt35 string(23) "The last content string"
52 string(23) "The last content string"
H A Ddba_ndbm.phpt31 string(23) "The last content string"
48 string(23) "The last content string"
/PHP-7.0/main/
H A Dreentrancy.c380 php_strtok_r(char *s, const char *delim, char **last) in php_strtok_r() argument
386 if (s == NULL && (s = *last) == NULL) in php_strtok_r()
406 *last = NULL; in php_strtok_r()
432 *last = s; in php_strtok_r()
H A Dphp_reentrancy.h105 PHPAPI char *php_strtok_r(char *s, const char *delim, char **last);
109 char *strtok_r(char *s, const char *delim, char **last);
/PHP-7.0/ext/oci8/tests/
H A Ddefine6.phpt34 echo "Test 1 - define last\n";
47 echo "Test 2 - define last with preset var\n";
125 Test 1 - define last
127 Test 2 - define last with preset var
H A Dcoll_018.phpt37 var_dump($coll1->getElem(2)); // this should be the last element
42 var_dump($coll1->getElem(0)); // this should be the last element
47 var_dump($coll1->getElem(0)); // this should still be the last element
/PHP-7.0/TSRM/
H A Dtsrm_strtok_r.h6 TSRM_API char *tsrm_strtok_r(char *s, const char *delim, char **last);
H A DTSRM.c455 tsrm_tls_entry *last=NULL; in ts_free_thread() local
472 if (last) { in ts_free_thread()
473 last->next = thread_resources->next; in ts_free_thread()
482 last = thread_resources; in ts_free_thread()
497 tsrm_tls_entry *last=NULL; in ts_free_worker_threads() local
514 if (last) { in ts_free_worker_threads()
515 last->next = thread_resources->next; in ts_free_worker_threads()
520 if (last) { in ts_free_worker_threads()
521 thread_resources = last->next; in ts_free_worker_threads()
527 last = thread_resources; in ts_free_worker_threads()
/PHP-7.0/ext/standard/tests/strings/
H A Dparse_str_basic3.phpt16 $s1 = "first=abc&a[]=123&a[]=false&b[]=str&c[]=3.5&a[]=last";
21 $s1 = "first=abc&a[]=123&a[]=false&b[]=str&c[]=3.5&a[]=last";
37 $s1 = "a[]=123&a[]=false&a[]=last";
106 string(4) "last"
129 string(4) "last"
175 string(4) "last"
/PHP-7.0/ext/dom/
H A Dnode.c484 xmlNode *nodep, *last = NULL; in dom_node_last_child_read() local
494 last = nodep->last; in dom_node_last_child_read()
497 if (!last) { in dom_node_last_child_read()
892 nodep->last = fragment->last; in _php_dom_insert_fragment()
916 fragment->last = NULL; in _php_dom_insert_fragment()
1041 parentp->last = child; in PHP_FUNCTION()
1043 child = parentp->last; in PHP_FUNCTION()
1046 parentp->last = new_child; in PHP_FUNCTION()
1286 nodep->last = child; in PHP_FUNCTION()
1288 child = nodep->last; in PHP_FUNCTION()
[all …]
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_arrays.h69 void *last = fpm_array_item(a, a->used - 1); in fpm_array_item_remove() local
72 memcpy(to_remove, last, a->sz); in fpm_array_item_remove()
/PHP-7.0/ext/standard/tests/file/
H A Dbug40501.csv2 backslashes (ex: 1)\",and it isn't the last element$
/PHP-7.0/tests/lang/
H A Dbug35382.phpt7 //last line comment

Completed in 49 milliseconds

12345678910>>...12