| /PHP_5_5/Zend/ |
| H A D | bench.php | 206 $first = "foo_0"; variable 208 print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n";
|
| /PHP_5_5/ext/ereg/regex/ |
| H A D | engine.c | 369 for (;;) { /* find first matching branch */ 569 for (;;) { /* find first matching branch */ 892 case OCH_: /* mark the first two branches */ 943 register int first = 1; local 953 fprintf(d, "%s%d", (first) ? "\t" : ", ", i); 954 first = 0;
|
| H A D | regcomp.c | 200 register int first = 1; /* is this the first alternative? */ local 212 if (first) { 216 first = 0; 225 if (!first) { /* tail-end fixups */ 401 * This implementation is a bit of a kludge, in that a trailing $ is first 410 register int end1; /* first terminating character */ 414 register int first = 1; /* first subexpression? */ local 423 wasdollar = p_simp_re(p, first); [all...] |
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_env.c | 201 char *first = NULL; local 226 if (first == NULL) { 227 first = fpm_globals.argv[i]; 235 if (first == NULL) { 236 first = environ[i]; 243 if (first == NULL || last == NULL) { 247 fpm_env_argv_len = last - first;
|
| H A D | fpm_status.c | 386 int i, first; local 400 first = 1; 407 if (first) { 408 first = 0;
|
| /PHP_5_5/ext/intl/breakiterator/ |
| H A D | codepointiterator_internal.cpp | 142 int32_t CodePointBreakIterator::first(void) function in class:CodePointBreakIterator
|
| /PHP_5_5/ext/intl/collator/ |
| H A D | collator_sort.c | 215 zval *first; local 221 first = *((zval **) f->pData); 224 if( INTL_G(compare_func)( &result, first, second TSRMLS_CC) == FAILURE ) 580 * Compare given strings (converting them to UTF-16 first). 593 "Error converting first argument to UTF-16", 0 TSRMLS_CC );
|
| /PHP_5_5/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 268 * If this is the first code for this property list, just add it 376 * If this is the first code for this property list, just add it 681 * Optimize adding the first item. 961 * Locate the first character property field. 1277 write_case(FILE *out, _case_t *tab, int num, int first) argument 1282 if (first) first = 0;
|
| /PHP_5_5/ext/bcmath/ |
| H A D | bcmath.c | 210 bc_num first, second, result; local 222 bc_init_num(&first TSRMLS_CC); 225 php_str2num(&first, left TSRMLS_CC); 227 bc_add (first, second, &result, scale); 236 bc_free_num(&first); 250 bc_num first, second, result; local 261 bc_init_num(&first TSRMLS_CC); 264 php_str2num(&first, left TSRMLS_CC); 266 bc_sub (first, second, &result, scale); 275 bc_free_num(&first); 289 bc_num first, second, result; local 328 bc_num first, second, result; local 372 bc_num first, second, result; local 408 bc_num first, second, mod, result; local 452 bc_num first, second, result; local 528 bc_num first, second; local [all...] |
| /PHP_5_5/ext/dom/ |
| H A D | characterdata.c | 259 xmlChar *cur, *first, *second; local 285 first = xmlUTF8Strndup(cur, offset); 289 xmlNodeSetContent(node, first); 293 xmlFree(first);
|
| H A D | node.c | 480 xmlNode *nodep, *first = NULL; local 491 first = nodep->children; 496 if (!first) { 501 if (NULL == (*retval = php_dom_create_object(first, &ret, *retval, obj TSRMLS_CC))) {
|
| H A D | text.c | 149 xmlChar *first; local 178 first = xmlUTF8Strndup(cur, offset); 183 xmlNodeSetContent(node, first); 186 xmlFree(first);
|
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli_warning.c | 78 MYSQLI_WARNING *w, *first = NULL, *prev = NULL; local 90 if (!first) { 91 first = w; 99 return first; 128 MYSQLI_WARNING *w, *first = NULL, *prev = NULL; local 149 /* 0. we don't care about the first */ 167 if (!first) { 168 first = w; 179 return first;
|
| /PHP_5_5/ext/standard/ |
| H A D | pack.c | 343 int first = 1; local 372 if (first--) { 375 first = 1; 719 /* Z will strip everything after the first null character */ 731 /* Remove everything after the first null */ 747 int first = 1; local 774 if (first-- == 0) { 776 first = 1;
|
| H A D | php_var.h | 44 void *first; member in struct:php_unserialize_data
|
| H A D | array.c | 178 zval first; local 185 Z_TYPE(first) = IS_LONG; 186 Z_LVAL(first) = f->h; 188 Z_TYPE(first) = IS_STRING; 189 Z_STRVAL(first) = (char*)f->arKey; 190 Z_STRLEN(first) = f->nKeyLength - 1; 202 if (ARRAYG(compare_func)(&result, &first, &second TSRMLS_CC) == FAILURE) { 326 /* first, we check if the handler is defined */ 364 zval *first; local 370 first 409 zval first, second; local 2879 zval *first; local [all...] |
| /PHP_5_5/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 961 /* called by the C server when it first receives an introspection request. We pass this on to 1274 static int first = 1; local 1275 if (first) { 1290 first = 0;
|
| /PHP_5_5/sapi/apache_hooks/ |
| H A D | php_apache.c | 579 zval *first = NULL; local 589 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|zb", &first, &second, &replace) == FAILURE) { 593 if (Z_TYPE_P(first) == IS_ARRAY) { 597 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(first), &pos); 598 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(first), (void **)&entry, &pos) == SUCCESS) { 599 switch(zend_hash_get_current_key_ex(Z_ARRVAL_P(first), &string_key, &string_key_len, &num_key, 0, &pos)) { 601 if (zend_hash_find(Z_ARRVAL_P(first), string_key, string_key_len, (void **)&value) == FAILURE) { 602 zend_hash_move_forward_ex(Z_ARRVAL_P(first), &pos); 606 zend_hash_move_forward_ex(Z_ARRVAL_P(first), &pos); 623 zend_hash_move_forward_ex(Z_ARRVAL_P(first), [all...] |
| /PHP_5_5/ext/filter/ |
| H A D | logical_filters.c | 321 int first, n; local 344 first = 1; 352 if (!first && n != 3) { 374 if (first?(n < 1 || n > 3):(n != 3)) { 377 first = 0; 679 * allow_ipv4 and allow_ipv6 flags flag are used, then the first dot or
|
| /PHP_5_5/ext/pcre/pcrelib/ |
| H A D | pcre_get.c | 141 firstptr where to put the pointer to the first entry 208 pcre_uchar *first = entry; local 210 while (first > nametable) 213 (pcre_uchar *)(first - entrysize + IMM2_SIZE)) != 0) break; 214 first -= entrysize; 223 *firstptr = (char *)first; 226 *firstptr = (PCRE_UCHAR16 *)first; 229 *firstptr = (PCRE_UCHAR32 *)first; 243 * Find first set of multiple named strings * 247 It returns the number of the first on 274 char *first, *last; local 276 PCRE_UCHAR16 *first, *last; local 278 PCRE_UCHAR32 *first, *last; local [all...] |
| /PHP_5_5/ext/spl/ |
| H A D | spl_directory.c | 822 /* we first rewind */ 2227 zval ** first = Z_ARRVAL_P(intern->u.file.current_zval)->pListHead->pData; local 2229 return Z_TYPE_PP(first) == IS_STRING && Z_STRLEN_PP(first) == 0; 2368 Rewind the file and read the first line */
|
| /PHP_5_5/sapi/cli/ |
| H A D | php_cli_server.c | 155 php_cli_server_chunk *first; member in struct:php_cli_server_buffer 863 for (chunk = buffer->first; chunk; chunk = next) { 872 buffer->first = NULL; 881 buffer->first = chunk; 892 last->next = buffer->first; 896 buffer->first = chunk; 903 for (chunk = buffer->first; chunk; chunk = chunk->next) { 968 for (chunk = sender->buffer.first; chunk; chunk = next) { 981 sender->buffer.first = next; 1000 sender->buffer.first [all...] |
| /PHP_5_5/ext/curl/ |
| H A D | interface.c | 2528 struct HttpPost *first = NULL; local 2583 error = curl_formadd(&first, &last, 2623 error = curl_formadd(&first, &last, 2637 error = curl_formadd(&first, &last, 2659 zend_llist_add_element(&ch->to_free->post, &first); 2660 error = curl_easy_setopt(ch->cp, CURLOPT_HTTPPOST, first);
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gd.c | 213 * on the first try in JPEGs -- quite important -- and also allows 271 int first = 1; local 288 if (first || (dist < mindist)) { 291 first = 0; 437 int first = 1; local 448 if (first || (dist < mindist)) { 451 first = 0; 569 /* no exact match. We now know closest, but first try to allocate exact */ 2450 /* When gd 1.x was first created, floating point was to be avoided.
|
| /PHP_5_5/ext/soap/ |
| H A D | soap.c | 4671 int first = 0; local 4676 if (!first) { 4678 first = 0;
|