Home
last modified time | relevance | path

Searched refs:ops (Results 26 – 50 of 56) sorted by relevance

123

/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_ssa.c525 zend_ssa_op *ssa_ops = ssa->ops; in zend_ssa_rename()
1028 zend_ssa_op *op = ssa->ops + i; in zend_ssa_compute_use_def_chains()
1117 if (ssa->ops[use].result_use == var) { in zend_ssa_unlink_use_chain()
1118 if (ssa->ops[use].res_use_chain == op) { in zend_ssa_unlink_use_chain()
1119 ssa->ops[use].res_use_chain = zend_ssa_next_use(ssa->ops, var, op); in zend_ssa_unlink_use_chain()
1122 use = ssa->ops[use].res_use_chain; in zend_ssa_unlink_use_chain()
1125 if (ssa->ops[use].op1_use_chain == op) { in zend_ssa_unlink_use_chain()
1126 ssa->ops[use].op1_use_chain = zend_ssa_next_use(ssa->ops, var, op); in zend_ssa_unlink_use_chain()
1129 use = ssa->ops[use].op1_use_chain; in zend_ssa_unlink_use_chain()
1133 ssa->ops[use].op2_use_chain = zend_ssa_next_use(ssa->ops, var, op); in zend_ssa_unlink_use_chain()
[all …]
H A Dzend_ssa.h122 zend_ssa_op *ops; /* array of SSA instructions */ member
/PHP-7.1/ext/hash/
H A Dphp_hash_crc32.h34 PHP_HASH_API int PHP_CRC32Copy(const php_hash_ops *ops, PHP_CRC32_CTX *orig_context, PHP_CRC32_CTX …
H A Dhash_adler32.c59 PHP_HASH_API int PHP_ADLER32Copy(const php_hash_ops *ops, PHP_ADLER32_CTX *orig_context, PHP_ADLER3… in PHP_ADLER32Copy() argument
H A Dhash_crc32.c69 PHP_HASH_API int PHP_CRC32Copy(const php_hash_ops *ops, PHP_CRC32_CTX *orig_context, PHP_CRC32_CTX … in PHP_CRC32Copy() argument
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_opcode.h26 char *phpdbg_decode_opline(zend_op_array *ops, zend_op *op);
H A Dphpdbg_prompt.c393 if (PHPDBG_G(ops)) { in phpdbg_clean()
394 destroy_op_array(PHPDBG_G(ops)); in phpdbg_clean()
395 efree(PHPDBG_G(ops)); in phpdbg_clean()
396 PHPDBG_G(ops) = NULL; in phpdbg_clean()
432 if (PHPDBG_G(ops)) { in PHPDBG_COMMAND()
531 PHPDBG_G(ops) = zend_compile_string(&zv, "-"); in phpdbg_compile_stdin()
811 if (PHPDBG_G(ops) || PHPDBG_G(exec)) { in PHPDBG_COMMAND()
823 if (!PHPDBG_G(ops)) { in PHPDBG_COMMAND()
945 zend_execute(PHPDBG_G(ops), &PHPDBG_G(retval)); in PHPDBG_COMMAND()
1181 if (PHPDBG_G(ops)) { in PHPDBG_COMMAND()
[all …]
H A Dphpdbg_bp.h117 zend_op_array *ops; member
H A Dphpdbg.c114 if (brake->ops) { in php_phpdbg_destroy_bp_condition()
115 destroy_op_array(brake->ops); in php_phpdbg_destroy_bp_condition()
116 efree(brake->ops); in php_phpdbg_destroy_bp_condition()
152 pg->ops = NULL; in php_phpdbg_globals_ctor()
267 if (PHPDBG_G(ops)) { in PHP_MSHUTDOWN_FUNCTION()
268 destroy_op_array(PHPDBG_G(ops)); in PHP_MSHUTDOWN_FUNCTION()
269 efree(PHPDBG_G(ops)); in PHP_MSHUTDOWN_FUNCTION()
270 PHPDBG_G(ops) = NULL; in PHP_MSHUTDOWN_FUNCTION()
1963 if (PHPDBG_G(ops)) { in main()
H A Dphpdbg.h269 zend_op_array *ops; /* op_array */ variable
H A Dxml.md336 - compiled: yes/no - are there actual compiled ops?
340 - ops: number of opcodes in current executing context
/PHP-7.1/ext/zip/lib/
H A Dzipwin32.h48 struct _zip_source_win32_file_ops *ops; member
/PHP-7.1/Zend/tests/generators/
H A Dyield_unary_precedence.phpt8 var_dump(yield * -1); // other ops still should behave normally
/PHP-7.1/Zend/tests/traits/
H A Dbug60809.phpt24 public $prop = "ops";
/PHP-7.1/main/
H A Dphp_streams.h64 #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (p… argument
191 php_stream_ops *ops; member
245 PHPAPI php_stream *_php_stream_alloc(php_stream_ops *ops, void *abstract,
248 #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (pe… argument
497 #define php_stream_is(stream, anops) ((stream)->ops == anops)
/PHP-7.1/Zend/tests/assert/
H A Dexpect_015.phpt103 ops as protected x;
252 ops as protected x;
/PHP-7.1/
H A DREADME.STREAMS232 The php_streams ops struct consists of pointers to methods that implement
236 that can efficiently behave as fgets. The ops struct also contains a label
268 PHPAPI php_stream * php_stream_alloc(php_stream_ops * ops, void * abstract,
271 ops is a pointer to the implementation,
360 are all mandatory. The rest are optional. Declare your stream ops struct:
/PHP-7.1/ext/standard/
H A Dfilters.c2070 php_stream_filter_ops *ops; member
2089 for (i = 0; standard_filters[i].ops; i++) { in PHP_MINIT_FUNCTION()
2091 standard_filters[i].ops->label, in PHP_MINIT_FUNCTION()
2104 for (i = 0; standard_filters[i].ops; i++) { in PHP_MSHUTDOWN_FUNCTION()
2105 php_stream_filter_unregister_factory(standard_filters[i].ops->label); in PHP_MSHUTDOWN_FUNCTION()
H A Dphp_fopen_wrapper.c405 stream->ops = &php_stream_socket_ops; in php_stream_url_wrap_php()
H A Dstreamsfuncs.c510 add_assoc_string(return_value, "stream_type", (char *)stream->ops->label); in PHP_FUNCTION()
531 …add_assoc_bool(return_value, "seekable", (stream->ops->seek) && (stream->flags & PHP_STREAM_FLAG_N… in PHP_FUNCTION()
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_vio.c449 int was_blocked = net_stream->ops->set_option(net_stream, opt, 0, NULL); in MYSQLND_METHOD()
462 net_stream->ops->set_option(net_stream, opt, 1, NULL); in MYSQLND_METHOD()
H A Dmysqlnd_net.c863 int was_blocked = net_stream->ops->set_option(net_stream, opt, 0, NULL); in MYSQLND_METHOD()
876 net_stream->ops->set_option(net_stream, opt, 1, NULL); in MYSQLND_METHOD()
/PHP-7.1/main/streams/
H A Dfilter.c502 stream->ops->write(stream, bucket->buf, bucket->buflen); in _php_stream_filter_flush()
H A Dmemory.c753 stream->ops = &php_stream_rfc2397_ops; in php_stream_url_wrap_rfc2397()
/PHP-7.1/ext/opcache/
H A DZendAccelerator.c864 !stream->ops || in zend_get_file_handle_timestamp()
865 !stream->ops->stat) { in zend_get_file_handle_timestamp()
872 ret = stream->ops->stat(stream, &sb); in zend_get_file_handle_timestamp()

Completed in 92 milliseconds

123