Home
last modified time | relevance | path

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

/php-src/ext/opcache/jit/ir/
H A Dir_save.c19 if (proto->params_count > 0) { in ir_print_proto()
20 fprintf(f, "%s", ir_type_cname[proto->param_types[0]]); in ir_print_proto()
21 for (j = 1; j < proto->params_count; j++) { in ir_print_proto()
22 fprintf(f, ", %s", ir_type_cname[proto->param_types[j]]); in ir_print_proto()
24 if (proto->flags & IR_VARARG_FUNC) { in ir_print_proto()
27 } else if (proto->flags & IR_VARARG_FUNC) { in ir_print_proto()
30 fprintf(f, "): %s", ir_type_cname[proto->ret_type]); in ir_print_proto()
31 if (proto->flags & IR_FASTCALL_FUNC) { in ir_print_proto()
33 } else if (proto->flags & IR_BUILTIN_FUNC) { in ir_print_proto()
101 ir_print_proto(ctx, insn->proto, f); in ir_save()
[all …]
H A Dir.c645 IR_ASSERT(proto >= 0 && proto < 0xffff); in ir_const_func_addr()
653 IR_ASSERT(proto >= 0 && proto < 0xffff); in ir_const_func()
706 ir_proto_t proto; in ir_proto_0() local
708 proto.flags = flags; in ir_proto_0()
716 ir_proto_t proto; in ir_proto_1() local
718 proto.flags = flags; in ir_proto_1()
727 ir_proto_t proto; in ir_proto_2() local
729 proto.flags = flags; in ir_proto_2()
739 ir_proto_t proto; in ir_proto_3() local
753 ir_proto_t proto; in ir_proto_4() local
[all …]
H A Dir_gcm.c1009 const char *proto = ir_get_strl(ctx, new_insn->proto, &len); in ir_schedule() local
1010 new_insn->proto = ir_strl(&new_ctx, proto, len); in ir_schedule()
1016 const char *proto = ir_get_strl(ctx, new_insn->proto, &len); in ir_schedule() local
1017 new_insn->proto = ir_strl(&new_ctx, proto, len); in ir_schedule()
1037 if (insn->proto) { in ir_schedule()
1039 const char *proto = ir_get_strl(ctx, insn->proto, &len); in ir_schedule() local
1040 new_insn->proto = ir_strl(&new_ctx, proto, len); in ir_schedule()
1042 new_insn->proto = 0; in ir_schedule()
1046 if (insn->proto) { in ir_schedule()
1048 const char *proto = ir_get_strl(ctx, insn->proto, &len); in ir_schedule() local
[all …]
H A Dir_emit.c77 if (func->proto) { in ir_call_proto()
78 return (const ir_proto_t *)ir_get_str(ctx, func->proto); in ir_call_proto()
98 if (func->proto) { in ir_is_fastcall()
99 const ir_proto_t *proto = (const ir_proto_t *)ir_get_str(ctx, func->proto); in ir_is_fastcall() local
101 return (proto->flags & IR_FASTCALL_FUNC) != 0; in ir_is_fastcall()
105 const ir_proto_t *proto = (const ir_proto_t *)ir_get_str(ctx, ctx->ir_base[insn->op2].op2); in ir_is_fastcall() local
107 return (proto->flags & IR_FASTCALL_FUNC) != 0; in ir_is_fastcall()
122 const ir_proto_t *proto = ir_call_proto(ctx, insn); in ir_is_vararg() local
124 if (proto) { in ir_is_vararg()
125 return (proto->flags & IR_VARARG_FUNC) != 0; in ir_is_vararg()
H A Dir.h459 uint16_t proto;
661 ir_ref ir_const_func_addr(ir_ctx *ctx, uintptr_t c, ir_ref proto);
662 ir_ref ir_const_func(ir_ctx *ctx, ir_ref str, ir_ref proto);
855 void ir_print_proto(const ir_ctx *ctx, ir_ref proto, FILE *f);
H A Dir_dump.c491 ir_print_proto(ctx, insn->proto, f); in ir_dump_codegen()
497 ir_print_proto(ctx, insn->proto, f); in ir_dump_codegen()
H A Dir_x86.dasc1764 #define IR_IS_FP_FUNC_1(proto, _type) (proto->params_count == 1 && \
1770 const ir_proto_t *proto = (const ir_proto_t *)ir_get_str(ctx, func->proto);
1772 if (proto->flags & IR_BUILTIN_FUNC) {
1777 if (IR_IS_FP_FUNC_1(proto, IR_DOUBLE)) {
1781 if (IR_IS_FP_FUNC_1(proto, IR_FLOAT)) {
1785 if (IR_IS_FP_FUNC_1(proto, IR_DOUBLE)) {
1789 if (IR_IS_FP_FUNC_1(proto, IR_FLOAT)) {
1797 if (IR_IS_FP_FUNC_1(proto, IR_FLOAT)) {
1805 if (IR_IS_FP_FUNC_1(proto, IR_FLOAT)) {
1813 if (IR_IS_FP_FUNC_1(proto, IR_FLOAT)) {
[all …]
H A Dir_aarch64.dasc4621 const ir_proto_t *proto = ir_call_proto(ctx, insn);
4622 …int last_named_input = (proto && (proto->flags & IR_VARARG_FUNC)) ? proto->params_count + 2 : insn…
4704 const ir_proto_t *proto = ir_call_proto(ctx, insn);
4705 …int last_named_input = (proto && (proto->flags & IR_VARARG_FUNC)) ? proto->params_count + 2 : insn…
/php-src/ext/enchant/tests/
H A Denchant_broker_set_dict_path.phpt2 proto bool enchant_broker_set_dict_path(resource broker, int dict_type, string value) function
3 proto string enchant_broker_get_dict_path(resource broker, int dict_type) function
/php-src/Zend/
H A Dzend_inheritance.h43 …ry* (*zend_inheritance_cache_add)(zend_class_entry *ce, zend_class_entry *proto, zend_class_entry …
H A Dzend_inheritance.c769 || (proto->common.fn_flags & ZEND_ACC_ABSTRACT)); in zend_do_perform_implementation_check()
798 i < proto_num_args ? &proto->common.arg_info[i] : in zend_do_perform_implementation_check()
1094 zend_function *proto; in do_inheritance_check_on_method_ex() local
1145 proto = parent->common.prototype ? in do_inheritance_check_on_method_ex()
1151 if (!(proto->common.fn_flags & ZEND_ACC_ABSTRACT)) { in do_inheritance_check_on_method_ex()
1154 parent = proto; in do_inheritance_check_on_method_ex()
1170 child->common.prototype = proto; in do_inheritance_check_on_method_ex()
3012 zend_class_entry *proto = NULL; in zend_do_link_class() local
3107 proto = ce; in zend_do_link_class()
3346 zend_class_entry *proto = NULL; in zend_try_early_bind() local
[all …]
/php-src/ext/mysqlnd/
H A Dmysqlnd_ext_plugin.h43 …ysqlnd_plugin_get_plugin_protocol_data(proto, p_id) mysqlnd_plugin_area_getters.get_protocol_dec… argument
/php-src/ext/pdo_pgsql/tests/
H A Dbug48764.phpt2 Bug #48764 (PDO_pgsql::query always uses implicit prepared statements if v3 proto available)
/php-src/main/streams/
H A Dxp_socket.c927 PHPAPI php_stream *php_stream_generic_socket_factory(const char *proto, size_t protolen, in php_stream_generic_socket_factory() argument
938 if (strncmp(proto, "tcp", protolen) == 0) { in php_stream_generic_socket_factory()
940 } else if (strncmp(proto, "udp", protolen) == 0) { in php_stream_generic_socket_factory()
944 else if (strncmp(proto, "unix", protolen) == 0) { in php_stream_generic_socket_factory()
946 } else if (strncmp(proto, "udg", protolen) == 0) { in php_stream_generic_socket_factory()
H A Dphp_stream_transport.h26 typedef php_stream *(php_stream_transport_factory_func)(const char *proto, size_t protolen,
/php-src/ext/standard/
H A Dbasic_functions.c2169 char *proto; local
2175 Z_PARAM_STRING(proto, proto_len)
2187 serv = getservbyname(ZSTR_VAL(name), proto);
2195 serv = getservbyname("imap2", proto);
2211 char *proto; local
2218 Z_PARAM_STRING(proto, proto_len)
2221 serv = getservbyport(htons((unsigned short) port), proto);
2259 zend_long proto; local
2263 Z_PARAM_LONG(proto)
2266 ent = getprotobynumber((int)proto);
/php-src/ext/standard/tests/strings/
H A Dstrspn_variation5.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
H A Dstrcspn_variation5.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
H A Dstrspn_variation9.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
H A Dstrcspn_variation9.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
/php-src/ext/openssl/
H A Dxp_ssl.c2765 php_stream *php_openssl_ssl_socket_factory(const char *proto, size_t protolen, in php_openssl_ssl_socket_factory() argument
2804 if (strncmp(proto, "ssl", protolen) == 0) { in php_openssl_ssl_socket_factory()
2807 } else if (strncmp(proto, "sslv2", protolen) == 0) { in php_openssl_ssl_socket_factory()
2811 } else if (strncmp(proto, "sslv3", protolen) == 0) { in php_openssl_ssl_socket_factory()
2821 } else if (strncmp(proto, "tls", protolen) == 0) { in php_openssl_ssl_socket_factory()
2824 } else if (strncmp(proto, "tlsv1.0", protolen) == 0) { in php_openssl_ssl_socket_factory()
2827 } else if (strncmp(proto, "tlsv1.1", protolen) == 0) { in php_openssl_ssl_socket_factory()
2837 } else if (strncmp(proto, "tlsv1.2", protolen) == 0) { in php_openssl_ssl_socket_factory()
2847 } else if (strncmp(proto, "tlsv1.3", protolen) == 0) { in php_openssl_ssl_socket_factory()
/php-src/ext/opcache/
H A DZendAccelerator.c124 …rator_orig_inheritance_cache_add)(zend_class_entry *ce, zend_class_entry *proto, zend_class_entry …
2311 … zend_accel_inheritance_cache_add(zend_class_entry *ce, zend_class_entry *proto, zend_class_entry … in zend_accel_inheritance_cache_add() argument
2329 for (i = 0; i < proto->num_traits + proto->num_interfaces; i++) { in zend_accel_inheritance_cache_add()
2339 entry = proto->inheritance_cache; in zend_accel_inheritance_cache_add()
2341 …entry = zend_accel_inheritance_cache_find(entry, proto, parent, traits_and_interfaces, &needs_auto… in zend_accel_inheritance_cache_add()
2360 (sizeof(void*) * (proto->num_traits + proto->num_interfaces))); in zend_accel_inheritance_cache_add()
2398 (sizeof(void*) * (proto->num_traits + proto->num_interfaces)))); in zend_accel_inheritance_cache_add()
2400 for (i = 0; i < proto->num_traits + proto->num_interfaces; i++) { in zend_accel_inheritance_cache_add()
2425 entry->next = proto->inheritance_cache; in zend_accel_inheritance_cache_add()
2426 proto->inheritance_cache = entry; in zend_accel_inheritance_cache_add()
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c499 static ir_ref jit_CONST_FUNC_PROTO(zend_jit_ctx *jit, uintptr_t addr, ir_ref proto) in jit_CONST_FUNC_PROTO() argument
509 …it->ctx.ir_base[ref].opt == IR_OPT(IR_FUNC_ADDR, IR_ADDR) && jit->ctx.ir_base[ref].proto == proto); in jit_CONST_FUNC_PROTO()
514 insn->proto = proto; in jit_CONST_FUNC_PROTO()
524 ir_ref proto = flags ? ir_proto_0(&jit->ctx, flags, IR_I32) : 0; in jit_CONST_FUNC() local
526 ir_ref proto = 0; in jit_CONST_FUNC()
529 return jit_CONST_FUNC_PROTO(jit, addr, proto); in jit_CONST_FUNC()
577 insn->proto = flags ? ir_proto_0(&jit->ctx, flags, IR_I32) : 0; in jit_STUB_FUNC_ADDR()
579 insn->proto = 0; in jit_STUB_FUNC_ADDR()
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます16842 #>52 short x \b, proto %d
H A Dmagic16842 #>52 short x \b, proto %d

Completed in 320 milliseconds