Home
last modified time | relevance | path

Searched refs:flag (Results 1 – 25 of 230) sorted by path

12345678910

/PHP-7.4/
H A DNEWS382 . Fixed bug #80866 (preg_split ignores limit flag when pattern with \K has
2175 . Fixed bug #77700 (Writing truecolor images as GIF ignores interlace flag).
2627 . Added JSON_THROW_ON_ERROR flag. (Andrea)
2815 . Fixed bug #76437 (token_get_all with TOKEN_PARSE flag fails to recognise
2819 . Fixed bug #76538 (token_get_all with TOKEN_PARSE flag fails to recognise
H A DUPGRADING98 . The $restart_syscalls flag for pcntl_signal() will now be respected for
137 flag was specified. Other affected operations are:
148 STD_PROP_LIST flag is used.
H A DUPGRADING.INTERNALS55 - ZEND_ACC_SHADOW property flag is removed. Instead of creating shadow
58 - ZEND_ACC_ANON_BOUND is replaced with ZEND_ACC_LINKED. This flag is set
140 by ZEND_ACC_IMMUTABLE flag, they are not going to be copied from opcache
165 Linked classes have ZEND_ACC_LINKED flag set.
H A Dconfigure.ac211 [Enable -g flag to re2c to use computed goto gcc extension])],
1510 flag=-O0
1512 flag=
1515 PHP_ADD_SOURCES_X(Zend, zend_execute.c, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1,PHP_GLOBAL_OBJS,,$flag)
/PHP-7.4/TSRM/
H A Dthreads.m4108 for flag in -kthread -pthread -pthreads -mthreads -Kthread -threads -mt -qthreaded; do
110 CFLAGS="$CFLAGS $flag"
114 ac_cv_pthreads_cflags=$flag
/PHP-7.4/Zend/tests/
H A Dbug33282.phpt2 Bug #33282 (Re-assignment by reference does not clear the is_ref flag)
/PHP-7.4/Zend/
H A Dzend_compile.h80 zend_uchar flag; member
545 #define ZEND_ADD_CALL_FLAG_EX(call_info, flag) do { \ argument
546 call_info |= (flag); \
549 #define ZEND_DEL_CALL_FLAG_EX(call_info, flag) do { \ argument
550 call_info &= ~(flag); \
553 #define ZEND_ADD_CALL_FLAG(call, flag) do { \ argument
554 ZEND_ADD_CALL_FLAG_EX(Z_TYPE_INFO((call)->This), flag); \
557 #define ZEND_DEL_CALL_FLAG(call, flag) do { \ argument
558 ZEND_DEL_CALL_FLAG_EX(Z_TYPE_INFO((call)->This), flag); \
H A Dzend_hash.c735 if (flag & HASH_ADD) { in _zend_hash_add_or_update_i()
812 if (flag & HASH_ADD) { in _zend_hash_str_add_or_update_i()
860 if (flag == HASH_ADD) { in zend_hash_add_or_update()
862 } else if (flag == HASH_ADD_NEW) { in zend_hash_add_or_update()
864 } else if (flag == HASH_UPDATE) { in zend_hash_add_or_update()
894 if (flag == HASH_ADD) { in zend_hash_str_add_or_update()
896 } else if (flag == HASH_ADD_NEW) { in zend_hash_str_add_or_update()
898 } else if (flag == HASH_UPDATE) { in zend_hash_str_add_or_update()
972 if (flag & HASH_ADD) { in _zend_hash_index_add_or_update_i()
1045 if (flag == HASH_ADD) { in zend_hash_index_add_or_update()
[all …]
H A Dzend_hash.h118 …ZEND_FASTCALL zend_hash_add_or_update(HashTable *ht, zend_string *key, zval *pData, uint32_t flag);
124 …end_hash_str_add_or_update(HashTable *ht, const char *key, size_t len, zval *pData, uint32_t flag);
130 …ND_FASTCALL zend_hash_index_add_or_update(HashTable *ht, zend_ulong h, zval *pData, uint32_t flag);
269 …PI zval* ZEND_FASTCALL zend_hash_minmax(const HashTable *ht, compare_func_t compar, uint32_t flag);
H A Dzend_ts_hash.c291 ZEND_API zval *zend_ts_hash_minmax(TsHashTable *ht, compare_func_t compar, int flag) in zend_ts_hash_minmax() argument
296 retval = zend_hash_minmax(TS_HASH(ht), compar, flag); in zend_ts_hash_minmax()
H A Dzend_ts_hash.h78 ZEND_API zval *zend_ts_hash_minmax(TsHashTable *ht, compare_func_t compar, int flag);
/PHP-7.4/build/
H A Dax_check_compile_flag.m420 # force the compiler to issue an error when a bad flag is given.
H A Dlibtool.m4421 # Discard the --no-reexec flag, and continue.
2018 # implement the --enable-shared flag
2049 # set the default shared flag to --disable-shared
2058 # implement the --enable-static flag
2098 # implement the --enable-fast-install flag
2139 # implement the --with-pic flag
2342 # find reload flag for linker
4286 # Compiler flag to prevent dynamic linking.
4289 # Compiler flag to turn off builtin functions.
4292 # Compiler flag to allow reflexive dlopens.
[all …]
H A Dltmain.sh1797 for flag in $args; do
1799 case $flag in
1801 flag="\"$flag\""
1804 arg="$arg $wl$flag"
1815 for flag in $args; do
1817 case $flag in
1819 flag="\"$flag\""
1822 arg="$arg $wl$flag"
3939 dep_rpath="$dep_rpath $flag"
4493 rpath="$rpath $flag"
[all …]
/PHP-7.4/docs/
H A Dstreams.md331 it, allocate it (use pemalloc with the persistent flag set appropriately), and
/PHP-7.4/ext/curl/tests/
H A Dbug48207.phpt38 $fp = fopen($tempfile, "r"); // Opening 'fubar' with the incorrect readonly flag
H A Dcurl_ftp_pasv.phpt25 /* Without enabling SKIP_PASV_IP flag, the following output will be seen..
31 /* After enabling SKIP_PASV_IP flag, the following output will be seen..
/PHP-7.4/ext/date/tests/
H A Dbug62561.phpt2 Bug #62561 Unixtimestamp may take on local times DST flag (this test will only be valid during EDT)
H A Dbug62896.phpt2 Bug #62896 Unixtimestamp may take on local times DST flag (this test will only be valid during CEST)
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch569 - (m->flag & (OFFADD | INDIROFFADD)) == 0) {
580 if (m->flag & INDIR) {
3391 if (m->flag & INDIR) {
3400 if (m->flag & INDIROFFADD) {
/PHP-7.4/ext/fileinfo/libmagic/
H A Dapprentice.c1022 mstart->flag |= BINTEST; in set_test_type()
1032 mstart->flag |= BINTEST; in set_test_type()
1038 mstart->flag |= BINTEST; in set_test_type()
1855 m->flag |= INDIR; in parse()
1856 if (m->flag & OFFADD) in parse()
1857 m->flag = (m->flag & ~OFFADD) | INDIROFFADD; in parse()
1861 m->flag |= OFFADD; in parse()
1880 if (m->flag & INDIR) { in parse()
2006 m->flag |= UNSIGNED; in parse()
2139 m->flag |= NOSPACE; in parse()
[all …]
H A Dfile.h180 uint8_t flag; member
H A Dprint.c61 if (m->flag & INDIR) { in file_mdump()
73 (void) fprintf(stderr, " %s%s", (m->flag & UNSIGNED) ? "u" : "", in file_mdump()
H A Dsoftmagic.c235 (m->flag & mode) != mode) { in match()
339 if (m->flag & OFFADD) { in match()
422 && (m->flag & NOSPACE) == 0) { in match()
1461 if (m->flag & (OFFADD|INDIROFFADD)) in msetoffset()
1531 if (mcopy(ms, p, m->type, m->flag & INDIR, s, in mget()
1539 m->type, m->flag, offset, o, nbytes, in mget()
1545 if (m->flag & INDIR) { in mget()
1673 if (m->flag & INDIROFFADD) { in mget()
1800 if (m->flag & NOSPACE) in mget()
2261 if (m->flag & UNSIGNED) { in magiccheck()
[all …]
/PHP-7.4/ext/fileinfo/tests/
H A Dfinfo_extension_flag.phpt2 Test FILEINFO_EXTENSION flag

Completed in 104 milliseconds

12345678910