Home
last modified time | relevance | path

Searched refs:used (Results 1 – 25 of 579) sorted by last modified time

12345678910>>...24

/php-src/
H A DNEWS136 . Fixed bug with url_rewriter.hosts not used by output_add_rewrite_var().
206 . Fixed bug GH-12208 (SimpleXML infinite loop when a cast is used inside a
275 quotes to be used). (nielsdos)
H A Dconfigure.ac73 dnl Allow version values to be used in Makefile.
717 dnl until the problem is fixed properly, copy_file_range() is used only on Linux
814 dnl Check if ccache is being used.
821 …AC_MSG_ERROR([ccache must be disabled when --enable-gcov option is used. You can disable ccache by…
852 dnl Add -O0 only if GCC or ICC is used.
1503 AC_DEFINE_UNQUOTED(PHP_BUILD_COMPILER,"$PHP_BUILD_COMPILER",[used compiler for build])
/php-src/.github/workflows/
H A Dnightly.yml644 # msan requires all used libraries to be instrumented,
/php-src/docs/source/core/data-structures/
H A Dreference-counting.rst8 be freed for as long as it is used anywhere in the program. Sometimes this makes it unclear who is
16 used by another party. When the party no longer needs the value, it is responsible for decreasing
205 #define GC_PROTECTED (1<<5) /* used for recursion detection */
214 The ``GC_PROTECTED`` flag is used to protect against recursion in various internal functions. For
227 thread, and is thus still safe to modify. This flag is only used in debug builds to satisfy an
/php-src/ext/opcache/tests/
H A Dgh8846.phpt2 Bug GH-8846: Delayed early binding can be used for classes without parents
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc1175 /* %rax - used as input and result */
1185 /* %rax - used as input and result */
1573 /* check if address is used only in LOAD and STORE */
2275 /* alloca() may be used only in functions */
2650 // TODO: register allocator may clobber operands of CMP before they are used in the GUARD_CMP
7702 /* op3 is used as a flag that the value is already stored in memory.
8429 /* Reserved "home space" or "shadow store" for register arguments (used in Windows64 ABI) */
8454 /* For temporaries we may use any scratch registers except for registers used for parameters */
8699 /* set hidden argument to specify the number of vector registers used */
H A Dir_aarch64.dasc682 /* check if address is used only in LOAD and STORE */
1039 // TODO: register allocator may clobber operands of CMP before they are used in the GUARD_CMP
3986 /* op3 is used as a flag that the value is already stored in memory.
4667 /* For temporaries we may use any scratch registers except for registers used for parameters */
/php-src/build/
H A Dlibtool.m4435 # used as fallback echo
2264 AC_MSG_CHECKING([for ld used by $CC])
2749 # Code to be used in simple compile tests
2752 # Code to be used in simple link tests
2859 # Code to be used in simple compile tests
2862 # Code to be used in simple link tests
2937 # the platform it is being used on.
3831 dnl but it's only used here...
4221 # The linker used to build libraries.
5568 *** used, and then restart.
[all …]
H A Dphp.m497 dnl used several times.
167 dnl proper paths. Can be used to supply custom rules and/or additional targets.
222 dnl from the sources. Should not be used directly.
503 dnl Add a library to the link line (deferred, not used during configure).
908 dnl "sources" is a list of files relative to the subdir which are used to build
915 dnl "cxx" can be used to indicate that a C++ shared module is desired.
1982 dnl This macro is used to get a comparable version for Apache.
2119 AC_CACHE_CHECK([which data struct is used by crypt_r], php_cv_crypt_r_style,[
2173 AC_MSG_ERROR([Unable to detect data struct used by crypt_r])
/php-src/docs/
H A Drelease-process.md911 2. Timely get used to the differences in preparing and announcing a stable
/php-src/main/
H A Doutput.c796 context->in.used = used; in php_output_context_feed()
810 context->in.used = context->out.used; in php_output_context_swap()
814 context->out.used = 0; in php_output_context_swap()
825 context->out.used = context->in.used; in php_output_context_pass()
829 context->in.used = 0; in php_output_context_pass()
871 if (buf->used) { in php_output_handler_append()
874 if ((handler->buffer.size - handler->buffer.used) <= buf->used) { in php_output_handler_append()
882 memcpy(handler->buffer.data + handler->buffer.used, buf->data, buf->used); in php_output_handler_append()
883 handler->buffer.used += buf->used; in php_output_handler_append()
920 context->in.used in php_output_handler_op()
[all …]
H A Dphp_output.h94 size_t used; member
/php-src/ext/tidy/
H A Dtidy.c970 if (ZEND_SIZE_T_UINT_OVFL(output_context->in.used)) { in php_tidy_output_handler()
978 tidyBufAttach(&inbuf, (byte *) output_context->in.data, (uint32_t)output_context->in.used); in php_tidy_output_handler()
985 output_context->out.used = outbuf.size ? outbuf.size-1 : 0; in php_tidy_output_handler()
/php-src/ext/zlib/
H A Dzlib.c192 ctx->buffer.used = 0; in php_zlib_output_handler_ex()
195 if (output_context->in.used) { in php_zlib_output_handler_ex()
205 memcpy(ctx->buffer.data + ctx->buffer.used, output_context->in.data, output_context->in.used); in php_zlib_output_handler_ex()
207 ctx->buffer.used += output_context->in.used; in php_zlib_output_handler_ex()
212 output_context->out.used = 0; in php_zlib_output_handler_ex()
214 ctx->Z.avail_in = ctx->buffer.used; in php_zlib_output_handler_ex()
237 ctx->buffer.used = ctx->Z.avail_in; in php_zlib_output_handler_ex()
443 buffer.used += buffer.free - Z->avail_out; in php_zlib_inflate_rounds()
454 buffer.data[buffer.used] = '\0'; in php_zlib_inflate_rounds()
456 *len = buffer.used; in php_zlib_inflate_rounds()
[all …]
/php-src/ext/iconv/
H A Diconv.c338 if (output_context->in.used) { in php_iconv_output_handler()
341 …_php_iconv_show_error(php_iconv_string(output_context->in.data, output_context->in.used, &out, get… in php_iconv_output_handler()
344 output_context->out.used = ZSTR_LEN(out); in php_iconv_output_handler()
348 output_context->out.used = 0; in php_iconv_output_handler()
H A Dconfig.m462 AC_DEFINE([HAVE_LIBICONV],1,[Whether libiconv is used])
/php-src/sapi/fuzzer/
H A DREADME.md4 The following `./configure` options can be used to enable the fuzzing SAPI, as well as all availabl…
18 …to avoid a linking failure. The `--enable-debug-assertions` option can be used to enable debug ass…
20 …defined-sanitizer` or `--enable-memory-sanitizer`. The first two options can also be used together.
83 …this time, libonig is not clean under ubsan, so only the fuzzer and address sanitizers may be used.
/php-src/Zend/tests/
H A Duse_unlinked_class.phpt2 Classes can only be used once they are fully linked
H A Dns_073.phpt17 …arameter $x as nullable is deprecated, the explicit nullable type must be used instead in %s on li…
H A Ddeprecation_to_exception_during_inheritance.phpt20 …: DateTimeZone|false, or the #[\ReturnTypeWillChange] attribute should be used to temporarily supp…
/php-src/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic4.phpt82 // causing only part of the linefeed string to be used
185 mb_encode_mimeheader(): Argument #2 ($charset) "Quoted-Printable" cannot be used for MIME header en…
/php-src/tests/classes/
H A Dtype_hinting_003.phpt42 …rameter $ar as nullable is deprecated, the explicit nullable type must be used instead in %s on li…
H A Dtype_hinting_004.phpt146 …arameter $a as nullable is deprecated, the explicit nullable type must be used instead in %s on li…
148 …arameter $a as nullable is deprecated, the explicit nullable type must be used instead in %s on li…
150 …arameter $a as nullable is deprecated, the explicit nullable type must be used instead in %s on li…
/php-src/tests/lang/
H A Dtype_hints_002.phpt19 …arameter $p as nullable is deprecated, the explicit nullable type must be used instead in %s on li…
/php-src/ext/reflection/tests/
H A DReflectionClass_export_basic1.phpt23 …arameter $h as nullable is deprecated, the explicit nullable type must be used instead in %s on li…

Completed in 94 milliseconds

12345678910>>...24