| /PHP_5_4/build/ |
| H A D | build2.mk | 33 SUPPRESS_WARNINGS ?= 2>&1 | (egrep -v '(AC_TRY_RUN called without default to allow cross compiling|AC_PROG_CXXCPP was called before AC_PROG_CXX|defined in acinclude.m4 but never used|AC_PROG_LEX invoked multiple times|AC_DECL_YYTEXT is expanded from...|the top level)'||true)
|
| H A D | mkdep.awk | 54 for (e in used) 55 delete used[e] 63 if (substr($3,2,1) != "/" && used[$3] != 1) { 68 used[$3] = 1;
|
| /PHP_5_4/ext/date/tests/ |
| H A D | examine_diff.inc | 26 * special interval specification used for this test suite.
|
| /PHP_5_4/ext/oci8/tests/ |
| H A D | details.inc | 45 * Used for creating/dropping schema objects used by a test
|
| /PHP_5_4/ext/phar/tests/tar/files/ |
| H A D | corrupt_tarmaker.php.inc | 12 * Temporary stream used for creating the archive
|
| H A D | make.dangerous.tar.php.inc | 13 * Temporary stream used for creating the archive
|
| H A D | tarmaker.php.inc | 12 * Temporary stream used for creating the archive
|
| /PHP_5_4/ext/spl/examples/ |
| H A D | findfile.inc | 30 * part of it is used as separate directory.
|
| H A D | keyfilter.inc | 24 /** @internal regular exoression used as filter */ 33 * @param regex Regular expression used as a filter. 48 /** @return regular expression used as filter
|
| H A D | regexfindfile.inc | 24 * part of it is used as separate directory.
|
| /PHP_5_4/ext/spl/internal/ |
| H A D | recursivetreeiterator.inc | 41 /** Prefix used to start elements. */ 43 /** Prefix used if $level < depth and hasNext($level) == true. */ 45 /** Prefix used if $level < depth and hasNext($level) == false. */ 47 /** Prefix used if $level == depth and hasNext($level) == true. */ 49 /** Prefix used if $level == depth and hasNext($level) == false. */ 51 /** Prefix used right in front of the current element. */ 55 * Set prefix part as used in getPrefix() and stored in $prefix.
|
| H A D | regexiterator.inc | 23 used rather then the current value. */ 37 private $key; /**< the value used for key() */ 38 private $current; /**< the value used for current() */
|
| H A D | splfileobject.inc | 73 * @param delimiter character used as field separator 95 * Set the delimiter and enclosure character used in fgetcsv 107 * @return array(delimiter, enclosure) as used in fgetcsv
|
| /PHP_5_4/ext/standard/tests/mail/ |
| H A D | mail_include.inc | 10 $mailbox_prefix = "phpttest"; // name used for test mailbox 15 * @para, string mailbox_suffix Suffix used to uniquely identify mailboxes
|
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_arrays.h | 14 size_t used; member in struct:fpm_array_s 42 a->used = 0; 60 return fpm_array_item(a, a->used - 1); 68 if (n < a->used - 1) { 69 void *last = fpm_array_item(a, a->used - 1); 77 --a->used; 87 if (a->used == a->allocated) { 99 ret = fpm_array_item(a, a->used); 101 ++a->used; 112 a->used [all...] |
| H A D | fpm_cleanup.c | 41 int cl = cleanups.used;
|
| H A D | fpm_scoreboard.c | 271 if (scoreboard->procs[child_index] && scoreboard->procs[child_index]->used > 0) { 290 if (scoreboard->procs[scoreboard->free_proc] && !scoreboard->procs[scoreboard->free_proc]->used) { 298 if (scoreboard->procs[i] && !scoreboard->procs[i]->used) { /* found */ 310 scoreboard->procs[i]->used = 1;
|
| H A D | fpm_scoreboard.h | 25 int used; member in struct:fpm_scoreboard_proc_s 37 size_t content_length; /* used with POST only */
|
| /PHP_5_4/ext/mbstring/oniguruma/ |
| H A D | regint.h | 453 unsigned int used; member in struct:_BBuf 482 int used = (pos) + (n);\ 483 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAND((buf),used);\ 485 if ((buf)->used < (unsigned int )used) (buf)->used = used;\ 489 int used = (pos) + 1;\ 490 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAN [all...] |
| /PHP_5_4/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 102 ac_uint2 used; member in struct:__anon264 114 * Array used to collect a decomposition before adding it to the decomposition 123 ac_uint2 used; member in struct:__anon265 182 * Array used to collect case mappings before adding them to a list. 256 if (rlp->used == rlp->size) { 271 if (rlp->used == 0) { 274 rlp->used += 2; 281 j = rlp->used - 1; 283 j = rlp->used; 286 rlp->used [all...] |
| /PHP_5_4/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 618 unsigned long used = 0; local 648 used = 255; /* not 256; the driver NUL terminated the buffer */ 660 buf = erealloc(buf, used + 255+1); 661 memcpy(buf + used, buf2, 255); 662 used = used + 255; 664 buf = erealloc(buf, used + C->fetched_len+1); 665 memcpy(buf + used, buf2, C->fetched_len); 666 used = used [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | md5.c | 308 php_uint32 used, free; local 316 used = saved_lo & 0x3f; 318 if (used) { 319 free = 64 - used; 322 memcpy(&ctx->buffer[used], data, size); 326 memcpy(&ctx->buffer[used], data, free); 342 php_uint32 used, free; local 344 used = ctx->lo & 0x3f; 346 ctx->buffer[used++] = 0x80; 348 free = 64 - used; [all...] |
| /PHP_5_4/ext/zlib/ |
| H A D | php_zlib.h | 40 size_t used; member in struct:_php_zlib_buffer
|
| H A D | zlib.c | 112 ctx->buffer.used = 0; 115 if (output_context->in.used) { 117 if (ctx->buffer.free < output_context->in.used) { 118 if (!(ctx->buffer.aptr = erealloc_recoverable(ctx->buffer.data, ctx->buffer.used + ctx->buffer.free + output_context->in.used))) { 123 ctx->buffer.free += output_context->in.used; 125 memcpy(ctx->buffer.data + ctx->buffer.used, output_context->in.data, output_context->in.used); 126 ctx->buffer.free -= output_context->in.used; 127 ctx->buffer.used [all...] |
| /PHP_5_4/main/ |
| H A D | output.c | 271 if (context.out.data && context.out.used) { 273 php_output_write(context.out.data, context.out.used TSRMLS_CC); 374 ZVAL_STRINGL(p, OG(active)->buffer.data, OG(active)->buffer.used, 1); 387 ZVAL_LONG(p, OG(active)->buffer.used); 592 * Check whether a certain handler is in use and issue a warning that the new handler would conflict with the already used one */ 599 php_error_docref("ref.outcontrol" TSRMLS_CC, E_WARNING, "output handler '%s' cannot be used twice", handler_new); 800 static inline void php_output_context_feed(php_output_context *context, char *data, size_t size, size_t used, zend_bool free) argument 806 context->in.used = used; 820 context->in.used [all...] |