/PHP-5.6/Zend/ |
H A D | zend_ts_hash.h | 40 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, dtor_func_t pDestructor, zend_bool per… 52 … _zend_ts_hash_add_or_update(TsHashTable *ht, char *arKey, uint nKeyLength, void *pData, uint nDat… 58 …hash_quick_add_or_update(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, void *pData, uint… 70 ZEND_API int zend_ts_hash_add_empty_element(TsHashTable *ht, char *arKey, uint nKeyLength); 81 ZEND_API int zend_ts_hash_del_key_or_index(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, … 87 ZEND_API ulong zend_ts_get_hash_value(TsHashTable *ht, char *arKey, uint nKeyLength); 90 ZEND_API int zend_ts_hash_find(TsHashTable *ht, char *arKey, uint nKeyLength, void **pData); 91 ZEND_API int zend_ts_hash_quick_find(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, void *… 95 ZEND_API int zend_ts_hash_exists(TsHashTable *ht, char *arKey, uint nKeyLength); 99 …TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size); [all …]
|
H A D | zend_hash.h | 46 typedef ulong (*hash_func_t)(const char *arKey, uint nKeyLength); 57 uint nKeyLength; 68 uint nTableSize; 69 uint nTableMask; 70 uint nNumOfElements; 88 uint nKeyLength; 108 …_zend_hash_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, void *pData, uint nDat… 114 …_quick_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, void *pData, uint… 232 …d_hash_splice(HashTable *ht, uint nDataSize, copy_ctor_func_t pCopyConstructor, uint offset, uint … 299 ZEND_API ulong zend_hash_func(const char *arKey, uint nKeyLength); [all …]
|
H A D | zend_constants.h | 37 uint name_len; 69 ZEND_API int zend_get_constant(const char *name, uint name_len, zval *result TSRMLS_DC); 70 ZEND_API int zend_get_constant_ex(const char *name, uint name_len, zval *result, zend_class_entry *… 71 ZEND_API void zend_register_bool_constant(const char *name, uint name_len, zend_bool bval, int flag… 72 ZEND_API void zend_register_null_constant(const char *name, uint name_len, int flags, int module_nu… 73 ZEND_API void zend_register_long_constant(const char *name, uint name_len, long lval, int flags, in… 74 ZEND_API void zend_register_double_constant(const char *name, uint name_len, double dval, int flags… 75 ZEND_API void zend_register_string_constant(const char *name, uint name_len, char *strval, int flag… 76 ZEND_API void zend_register_stringl_constant(const char *name, uint name_len, char *strval, uint st…
|
H A D | zend_ts_hash.c | 62 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, dtor_func_t pDestructor, zend_bool per… in _zend_ts_hash_init() 102 … _zend_ts_hash_add_or_update(TsHashTable *ht, char *arKey, uint nKeyLength, void *pData, uint nDat… in _zend_ts_hash_add_or_update() 113 …hash_quick_add_or_update(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, void *pData, uint… in _zend_ts_hash_quick_add_or_update() 135 ZEND_API int zend_ts_hash_add_empty_element(TsHashTable *ht, char *arKey, uint nKeyLength) in zend_ts_hash_add_empty_element() 190 ZEND_API int zend_ts_hash_del_key_or_index(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, … in zend_ts_hash_del_key_or_index() 201 ZEND_API ulong zend_ts_get_hash_value(TsHashTable *ht, char *arKey, uint nKeyLength) in zend_ts_get_hash_value() 212 ZEND_API int zend_ts_hash_find(TsHashTable *ht, char *arKey, uint nKeyLength, void **pData) in zend_ts_hash_find() 223 ZEND_API int zend_ts_hash_quick_find(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, void *… in zend_ts_hash_quick_find() 245 ZEND_API int zend_ts_hash_exists(TsHashTable *ht, char *arKey, uint nKeyLength) in zend_ts_hash_exists() 267 …(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) in zend_ts_hash_copy() [all …]
|
H A D | zend_ini.h | 67 uint name_length; 74 uint value_length; 77 uint orig_value_length; 97 ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_len… 98 ZEND_API int zend_alter_ini_entry_ex(char *name, uint name_length, char *new_value, uint new_value_… 99 ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage); 102 ZEND_API long zend_ini_long(char *name, uint name_length, int orig); 103 ZEND_API double zend_ini_double(char *name, uint name_length, int orig); 104 ZEND_API char *zend_ini_string(char *name, uint name_length, int orig); 105 ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists); [all …]
|
H A D | zend_ast.h | 50 ZEND_API zend_ast *zend_ast_create_unary(uint kind, zend_ast *op0); 51 ZEND_API zend_ast *zend_ast_create_binary(uint kind, zend_ast *op0, zend_ast *op1); 52 ZEND_API zend_ast *zend_ast_create_ternary(uint kind, zend_ast *op0, zend_ast *op1, zend_ast *op2); 53 ZEND_API zend_ast* zend_ast_create_dynamic(uint kind);
|
H A D | zend_hash.c | 197 uint i = 3; in _zend_hash_init() 245 uint nIndex; in _zend_hash_add_or_update() 310 uint nIndex; in _zend_hash_quick_add_or_update() 385 uint nIndex; in _zend_hash_index_update_or_next_insert() 467 uint nIndex; in zend_hash_rehash() 485 uint nIndex; in zend_hash_reindex() 510 uint nIndex; in zend_hash_del_key_or_index() 841 uint nIndex; in zend_hash_find() 864 uint nIndex; in zend_hash_quick_find() 889 uint nIndex; in zend_hash_exists() [all …]
|
H A D | zend_API.h | 292 ZEND_API int zend_disable_class(char *class_name, uint class_name_length TSRMLS_DC); 369 ZEND_API int _array_init(zval *arg, uint size ZEND_FILE_LINE_DC); 380 ZEND_API int add_assoc_long_ex(zval *arg, const char *key, uint key_len, long n); 381 ZEND_API int add_assoc_null_ex(zval *arg, const char *key, uint key_len); 382 ZEND_API int add_assoc_bool_ex(zval *arg, const char *key, uint key_len, int b); 383 ZEND_API int add_assoc_resource_ex(zval *arg, const char *key, uint key_len, int r); 384 ZEND_API int add_assoc_double_ex(zval *arg, const char *key, uint key_len, double d); 386 ZEND_API int add_assoc_stringl_ex(zval *arg, const char *key, uint key_len, char *str, uint length,… 387 ZEND_API int add_assoc_zval_ex(zval *arg, const char *key, uint key_len, zval *value); 423 …I int add_get_assoc_stringl_ex(zval *arg, const char *key, uint key_len, const char *str, uint len… [all …]
|
H A D | zend_ini.c | 247 ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_len… in zend_alter_ini_entry() 255 ZEND_API int zend_alter_ini_entry_ex(char *name, uint name_length, char *new_value, uint new_value_… in zend_alter_ini_entry_ex() 309 ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage) /* {{{ */ in zend_restore_ini_entry() 331 ZEND_API int zend_ini_register_displayer(char *name, uint name_length, void (*displayer)(zend_ini_e… in zend_ini_register_displayer() 348 ZEND_API long zend_ini_long(char *name, uint name_length, int orig) /* {{{ */ in zend_ini_long() 365 ZEND_API double zend_ini_double(char *name, uint name_length, int orig) /* {{{ */ in zend_ini_double() 382 ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists) /* {{{… in zend_ini_string_ex() 406 ZEND_API char *zend_ini_string(char *name, uint name_length, int orig) /* {{{ */ in zend_ini_string() 428 uint display_string_length; in zend_ini_displayer_cb()
|
H A D | zend_constants.c | 146 ZEND_API void zend_register_null_constant(const char *name, uint name_len, int flags, int module_nu… in zend_register_null_constant() 158 ZEND_API void zend_register_bool_constant(const char *name, uint name_len, zend_bool bval, int flag… in zend_register_bool_constant() 170 ZEND_API void zend_register_long_constant(const char *name, uint name_len, long lval, int flags, in… in zend_register_long_constant() 183 ZEND_API void zend_register_double_constant(const char *name, uint name_len, double dval, int flags… in zend_register_double_constant() 196 ZEND_API void zend_register_stringl_constant(const char *name, uint name_len, char *strval, uint st… in zend_register_stringl_constant() 209 ZEND_API void zend_register_string_constant(const char *name, uint name_len, char *strval, int flag… in zend_register_string_constant() 214 static int zend_get_special_constant(const char *name, uint name_len, zend_constant **c TSRMLS_DC) in zend_get_special_constant() 273 ZEND_API int zend_get_constant(const char *name, uint name_len, zval *result TSRMLS_DC) in zend_get_constant() 302 ZEND_API int zend_get_constant_ex(const char *name, uint name_len, zval *result, zend_class_entry *… in zend_get_constant_ex()
|
H A D | zend_config.nw.h | 30 typedef unsigned int uint; typedef
|
/PHP-5.6/sapi/cli/ |
H A D | cli.h | 33 extern PHP_CLI_API size_t sapi_cli_single_write(const char *str, uint str_length TSRMLS_DC); 36 size_t (*cli_shell_write)(const char *str, uint str_length TSRMLS_DC); 37 int (*cli_shell_ub_write)(const char *str, uint str_length TSRMLS_DC);
|
/PHP-5.6/win32/ |
H A D | select.c | 70 FD_SET((uint)i, &sock_read); in php_select() 73 FD_SET((uint)i, &sock_write); in php_select() 76 FD_SET((uint)i, &sock_except); in php_select() 139 FD_SET((uint)handle_slot_to_fd[i], &aread); in php_select() 142 FD_SET((uint)handle_slot_to_fd[i], &awrite); in php_select() 145 FD_SET((uint)handle_slot_to_fd[i], &aexcept); in php_select()
|
/PHP-5.6/ext/opcache/ |
H A D | zend_persist_calc.c | 29 #define START_SIZE() uint memory_used = 0 49 static uint zend_persist_zval_ptr_calc(zval **zp TSRMLS_DC); 50 static uint zend_persist_zval_calc(zval *z TSRMLS_DC); 52 static uint zend_hash_persist_calc(HashTable *ht, int (*pPersistElement)(void *pElement TSRMLS_DC),… in zend_hash_persist_calc() 98 static uint zend_persist_ast_calc(zend_ast *ast TSRMLS_DC) in zend_persist_ast_calc() 118 static uint zend_persist_zval_calc(zval *z TSRMLS_DC) 147 static uint zend_persist_zval_ptr_calc(zval **zp TSRMLS_DC) 159 static uint zend_persist_op_array_calc(zend_op_array *op_array TSRMLS_DC) 252 static uint zend_persist_property_info_calc(zend_property_info *prop TSRMLS_DC) 262 static uint zend_persist_class_entry_calc(zend_class_entry **pce TSRMLS_DC) [all …]
|
H A D | zend_accelerator_hash.c | 28 static uint prime_numbers[] = 30 static uint num_prime_numbers = sizeof(prime_numbers) / sizeof(uint); 41 uint i; in zend_accel_hash_init()
|
H A D | zend_persist.h | 26 uint zend_accel_script_persist_calc(zend_persistent_script *script, char *key, unsigned int key_len…
|
H A D | zend_accelerator_util_funcs.h | 41 unsigned int zend_adler32(unsigned int checksum, signed char *buf, uint len);
|
/PHP-5.6/ext/com_dotnet/ |
H A D | com_olechar.c | 33 PHP_COM_DOTNET_API OLECHAR *php_com_string_to_olestring(char *string, uint string_len, int codepage… in php_com_string_to_olestring() 74 PHP_COM_DOTNET_API char *php_com_olestring_to_string(OLECHAR *olestring, uint *string_len, int code… in php_com_olestring_to_string() 77 uint length = 0; in php_com_olestring_to_string()
|
/PHP-5.6/main/ |
H A D | php_ini.h | 31 PHPAPI zval *cfg_get_entry(const char *name, uint name_length); 39 PHPAPI void php_ini_activate_per_dir_config(char *path, uint path_len TSRMLS_DC); 40 PHPAPI void php_ini_activate_per_host_config(const char *host, uint host_len TSRMLS_DC);
|
H A D | php_main.h | 33 PHPAPI int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_modules, uint n… 50 PHPAPI void php_html_puts(const char *str, uint siz TSRMLS_DC);
|
H A D | SAPI.h | 54 uint header_len; 171 uint line_len; 187 SAPI_API int sapi_add_header_ex(char *header_line, uint header_line_len, zend_bool duplicate, zend_… 241 int (*read_post)(char *buffer, uint count_bytes TSRMLS_DC); 281 uint content_type_len;
|
H A D | php_output.h | 97 uint free:1; 98 uint _res:31; 113 …pedef void (*php_output_handler_func_t)(char *output, uint output_len, char **handled_output, uint…
|
/PHP-5.6/ext/phar/ |
H A D | dirstream.c | 98 uint keylen; in phar_dir_read() 185 uint keylen; in phar_make_dirstream() 206 if (keylen <= (uint)dirlen) { in phar_make_dirstream() 207 if (keylen == 0 || keylen < (uint)dirlen || !strncmp(str_key, dir, dirlen)) { in phar_make_dirstream() 307 uint keylen; in phar_wrapper_open_dir() 311 uint host_len; in phar_wrapper_open_dir() 388 if (keylen > (uint)i_len && 0 == memcmp(str_key, internal_file, i_len)) { in phar_wrapper_open_dir() 418 uint host_len; in phar_wrapper_mkdir() 550 uint host_len; in phar_wrapper_rmdir() 552 uint key_len; in phar_wrapper_rmdir() [all …]
|
/PHP-5.6/sapi/fpm/fpm/ |
H A D | fpm_php_trace.c | 73 uint lineno = 0; in fpm_php_trace_dump() 113 uint *lu = (uint *) &l; in fpm_php_trace_dump()
|
/PHP-5.6/sapi/embed/ |
H A D | php_embed.c | 47 static inline size_t php_embed_single_write(const char *str, uint str_length) in php_embed_single_write() 64 static int php_embed_ub_write(const char *str, uint str_length TSRMLS_DC) in php_embed_ub_write() 67 uint remaining = str_length; in php_embed_ub_write()
|