| /PHP_5_3/Zend/ |
| H A D | bench.php | 207 $first = "foo_0"; variable 209 print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n";
|
| /PHP_5_3/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_3/ext/sqlite/libsqlite/src/ |
| H A D | hash.h | 36 HashElem *first; /* The first element of the array */ member in struct:Hash 40 HashElem *chain; /* Pointer to first entry with this hash */ 98 #define sqliteHashFirst(H) ((H)->first)
|
| /PHP_5_3/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 | 381 int i, len, first; local 394 first = 1; 401 if (first) { 402 first = 0;
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd.c | 211 * on the first try in JPEGs -- quite important -- and also allows 267 int first = 1; local 284 if (first || (dist < mindist)) { 287 first = 0; 433 int first = 1; local 444 if (first || (dist < mindist)) { 447 first = 0; 565 /* no exact match. We now know closest, but first try to allocate exact */ 2452 /* When gd 1.x was first created, floating point was to be avoided.
|
| /PHP_5_3/ext/intl/collator/ |
| H A D | collator_sort.c | 214 zval *first; local 220 first = *((zval **) f->pData); 223 if( INTL_G(compare_func)( &result, first, second TSRMLS_CC) == FAILURE ) 579 * Compare given strings (converting them to UTF-16 first). 592 "Error converting first argument to UTF-16", 0 TSRMLS_CC );
|
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regenc.c | 777 int first; local 780 first = (code >> 8) & 0xff; 785 return first; 791 int first; local 794 first = (code >> 24) & 0xff; 797 first = (code >> 16) & 0xff; 800 first = (code >> 8) & 0xff; 805 return first;
|
| /PHP_5_3/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_3/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_3/ext/curl/ |
| H A D | interface.c | 2046 struct HttpPost *first = NULL; local 2090 error = curl_formadd(&first, &last, 2104 error = curl_formadd(&first, &last, 2119 zend_llist_add_element(&ch->to_free->post, &first); 2120 error = curl_easy_setopt(ch->cp, CURLOPT_HTTPPOST, first);
|
| /PHP_5_3/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, NULL, *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_3/ext/filter/ |
| H A D | logical_filters.c | 313 int first, n; local 336 first = 1; 344 if (!first && n != 3) { 366 if (first?(n < 1 || n > 3):(n != 3)) { 369 first = 0; 671 * allow_ipv4 and allow_ipv6 flags flag are used, then the first dot or
|
| /PHP_5_3/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_3/ext/standard/ |
| H A D | array.c | 172 zval first; local 179 Z_TYPE(first) = IS_LONG; 180 Z_LVAL(first) = f->h; 182 Z_TYPE(first) = IS_STRING; 183 Z_STRVAL(first) = f->arKey; 184 Z_STRLEN(first) = f->nKeyLength - 1; 196 if (ARRAYG(compare_func)(&result, &first, &second TSRMLS_CC) == FAILURE) { 320 /* first, we check if the handler is defined */ 358 zval *first; local 364 first 403 zval first, second; local 2835 zval *first; local [all...] |
| H A D | pack.c | 333 int first = 1; local 362 if (first--) { 365 first = 1; 692 int first = 1; local 719 if (first-- == 0) { 721 first = 1;
|
| H A D | php_var.h | 44 void *first; member in struct:php_unserialize_data 59 (var_hash).first = 0; \
|
| /PHP_5_3/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_3/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_3/ext/spl/ |
| H A D | spl_directory.c | 818 /* we first rewind */ 2237 zval ** first = Z_ARRVAL_P(intern->u.file.current_zval)->pListHead->pData; local 2239 return Z_TYPE_PP(first) == IS_STRING && Z_STRLEN_PP(first) == 0; 2378 Rewind the file and read the first line */
|
| /PHP_5_3/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_3/ext/soap/ |
| H A D | soap.c | 4893 int first = 0; local 4898 if (!first) { 4900 first = 0;
|