Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 25 of 68) sorted by relevance

123

/php-src/ext/opcache/jit/ir/
H A Dir_fold.h1374 opt = opt | (3 << IR_OPT_INPUTS_SHIFT); in IR_FOLD()
1508 opt = op1_insn->opt ^ 1; in IR_FOLD()
1593 opt = IR_NEG | (opt & IR_OPT_TYPE_MASK); in IR_FOLD()
1810 opt = IR_ADD | (opt & IR_OPT_TYPE_MASK); in IR_FOLD()
1830 opt = IR_ADD | (opt & IR_OPT_TYPE_MASK); in IR_FOLD()
1835 opt = IR_NEG | (opt & IR_OPT_TYPE_MASK); in IR_FOLD()
1854 opt = IR_ADD | (opt & IR_OPT_TYPE_MASK); in IR_FOLD()
1874 opt = IR_ADD | (opt & IR_OPT_TYPE_MASK); in IR_FOLD()
1879 opt = IR_NEG | (opt & IR_OPT_TYPE_MASK); in IR_FOLD()
2702 IR_FOLD_BOOL((opt ^ (opt >> 1)) & 1); in IR_FOLD()
[all …]
H A Dir_sccp.c55 opt = ctx->fold_insn.optx; in ir_sccp_fold()
222 if (!new_const || new_const->opt != v->opt || new_const->val.u64 != v->val.u64) { in ir_sccp_meet_phi()
243 _values[i].optx = new_const->opt; in ir_sccp_meet_phi()
246 } else if (_values[i].opt == new_const->opt && _values[i].val.u64 == new_const->val.u64) { in ir_sccp_meet_phi()
277 insn->opt = IR_NOP; /* keep "inputs_count" */ in ir_sccp_make_nop()
291 insn->opt = IR_NOP; /* keep "inputs_count" */ in ir_sccp_remove_insn()
444 uint32_t opt; in ir_sccp_fold2() local
449 opt = insn->opt; in ir_sccp_fold2()
461 opt = ctx->fold_insn.optx; in ir_sccp_fold2()
468 if (insn->opt != ctx->fold_insn.opt in ir_sccp_fold2()
[all …]
H A Dir.h299 _(COPY, d1X1, def, opt, ___) /* COPY (last foldable op) */ \
322 _(RLOAD, l1X2, src, num, opt) /* load value from register */ \
383 #define IR_OPT_TYPE(opt) (((opt) & IR_OPT_TYPE_MASK) >> IR_OPT_TYPE_SHIFT) argument
452 uint16_t opt;
694 ir_ref ir_emit0(ir_ctx *ctx, uint32_t opt);
695 ir_ref ir_emit1(ir_ctx *ctx, uint32_t opt, ir_ref op1);
696 ir_ref ir_emit2(ir_ctx *ctx, uint32_t opt, ir_ref op1, ir_ref op2);
699 ir_ref ir_emit_N(ir_ctx *ctx, uint32_t opt, int32_t count);
731 ir_ref ir_fold0(ir_ctx *ctx, uint32_t opt);
732 ir_ref ir_fold1(ir_ctx *ctx, uint32_t opt, ir_ref op1);
[all …]
H A Dir.c798 insn->optx = opt; in ir_emit()
823 return ir_emit(ctx, opt, op1, op2, op3); in ir_emit3()
845 if (insn->opt == opt && insn->op1 == op1 && insn->op2 == op2 && insn->op3 == op3) { in _ir_fold_cse()
965 ctx->fold_insn.optx = opt; in ir_folding()
979 ref = ir_emit(ctx, opt, op1, op2, op3); in ir_folding()
982 op = opt & IR_OPT_OP_MASK; in ir_folding()
999 ctx->fold_insn.optx = opt; in ir_folding()
1016 ctx->fold_insn.type = IR_OPT_TYPE(opt); in ir_folding()
1025 if ((opt & IR_OPT_OP_MASK) == IR_PHI) { in ir_fold()
1026 opt |= (3 << IR_OPT_INPUTS_SHIFT); in ir_fold()
[all …]
/php-src/ext/session/
H A Dmod_files.sh39 select opt in "$@"; do
41 if [[ $opt = "Delete directory contents" ]]; then
44 elif [[ $opt = "Choose another directory" ]]; then
47 elif [[ $opt = "Quit" ]]; then
/php-src/ext/dom/lexbor/lexbor/html/
H A Dserialize.h61 lxb_html_serialize_opt_t opt, size_t indent,
66 lxb_html_serialize_opt_t opt, size_t indent,
71 lxb_html_serialize_opt_t opt, size_t indent,
76 lxb_html_serialize_opt_t opt, size_t indent,
81 lxb_html_serialize_opt_t opt, size_t indent,
86 lxb_html_serialize_opt_t opt, size_t indent,
H A Dtokenizer.c226 if (tkz->opt & LXB_HTML_TOKENIZER_OPT_TAGS_SELF) { in lxb_html_tokenizer_destroy()
230 if (tkz->opt & LXB_HTML_TOKENIZER_OPT_ATTRS_SELF) { in lxb_html_tokenizer_destroy()
281 tkz->opt |= LXB_HTML_TOKENIZER_OPT_TAGS_SELF; in lxb_html_tokenizer_begin()
290 tkz->opt |= LXB_HTML_TOKENIZER_OPT_ATTRS_SELF; in lxb_html_tokenizer_begin()
296 tkz->opt |= LXB_HTML_TOKENIZER_OPT_ATTRS_MRAW_SELF; in lxb_html_tokenizer_begin()
/php-src/ext/curl/tests/
H A Dbug46711.phpt9 $opt = array(
16 foreach( $opt as $option => $value ) {
20 var_dump($opt); // with this bug, $opt[58] becomes NULL
/php-src/ext/sodium/
H A Dsodium_pwhash.c32 zval *opt; in get_options() local
39 if ((opt = zend_hash_str_find(options, "memory_cost", strlen("memory_cost")))) { in get_options()
40 zend_long smemlimit = zval_get_long(opt); in get_options()
48 if ((opt = zend_hash_str_find(options, "time_cost", strlen("time_cost")))) { in get_options()
49 *opslimit = zval_get_long(opt); in get_options()
55 …if ((opt = zend_hash_str_find(options, "threads", strlen("threads"))) && (zval_get_long(opt) != 1)… in get_options()
/php-src/ext/mbstring/tests/
H A Dmb_ereg_search_xxx.phpt17 function test_search( $test_enc, $str, $look_for, $opt, $in_enc = 'EUC-JP' ) {
21 mb_ereg_search_init( $str, $look_for, $opt );
28 function do_tests( $enc, $opt ) {
29 test_search( $enc, "�ϡ� ����\n", ' (��?�ϡ�?)[[:space:]]', $opt );
30 test_search( $enc, 'abcde abdeabcf anvfabc odu abcd ', '(ab[a-z]+)', $opt );
/php-src/.github/actions/setup-x64/
H A Daction.yml14 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "cre…
15 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "cre…
16 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "ALT…
17 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "CRE…
18 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "CRE…
/php-src/ext/soap/tests/bugs/
H A Dbug34643.phpt12 public function get_it($opt="zzz") {
13 return $opt;
45 [0] => string get_it(string $opt)
H A Dbug38067.phpt18 function __construct($wsdl, $opt) {
19 parent::__construct($wsdl, $opt);
20 $this->server = new SoapServer($wsdl, $opt);
H A Dbug38005.phpt16 function __construct($wsdl, $opt) {
17 parent::__construct($wsdl, $opt);
18 $this->server = new SoapServer($wsdl, $opt);
/php-src/ext/pgsql/
H A Dphp_pgsql.h78 …(PGconn *pg_link, const zend_string *table_name, const zval *values, zval *result, zend_ulong opt);
79 …insert(PGconn *pg_link, const zend_string *table, zval *values, zend_ulong opt, zend_string **sql);
80 …nn *pg_link, const zend_string *table, zval *values, zval *ids, zend_ulong opt , zend_string **sql…
81 …ql_delete(PGconn *pg_link, const zend_string *table, zval *ids, zend_ulong opt, zend_string **sql);
82 …*pg_link, const zend_string *table, zval *ids, zval *ret_array, zend_ulong opt, long fetch_option,…
/php-src/ext/opcache/tests/
H A Dbug66338.phpt32 $opt = -1; # This test works if $opt = 0
33 …-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.optimization_level=$opt -d opcache.file_upd…
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.h73 lxb_html_document_opt_t opt; member
252 lxb_html_document_opt_t opt) in lxb_html_document_opt_set() argument
254 document->opt = opt; in lxb_html_document_opt_set()
260 return document->opt; in lxb_html_document_opt()
322 lxb_html_document_opt_t opt);
H A Ddocument.c701 lxb_html_document_opt_t opt; in lxb_html_document_parse() local
709 opt = document->opt; in lxb_html_document_parse()
727 document->opt = opt; in lxb_html_document_parse()
733 document->opt = opt; in lxb_html_document_parse()
777 lxb_html_document_opt_t opt = document->opt; in lxb_html_document_parse_fragment() local
798 document->opt = opt; in lxb_html_document_parse_fragment()
804 document->opt = opt; in lxb_html_document_parse_fragment()
1292 lxb_html_document_opt_t opt) in lxb_html_document_opt_set_noi() argument
1294 lxb_html_document_opt_set(document, opt); in lxb_html_document_opt_set_noi()
/php-src/ext/tidy/
H A Dtidy.c226 TidyOption opt = tidyGetOptionByName(doc, optname); in _php_tidy_set_tidy_opt() local
230 if (!opt) { in _php_tidy_set_tidy_opt()
235 if (tidyOptIsReadOnly(opt)) { in _php_tidy_set_tidy_opt()
240 switch(tidyOptGetType(opt)) { in _php_tidy_set_tidy_opt()
252 if (tidyOptSetInt(doc, tidyOptGetId(opt), lval)) { in _php_tidy_set_tidy_opt()
721 *type = tidyOptGetType(opt); in php_tidy_get_opt_val()
1167 TidyOption opt; in PHP_FUNCTION() local
1178 if (!opt) { in PHP_FUNCTION()
1210 opt_name = (char *)tidyOptGetName(opt); in PHP_FUNCTION()
1310 TidyOption opt; in PHP_FUNCTION() local
[all …]
/php-src/ext/
H A Dext_skel.php175 switch($opt = strtolower(substr($val, 2)))
201 } else if ($opt == 'dir' && empty($argv[$i + 1])) {
205 … $options[$opt] = ($opt == 'dir' ? realpath($argv[$i + 1]) . DIRECTORY_SEPARATOR : $argv[$i + 1]);
/php-src/ext/tidy/tests/
H A D007.phpt18 $a->getopt('bogus-opt');
34 tidy::getOpt(): Argument #1 ($option) is an invalid configuration option, "bogus-opt" given
/php-src/ext/standard/
H A Dbasic_functions.h50 PHPAPI int _php_error_log(int opt_err, const char *message, const char *opt, const char *headers);
51 PHPAPI int _php_error_log_ex(int opt_err, const char *message, size_t message_len, const char *opt,…
/php-src/ext/dom/lexbor/lexbor/core/
H A Dfs.h45 lexbor_fs_dir_read(const lxb_char_t *dirpath, lexbor_fs_dir_opt_t opt,
/php-src/.github/actions/verify-generated-files/
H A Daction.yml8 [[ "$OSTYPE" == "darwin"* ]] && export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddynasm.lua1033 local function parseopt(opt, args)
1034 opt_current = #opt == 1 and "-"..opt or "--"..opt
1035 local f = opt_map[opt] or opt_map[opt_alias[opt]]
1056 local lopt, opt = match(a, "^%-(%-?)(.+)")
1057 if not opt then break end
1061 for o in gmatch(opt, ".") do parseopt(o, args) end
1064 parseopt(opt, args)

Completed in 74 milliseconds

123