Home
last modified time | relevance | path

Searched refs:target (Results 1 – 25 of 134) sorted by path

123456

/PHP-7.4/Zend/
H A DZend.m4245 AC_MSG_CHECKING(target system is Darwin)
246 if echo "$target" | grep "darwin" > /dev/null; then
247 AC_DEFINE([DARWIN], 1, [Define if the target system is darwin])
324 AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define if the target system has /dev/urandom device])
382 …AC_DEFINE([HAVE_GCC_GLOBAL_REGS], 1, [Define if the target system has support for global register …
H A Dzend_compile.c35 #define SET_NODE(target, src) do { \ argument
36 target ## _type = (src)->op_type; \
38 target.constant = zend_add_literal(&(src)->u.constant); \
40 target = (src)->u.op; \
44 #define GET_NODE(target, src) do { \ argument
45 (target)->op_type = src ## _type; \
46 if ((target)->op_type == IS_CONST) { \
47 ZVAL_COPY_VALUE(&(target)->u.constant, CT_CONSTANT(src)); \
49 (target)->u.op = src; \
H A Dzend_compile.h601 #define ZEND_OPLINE_TO_OFFSET(opline, target) \ argument
602 ((char*)(target) - (char*)(opline))
H A Dzend_constants.c73 void zend_copy_constants(HashTable *target, HashTable *source) in zend_copy_constants() argument
75 zend_hash_copy(target, source, copy_zend_constant); in zend_copy_constants()
H A Dzend_constants.h90 void zend_copy_constants(HashTable *target, HashTable *sourc);
H A Dzend_hash.c1915 IS_CONSISTENT(target); in zend_hash_copy()
1916 HT_ASSERT_RC1(target); in zend_hash_copy()
2043 HashTable *target; in zend_array_dup() local
2056 target->nNumUsed = 0; in zend_array_dup()
2069 HT_SET_DATA_ADDR(target, emalloc(HT_SIZE(target))); in zend_array_dup()
2100 HT_SET_DATA_ADDR(target, emalloc(HT_SIZE(target))); in zend_array_dup()
2119 return target; in zend_array_dup()
2130 IS_CONSISTENT(target); in zend_hash_merge()
2131 HT_ASSERT_RC1(target); in zend_hash_merge()
2198 IS_CONSISTENT(target); in zend_hash_merge_ex()
[all …]
H A Dzend_hash.h261 ZEND_API void ZEND_FASTCALL zend_hash_copy(HashTable *target, HashTable *source, copy_ctor_func_t …
262 ZEND_API void ZEND_FASTCALL zend_hash_merge(HashTable *target, HashTable *source, copy_ctor_func_t…
263 ZEND_API void ZEND_FASTCALL zend_hash_merge_ex(HashTable *target, HashTable *source, copy_ctor_fun…
H A Dzend_portability.h570 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) ZEND_API func __attribute__((target("ssse3")))
595 # define ZEND_INTRIN_SSE4_2_FUNC_DECL(func) ZEND_API func __attribute__((target("sse4.2")))
618 # define ZEND_INTRIN_AVX2_FUNC_DECL(func) ZEND_API func __attribute__((target("avx2")))
H A Dzend_ts_hash.c233 ZEND_API void zend_ts_hash_copy(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyCon… in zend_ts_hash_copy() argument
236 begin_write(target); in zend_ts_hash_copy()
237 zend_hash_copy(TS_HASH(target), TS_HASH(source), pCopyConstructor); in zend_ts_hash_copy()
238 end_write(target); in zend_ts_hash_copy()
245 zend_hash_copy(target, TS_HASH(source), pCopyConstructor); in zend_ts_hash_copy_to_hash()
252 begin_write(target); in zend_ts_hash_merge()
253 zend_hash_merge(TS_HASH(target), TS_HASH(source), pCopyConstructor, overwrite); in zend_ts_hash_merge()
254 end_write(target); in zend_ts_hash_merge()
261 begin_write(target); in zend_ts_hash_merge_ex()
262 zend_hash_merge_ex(TS_HASH(target), TS_HASH(source), pCopyConstructor, pMergeSource, pParam); in zend_ts_hash_merge_ex()
[all …]
H A Dzend_ts_hash.h72 ZEND_API void zend_ts_hash_copy(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyCon…
73 ZEND_API void zend_ts_hash_copy_to_hash(HashTable *target, TsHashTable *source, copy_ctor_func_t pC…
74 ZEND_API void zend_ts_hash_merge(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyCo…
75 ZEND_API void zend_ts_hash_merge_ex(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCop…
H A Dzend_virtual_cwd.h146 # define php_sys_readlink(link, target, target_len) readlink(link, target, target_len) argument
H A Dzend_vm_def.h3376 char *target; variable
3414 target = Z_STRVAL_P(ret);
3416 memcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i]));
3417 target += ZSTR_LEN(rope[i]);
3420 *target = '\0';
8209 zend_op *target = OP_JMP_ADDR(opline, opline->op2); variable
8213 ZEND_VM_JMP_EX(target, 0);
H A Dzend_vm_execute.h2752 ZEND_VM_JMP_EX(target, 0); in ZEND_ASSERT_CHECK_SPEC_HANDLER()
18762 char *target; in ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER() local
18800 target = Z_STRVAL_P(ret); in ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER()
18803 target += ZSTR_LEN(rope[i]); in ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER()
18806 *target = '\0'; in ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER()
19190 char *target; in ZEND_ROPE_END_SPEC_TMP_TMPVAR_HANDLER() local
19228 target = Z_STRVAL_P(ret); in ZEND_ROPE_END_SPEC_TMP_TMPVAR_HANDLER()
19234 *target = '\0'; in ZEND_ROPE_END_SPEC_TMP_TMPVAR_HANDLER()
20101 char *target; in ZEND_ROPE_END_SPEC_TMP_CV_HANDLER() local
20139 target = Z_STRVAL_P(ret); in ZEND_ROPE_END_SPEC_TMP_CV_HANDLER()
[all …]
/PHP-7.4/Zend/tests/generators/
H A Ddangling_send_target.phpt2 Yield from does not leave a dangling send target
/PHP-7.4/Zend/tests/
H A Dzend_signed_multiply-32bit.phpt4 <?php if ((1 << 31) > 0) print "skip Running on 64-bit target"; ?>
H A Dzend_signed_multiply-64bit-2.phpt4 <?php if ((1 << 31) < 0) print "skip Running on 32-bit target"; ?>
H A Dzend_signed_multiply-64bit.phpt4 <?php if ((1 << 31) < 0) print "skip Running on 32-bit target"; ?>
/PHP-7.4/appveyor/
H A Dtest_task.bat103 … 120 -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP --temp-source c:\tests_tmp --temp-target c:\tests_tmp %PARA…
/PHP-7.4/build/
H A Dax_gcc_func_attribute.m4218 [target], [
H A Dlibtool.m4335 # if running on 10.5 or later, the deployment target defaults
337 # target defaults to 10.4. Don't you love it?
443 # The HP-UX ksh and POSIX shell print the target directory to stdout
4150 # The HP-UX ksh and POSIX shell print the target directory to stdout
H A Dltmain.sh677 target )
691 arg_mode=target
769 target)
H A Dphp.m4221 dnl PHP_ADD_SOURCES_X(source-path, sources[, special-flags[, target-var[, shared[, special-post-fla…
224 dnl array target-var directly, as well as whether shared objects will be built
860 dnl PHP_SELECT_SAPI(name, type[, sources [, extra-cflags [, build-target]]])
/PHP-7.4/
H A Dconfigure.ac573 AX_GCC_FUNC_ATTRIBUTE([target])
/PHP-7.4/docs/
H A Dunix-build-system.md16 * `install-cli`: installs the CLI only, so that the install-sapi target does
118 source-file, where it is located, in which target context it can work, etc.
/PHP-7.4/ext/dom/
H A Ddocument.c64 ZEND_ARG_INFO(0, target)

Completed in 342 milliseconds

123456