| /PHP_5_4/TSRM/ |
| H A D | TSRM.c | 448 tsrm_tls_entry *last=NULL; local 465 if (last) { 466 last->next = thread_resources->next; 475 last = thread_resources; 490 tsrm_tls_entry *last=NULL; local 507 if (last) { 508 last->next = thread_resources->next; 513 if (last) { 514 thread_resources = last->next; 520 last [all...] |
| H A D | tsrm_strtok_r.c | 17 char *tsrm_strtok_r(char *s, const char *delim, char **last) argument 22 s = *last; 38 *last = s; 41 *last = s + 1; 51 char *last; 54 token = tsrm_strtok_r(foo, "/\\", &last); 57 token = tsrm_strtok_r(NULL, "/\\", &last);
|
| /PHP_5_4/Zend/ |
| H A D | bench.php | 119 $last = $n-1; variable 120 print "$Y[$last]\n"; 152 $last = $n-1; variable 153 print "$Y[$last]\n"; 168 $last = $n-1; variable 169 print "$Y[0] $Y[$last]\n"; 207 $last = "foo_".($n-1); variable 208 print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n";
|
| H A D | zend_operators.c | 1717 int last=0; /* Shut up the compiler warning */ local 1743 last=LOWER_CASE; 1752 last=UPPER_CASE; 1761 last = NUMERIC; 1777 switch (last) {
|
| /PHP_5_4/ext/dom/examples/ |
| H A D | dom1.php | 24 // The last node should be identical with the last entry in the children array 25 echo "--------- last\n"; 26 $last = $rootnode->lastChild; variable 27 print_node($last); 29 // The parent of this last node is the root again 31 $parent = $last->parentNode;
|
| /PHP_5_4/ext/ereg/regex/ |
| H A D | debug.c | 25 register int last; local 30 fprintf(d, ", first %ld last %ld", (long)g->firststate, 67 last = -1; 70 if (last < 0) { 72 last = c; 75 if (last >= 0) { 76 if (last != c-1) 79 last = -1; 101 register int last; local 149 last [all...] |
| /PHP_5_4/ext/phar/ |
| H A D | shortarc.php | 125 $last = (binary)fread($fp, $read); variable 126 $m .= $last; 127 } while (strlen($last) && strlen($m) < $L[1]);
|
| H A D | phar.c | 1892 * the last parameter should be set to tell the thing to assume that filename is the full path, and only to check the 2109 char *tsrm_strtok_r(char *s, const char *delim, char **last) /* {{{ */ argument 2114 s = *last; 2132 *last = s; 2135 *last = s + 1; 2759 /* did we forget to get rid of cfp last time? */
|
| /PHP_5_4/main/ |
| H A D | mergesort.c | 74 #define ICOPY_LIST(src, dst, last) \ 77 while(src < last) 83 #define CCOPY_LIST(src, dst, last) \ 86 while (src < last) 111 u_char *list2, *list1, *p2, *p, *last, **p1; local 134 last = list2 + nmemb * size; 136 while (*EVAL(list2) != last) { 139 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) { 143 if (p2 != last) 229 last 268 u_char *f1, *f2, *s, *l2, *last, *p2; local [all...] |
| H A D | reentrancy.c | 380 php_strtok_r(char *s, const char *delim, char **last) argument 386 if (s == NULL && (s = *last) == NULL) 406 *last = NULL; 432 *last = s;
|
| H A D | main.c | 278 char *last = NULL; local 281 search_dir = php_strtok_r(path, ":", &last); 289 search_dir = php_strtok_r(NULL, ":", &last); 1789 /* 7.5 free last error information */
|
| /PHP_5_4/ |
| H A D | run-tests.php | 876 // Cleanup any left-over tmp files from last run. 2181 $last = 1; variable 2184 $last = 2; variable 2504 // Write over the last line to avoid random trailing chars on next echo 2520 // Write over the last line to avoid random trailing chars on next echo 2543 // Write over the last line to avoid random trailing chars on next echo
|
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_arrays.h | 69 void *last = fpm_array_item(a, a->used - 1); local 72 memcpy(to_remove, last, a->sz);
|
| H A D | fpm_env.c | 202 char *last = NULL; local 229 if (last == NULL || fpm_globals.argv[i] == last + 1) { 230 last = fpm_globals.argv[i] + strlen(fpm_globals.argv[i]); 238 if (last == NULL || environ[i] == last + 1) { 239 last = environ[i] + strlen(environ[i]); 243 if (first == NULL || last == NULL) { 247 fpm_env_argv_len = last - first;
|
| H A D | fpm_process_ctl.c | 360 struct timeval last, now; local 366 fpm_request_last_activity(last_idle_child, &last); 368 if (last.tv_sec < now.tv_sec - wp->config->pm_process_idle_timeout) {
|
| H A D | fpm_systemd.c | 16 static unsigned long int last=0; local 34 active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval); 40 active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval)) { 44 last = requests;
|
| /PHP_5_4/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_cp5022x.c | 40 mbfl_convert_filter last; member in struct:_mbfl_filt_conv_wchar_cp50220_ctx 582 ctx->last = *filt; 583 ctx->last.opaque = ctx; 584 ctx->last.data = filt->data; 587 filt->output_function = (int(*)(int, void *))ctx->last.filter_function; 588 filt->flush_function = (int(*)(void *))ctx->last.filter_flush; 589 filt->data = &ctx->last; 606 dest->data = &ctx->last;
|
| /PHP_5_4/ext/mbstring/oniguruma/ |
| H A D | st.c | 494 st_table_entry *ptr, *last, *tmp; local 499 last = 0; 516 last = ptr; 523 if (last == 0) { 527 last->next = ptr->next;
|
| /PHP_5_4/ext/dom/ |
| H A D | node.c | 517 xmlNode *nodep, *last = NULL; local 528 last = nodep->last; 533 if (!last) { 538 if (NULL == (*retval = php_dom_create_object(last, &ret, *retval, obj TSRMLS_CC))) { 964 nodep->last = fragment->last; 966 fragment->last->next = nextsib; 967 nextsib->prev = fragment->last; 981 if (node == fragment->last) { [all...] |
| /PHP_5_4/ext/session/ |
| H A D | mod_files.c | 241 /* check whether its last access was more than maxlifet ago */ 261 const char *p, *last; local 277 last = save_path; 280 argv[argc++] = last; 281 last = ++p; 285 argv[argc++] = last;
|
| /PHP_5_4/ext/standard/ |
| H A D | php_var.h | 45 void *last; member in struct:php_unserialize_data
|
| H A D | soundex.c | 32 int i, _small, str_len, code, last; local 71 last = -1; 82 last = soundex_table[code - 'A']; 89 if (code != last) { 93 last = code;
|
| /PHP_5_4/ext/pcre/pcrelib/ |
| H A D | pcre_get.c | 142 lastptr where to put the pointer to the last entry 209 pcre_uchar *last = entry; local 216 while (last < lastentry) 219 (pcre_uchar *)(last + entrysize + IMM2_SIZE)) != 0) break; 220 last += entrysize; 224 *lastptr = (char *)last; 227 *lastptr = (PCRE_UCHAR16 *)last; 230 *lastptr = (PCRE_UCHAR32 *)last; 255 or the number of the last one if none are set, 274 char *first, *last; local 276 PCRE_UCHAR16 *first, *last; local 278 PCRE_UCHAR32 *first, *last; local [all...] |
| /PHP_5_4/ext/curl/ |
| H A D | interface.c | 2048 struct HttpPost *last = NULL; local 2101 error = curl_formadd(&first, &last, 2115 error = curl_formadd(&first, &last, 2594 Return a string contain the last error for the current session */ 2612 Return an integer containing the last error number */ 2680 /* cURL destructors should be invoked only by last curl handle */
|
| /PHP_5_4/ext/fileinfo/libmagic/ |
| H A D | softmagic.c | 97 * current continuation level; it represents the level of the last 460 char *last; local 463 last = str; 464 while (*last) 465 last++; 466 --last; 467 while (isspace((unsigned char)*last)) 468 last--; 469 *++last = '\0'; 1013 const char *last; /* en local [all...] |