Home
last modified time | relevance | path

Searched refs:it (Results 1 – 25 of 1006) sorted by last modified time

12345678910>>...41

/php-src/
H A DUPGRADING25 previously skipped if the path looked like it was referring to a file, i.e.
59 contain any null bytes. If it does, a ValueError is now thrown.
82 behavior, the JIT is still disabled by default. However, it is now disabled
88 architectures is now 32767 (it was previously 4095).
120 In some case previously it could return the value -1.
132 cause an infinite loop because it destroyed the current iterator data.
165 which is why it throws an exception nowadays.
181 it references, or null if the reference is no longer valid.
421 Previously, it was 128.
448 decimal number and round it to 0.29. However, "pre-rounding" incorrectly rounds
[all …]
H A Dconfigure.ac224 dnl supports it. This can help reduce the binary size and startup time.
239 dnl Disable PIC mode by default where it is known to be safe to do so, to avoid
1575 dnl Enable -Werror late, because it may break configure checks throwing warnings.
1606 dnl Disable object-size sanitizer, because it is incompatible with our zend_function
H A DUPGRADING.INTERNALS24 always initialized because it doesn't free trampolines.
38 out zend_string*. This won't cut off the string if it embeds a NUL byte.
165 should either be inlined and undefined behavior fixed or it should be
172 reduced it to a single void* member containing the actual state, resulting
175 single php_random_algo_with_state struct by value, making it easier to
193 - The function php_xsl_create_object() was removed as it was not used
/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
18 anywhere, and that it may be freed.
100 Whether the macro works with non-reference counted types. If it does, the operation is usually a
101 no-op. If it does not, using the macro on these values is undefined behavior.
135 "pointer" to the value, rather than the value itself. Modifying such a value in one place changes it
144 fresh copy before modifying it. This process is called separation or CoW (copy on write).
159 or multi-threaded environment with opcache enabled, it shares some common values between processes
171 read-only and trigger a hardware exception if the code accidentally attempts to modify it.
193 cycle, and run when this buffer becomes full. It is also possible to invoke it explicitly by calling
[all …]
/php-src/scripts/dev/
H A Dbless_tests.php49 $it = new RecursiveIteratorIterator(
53 foreach ($it as $file) {
/php-src/ext/openssl/
H A Dopenssl.c2025 if (method->it) { in openssl_x509v3_subjectAltName()
2027 ASN1_ITEM_ptr(method->it))); in openssl_x509v3_subjectAltName()
/php-src/ext/odbc/tests/
H A Dodbc_non_persistent_connection_reuse.phpt14 // The test can affect multiple drivers, but testing it is driver-specific.
31 // set a session specific variable via CONTEXT_INFO, if we get the same connection again, it should…
60 // run 3: close it and see if it's the same connection
H A Dodbc_persistent_close_all.phpt14 // The test can affect multiple drivers, but testing it is driver-specific.
31 // set a session specific variable via CONTEXT_INFO, if we get the same connection again, it should…
60 // run 3: close it and see if it's the same connection
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc2056 /* Prefer IMUL over MUL because it's more flexible and uses less registers ??? */
/php-src/build/
H A Dlibtool.m4817 # check would be larger than it should be.
960 find out it does not work in some platform. */
2937 # the platform it is being used on.
3831 dnl but it's only used here...
3974 # it if it's in CXXFLAGS. Ignore libCrun as
3975 # -library=stlport4 depends on it.
3993 # it if it's in CXXFLAGS. Ignore libCrun as
3994 # -library=stlport4 depends on it.
5374 # rely on this symbol name, it's probably fine to never include it in
6110 ## LD is ld it makes a PLAMLIB
[all …]
H A Dphp.m458 dnl Expands path to an absolute path and assigns it to variable.
884 dnl macro invocation, instead of deferring it to the PHP_GEN_BUILD_DIRS.
969 dnl This macro is scanned by genif.sh when it builds the internal functions
971 dnl $1 = name of extension, $2 = extension upon which it depends
972 dnl $3 = optional: if true, it's ok for $2 to have not been configured default
974 dnl invoked *after* PHP_NEW_EXTENSION. The extension on which it depends must
983 You've configured extension $1 to build statically, but it
992 but you've either not enabled $2, or have disabled it.
1856 dnl Reset LIBS temporarily as it may have already been included -liconv in.
/php-src/.github/workflows/
H A Dpush.yml229 # and other operations, so we disable it during benchmarking.
H A Dnightly.yml374 # CFLAGS removes O2, so we have to add it again...
480 # Test causes a heap-buffer-overflow but I cannot reproduce it locally...
/php-src/docs/
H A Drelease-process.md124 > branch from the main branch. Do not push it!
307 Or you may go to https://gist.github.com to create it manually.
317 > If you do not have a `public_html` directory, create it and set its
366 you run it, it will ask several questions (see below). For pre-GA non-stable
381 # To end it, hit <enter>.<enter>
467 2. If a CVE commit needs to be merged to the release, have it committed to
580 Or you may go to https://gist.github.com to create it manually.
721 it's time to remove the RC build from the QA website.
751 Keep in mind it may take up to an hour for the websites to sync.
815 highlight the major important things (security fixes) and when it is
[all …]
/php-src/ext/opcache/
H A Dconfig.m4242 dnl needed: rt (older Linux and Solaris <= 10). Most systems have it in the C
244 dnl systems...). Haiku has it in the root library, which is linked by default.
H A Dzend_accelerator_blacklist.c79 zend_regexp_list **regexp_list_it, *it; in zend_accel_blacklist_update_regexp() local
175 if (!it) { in zend_accel_blacklist_update_regexp()
179 it->next = NULL; in zend_accel_blacklist_update_regexp()
182 free(it); in zend_accel_blacklist_update_regexp()
198 *regexp_list_it = it; in zend_accel_blacklist_update_regexp()
199 regexp_list_it = &it->next; in zend_accel_blacklist_update_regexp()
222 zend_regexp_list *temp, *it = blacklist->regexp_list; in zend_accel_blacklist_shutdown() local
223 while (it) { in zend_accel_blacklist_shutdown()
224 pcre2_code_free(it->re); in zend_accel_blacklist_shutdown()
225 temp = it; in zend_accel_blacklist_shutdown()
[all …]
/php-src/sapi/fuzzer/
H A DREADME.md24 When running `make` it creates these binaries in `sapi/fuzzer/`:
37 Some fuzzers have a seed corpus in `sapi/fuzzer/corpus`. You can use it as follows:
/php-src/ext/spl/tests/
H A Dbug71236.phpt2 Bug #71236: Second call of spl_autoload_register() does nothing if it has no arguments
/php-src/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic4.phpt104 // Only a single character in input, but when we convert it to outcode and then
105 // transfer-encode it, it takes too many bytes to fit on a single line
111 // with no transfer encoding, and when it would transfer-encode
116 // but the new one transfer-encodes it
/php-src/ext/standard/
H A Durl_scanner_ex.re10 | obtain it through the world-wide-web, please send a note to |
214 /* Check host whitelist. If it's not listed, do nothing. */
445 * have that tag in our table. If we might modify it,
H A Dvar_unserializer.re10 | obtain it through the world-wide-web, please send a note to |
612 /* Remove old entry from ref_props table, if it exists. */
697 * type source if it is turned into a reference lateron. */
1113 * unserialize (in practice unserialization handlers also see it). Ideally we should
1263 …php_error_docref(NULL, E_WARNING, "Function %s() hasn't defined the class it was called for", Z_ST…
1319 /* If this class implements Serializable, it should not land here but in object_custom().
1425 return 0; /* not sure if it should be 0 or 1 here? */
/php-src/ext/session/tests/
H A Dgh13891.phpt14 // We *must* set it here because the bug only triggers on a runtime edit
/php-src/ext/ffi/
H A Dffi.c1923 zend_object_iterator it; member
1938 zend_ffi_cdata_iterator *iter = (zend_ffi_cdata_iterator*)it; in zend_ffi_cdata_it_valid()
1939 zend_ffi_cdata *cdata = (zend_ffi_cdata*)Z_OBJ(iter->it.data); in zend_ffi_cdata_it_valid()
1948 zend_ffi_cdata_iterator *iter = (zend_ffi_cdata_iterator*)it; in zend_ffi_cdata_it_get_current_data()
1976 zend_ffi_cdata_iterator *iter = (zend_ffi_cdata_iterator*)it; in zend_ffi_cdata_it_get_current_key()
1983 zend_ffi_cdata_iterator *iter = (zend_ffi_cdata_iterator*)it; in zend_ffi_cdata_it_move_forward()
1990 zend_ffi_cdata_iterator *iter = (zend_ffi_cdata_iterator*)it; in zend_ffi_cdata_it_rewind()
2019 zend_iterator_init(&iter->it); in zend_ffi_cdata_get_iterator()
2022 ZVAL_OBJ(&iter->it.data, Z_OBJ_P(object)); in zend_ffi_cdata_get_iterator()
2023 iter->it.funcs = &zend_ffi_cdata_it_funcs; in zend_ffi_cdata_get_iterator()
[all …]
/php-src/ext/openssl/tests/
H A Dopenssl_error_string_basic_openssl3.phpt85 // internally OpenSSL ERR won't save more than 15 (16 - 1) errors so lets test it
H A Dopenssl_error_string_basic.phpt83 // internally OpenSSL ERR won't save more than 15 (16 - 1) errors so lets test it

Completed in 127 milliseconds

12345678910>>...41