Home
last modified time | relevance | path

Searched refs:zend_bool (Results 51 – 75 of 341) sorted by relevance

12345678910>>...14

/PHP-7.4/Zend/
H A Dzend_ptr_stack.c24 ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, zend_bool persistent) in zend_ptr_stack_init_ex()
99 ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), zend_bool free_elem… in zend_ptr_stack_clean()
H A Dzend_execute.h57 ZEND_API zend_bool ZEND_FASTCALL zend_verify_ref_assignable_zval(zend_reference *ref, zval *zv, zen…
58 ZEND_API zend_bool ZEND_FASTCALL zend_verify_prop_assignable_by_ref(zend_property_info *prop_info, …
78 …gn_to_typed_ref(zval *variable_ptr, zval *value, zend_uchar value_type, zend_bool strict, zend_ref…
100 …* zend_assign_to_variable(zval *variable_ptr, zval *value, zend_uchar value_type, zend_bool strict) in zend_assign_to_variable()
304 ZEND_API zend_bool zend_is_executing(void);
402 zend_bool zend_verify_property_type(zend_property_info *info, zval *property, zend_bool strict);
H A Dzend_cpuinfo.c93 static zend_bool is_avx_supported() { in is_avx_supported()
109 static zend_bool is_avx_supported() { in is_avx_supported()
H A Dzend_string.c316 ZEND_API void zend_interned_strings_switch_storage(zend_bool request) in zend_interned_strings_switch_storage()
328 ZEND_API zend_bool ZEND_FASTCALL zend_string_equal_val(zend_string *s1, zend_string *s2) in zend_string_equal_val()
366 ZEND_API zend_bool ZEND_FASTCALL I_WRAP_SONAME_FNNAME_ZU(NONE,zend_string_equal_val)(zend_string *s… in I_WRAP_SONAME_FNNAME_ZU()
396 ZEND_API zend_bool ZEND_FASTCALL zend_string_equal_val(zend_string *s1, zend_string *s2) in zend_string_equal_val()
434 ZEND_API zend_bool ZEND_FASTCALL I_WRAP_SONAME_FNNAME_ZU(NONE,zend_string_equal_val)(zend_string *s… in I_WRAP_SONAME_FNNAME_ZU()
H A Dzend.h205 zend_bool html_errors;
257 ZEND_API ZEND_COLD void zend_output_debug_string(zend_bool trigger_break, const char *format, ...) …
306 ZEND_API ZEND_COLD void zend_internal_type_error(zend_bool throw_exception, const char *format, ...…
307 ZEND_API ZEND_COLD void zend_internal_argument_count_error(zend_bool throw_exception, const char *f…
317 extern ZEND_API zend_bool zend_dtrace_enabled;
H A Dzend_stack.h43 ZEND_API void zend_stack_clean(zend_stack *stack, void (*func)(void *), zend_bool free_elements);
/PHP-7.4/ext/opcache/Optimizer/
H A Ddce.c63 static inline zend_bool is_bad_mod(const zend_ssa *ssa, int use, int def) { in is_bad_mod()
75 static inline zend_bool may_have_side_effects( in may_have_side_effects()
78 zend_bool reorder_dtor_effects) { in may_have_side_effects()
302 static inline zend_bool is_var_dead(context *ctx, int var_num) { in is_var_dead()
317 static zend_bool try_remove_var_def(context *ctx, int free_var, int use_chain, zend_op *opline) { in try_remove_var_def()
371 static zend_always_inline zend_bool may_be_refcounted(uint32_t type) { in may_be_refcounted()
376 static zend_bool dce_instr(context *ctx, zend_op *opline, zend_ssa_op *ssa_op) { in dce_instr()
464 static inline zend_bool may_break_varargs(const zend_op_array *op_array, const zend_ssa *ssa, const… in may_break_varargs()
480 int dce_optimize_op_array(zend_op_array *op_array, zend_ssa *ssa, zend_bool reorder_dtor_effects) { in dce_optimize_op_array()
486 zend_bool has_varargs = (ssa->cfg.flags & ZEND_FUNC_VARARG) != 0; in dce_optimize_op_array()
H A Dssa_integrity.c25 static inline zend_bool is_in_use_chain(zend_ssa *ssa, int var, int check) { in is_in_use_chain()
35 static inline zend_bool is_in_phi_use_chain(zend_ssa *ssa, int var, zend_ssa_phi *check) { in is_in_phi_use_chain()
45 static inline zend_bool is_used_by_op(zend_ssa *ssa, int op, int check) { in is_used_by_op()
52 static inline zend_bool is_defined_by_op(zend_ssa *ssa, int op, int check) { in is_defined_by_op()
59 static inline zend_bool is_in_phi_sources(zend_ssa *ssa, zend_ssa_phi *phi, int check) { in is_in_phi_sources()
69 static inline zend_bool is_in_predecessors(zend_cfg *cfg, zend_basic_block *block, int check) { in is_in_predecessors()
79 static inline zend_bool is_in_successors(zend_basic_block *block, int check) { in is_in_successors()
89 static inline zend_bool is_var_type(zend_uchar type) { in is_var_type()
H A Dzend_optimizer_internal.h74 static inline zend_bool zend_optimizer_is_loop_var_free(const zend_op *opline) { in zend_optimizer_is_loop_var_free()
114 zend_script *script, zend_op_array *op_array, zend_op *opline, zend_bool rt_constants);
119 int dce_optimize_op_array(zend_op_array *op_array, zend_ssa *ssa, zend_bool reorder_dtor_effects);
H A Dzend_ssa.h28 zend_bool underflow;
29 zend_bool overflow;
155 void zend_ssa_rename_var_uses(zend_ssa *ssa, int old_var, int new_var, zend_bool update_types);
215 static zend_always_inline zend_bool zend_ssa_is_no_val_use(const zend_op *opline, const zend_ssa_op… in zend_ssa_is_no_val_use()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_cmd.h105 zend_bool flags; /* General flags */
145 PHPDBG_API int phpdbg_stack_execute(phpdbg_param_t *stack, zend_bool allow_async_unsafe);
153 PHPDBG_API zend_bool phpdbg_match_param(const phpdbg_param_t *, const phpdbg_param_t *);
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_driver.c34 static zend_bool mysqlnd_library_initted = FALSE;
99 …onnection)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_object_factory) *factory, const zend_bool persistent) in MYSQLND_METHOD()
246 MYSQLND_METHOD(mysqlnd_object_factory, get_pfc)(const zend_bool persistent, MYSQLND_STATS * stats, … in MYSQLND_METHOD()
271 MYSQLND_METHOD(mysqlnd_object_factory, get_vio)(const zend_bool persistent, MYSQLND_STATS * stats, … in MYSQLND_METHOD()
296 …actory, get_protocol_payload_decoder_factory)(MYSQLND_CONN_DATA * conn, const zend_bool persistent) in MYSQLND_METHOD()
H A Dmysqlnd_priv.h35 …handle_local_infile(MYSQLND_CONN_DATA * conn, const char * const filename, zend_bool * is_warning);
/PHP-7.4/ext/ffi/
H A Dphp_ffi.h35 zend_bool is_cli;
59 zend_bool allow_vla;
60 zend_bool attribute_parsing;
61 zend_bool persistent;
219 void zend_ffi_declare_tag(const char *name, size_t name_len, zend_ffi_dcl *dcl, zend_bool incomplet…
/PHP-7.4/ext/pcre/
H A Dphp_pcre.h72 zend_bool jit;
74 zend_bool per_request_cache;
/PHP-7.4/main/
H A Dphp_variables.c76 zend_bool is_array = 0; in php_register_variable_ex()
298 static zend_bool add_post_var(zval *arr, post_var_data_t *var, zend_bool eof) in add_post_var()
349 static inline int add_post_vars(zval *arr, post_var_data_t *vars, zend_bool eof) in add_post_vars()
615 zend_bool php_std_auto_global_callback(char *name, uint32_t name_len) in php_std_auto_global_callback()
772 static zend_bool php_auto_globals_create_get(zend_string *name) in php_auto_globals_create_get()
787 static zend_bool php_auto_globals_create_post(zend_string *name) in php_auto_globals_create_post()
806 static zend_bool php_auto_globals_create_cookie(zend_string *name) in php_auto_globals_create_cookie()
821 static zend_bool php_auto_globals_create_files(zend_string *name) in php_auto_globals_create_files()
849 static zend_bool php_auto_globals_create_server(zend_string *name) in php_auto_globals_create_server()
886 static zend_bool php_auto_globals_create_env(zend_string *name) in php_auto_globals_create_env()
[all …]
/PHP-7.4/ext/opcache/
H A Dzend_accelerator_blacklist.h48 zend_bool zend_accel_blacklist_is_blacklisted(zend_blacklist *blacklist, char *verify_path, size_t …
/PHP-7.4/ext/standard/
H A Dbase64.h70 PHPAPI extern zend_string *php_base64_decode_ex(const unsigned char *, size_t, zend_bool);
H A Dhead.c37 zend_bool rep = 1; in PHP_FUNCTION()
189 …zend_long *expires, zend_string **path, zend_string **domain, zend_bool *secure, zend_bool *httpon… in php_head_parse_cookie_options_array()
236 zend_bool secure = 0, httponly = 0; in PHP_FUNCTION()
291 zend_bool secure = 0, httponly = 0; in PHP_FUNCTION()
H A Dphp_incomplete_class.h44 zend_bool incomplete_class ZEND_ATTRIBUTE_UNUSED = 0
H A Duniqid.c47 zend_bool more_entropy = 0; in PHP_FUNCTION()
H A Dhtml.h56 …nsigned char *old, size_t oldlen, int all, int flags, char *hint_charset, zend_bool double_encode);
/PHP-7.4/ext/intl/
H A Dphp_intl.h55 zend_bool use_exceptions;
/PHP-7.4/ext/intl/collator/
H A Dcollator_create.c28 static int collator_ctor(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_constructor) in collator_ctor()
/PHP-7.4/ext/zlib/
H A Dphp_zlib.h61 zend_bool handler_registered;

Completed in 96 milliseconds

12345678910>>...14