Lines Matching refs:ZEND_FASTCALL

41 ZEND_API zend_result ZEND_FASTCALL add_function(zval *result, zval *op1, zval *op2);
42 ZEND_API zend_result ZEND_FASTCALL sub_function(zval *result, zval *op1, zval *op2);
43 ZEND_API zend_result ZEND_FASTCALL mul_function(zval *result, zval *op1, zval *op2);
44 ZEND_API zend_result ZEND_FASTCALL pow_function(zval *result, zval *op1, zval *op2);
45 ZEND_API zend_result ZEND_FASTCALL div_function(zval *result, zval *op1, zval *op2);
46 ZEND_API zend_result ZEND_FASTCALL mod_function(zval *result, zval *op1, zval *op2);
47 ZEND_API zend_result ZEND_FASTCALL boolean_xor_function(zval *result, zval *op1, zval *op2);
48 ZEND_API zend_result ZEND_FASTCALL boolean_not_function(zval *result, zval *op1);
49 ZEND_API zend_result ZEND_FASTCALL bitwise_not_function(zval *result, zval *op1);
50 ZEND_API zend_result ZEND_FASTCALL bitwise_or_function(zval *result, zval *op1, zval *op2);
51 ZEND_API zend_result ZEND_FASTCALL bitwise_and_function(zval *result, zval *op1, zval *op2);
52 ZEND_API zend_result ZEND_FASTCALL bitwise_xor_function(zval *result, zval *op1, zval *op2);
53 ZEND_API zend_result ZEND_FASTCALL shift_left_function(zval *result, zval *op1, zval *op2);
54 ZEND_API zend_result ZEND_FASTCALL shift_right_function(zval *result, zval *op1, zval *op2);
55 ZEND_API zend_result ZEND_FASTCALL concat_function(zval *result, zval *op1, zval *op2);
57 ZEND_API zend_bool ZEND_FASTCALL zend_is_identical(zval *op1, zval *op2);
59 ZEND_API zend_result ZEND_FASTCALL is_equal_function(zval *result, zval *op1, zval *op2);
60 ZEND_API zend_result ZEND_FASTCALL is_identical_function(zval *result, zval *op1, zval *op2);
61 ZEND_API zend_result ZEND_FASTCALL is_not_identical_function(zval *result, zval *op1, zval *op2);
62 ZEND_API zend_result ZEND_FASTCALL is_not_equal_function(zval *result, zval *op1, zval *op2);
63 ZEND_API zend_result ZEND_FASTCALL is_smaller_function(zval *result, zval *op1, zval *op2);
64 ZEND_API zend_result ZEND_FASTCALL is_smaller_or_equal_function(zval *result, zval *op1, zval *op2);
66 ZEND_API zend_bool ZEND_FASTCALL zend_class_implements_interface(const zend_class_entry *class_ce, …
67 ZEND_API zend_bool ZEND_FASTCALL instanceof_function_slow(const zend_class_entry *instance_ce, cons…
89 ZEND_API zend_uchar ZEND_FASTCALL _is_numeric_string_ex(const char *str, size_t length, zend_long *…
92 ZEND_API const char* ZEND_FASTCALL zend_memnstr_ex(const char *haystack, const char *needle, size_t…
93 ZEND_API const char* ZEND_FASTCALL zend_memnrstr_ex(const char *haystack, const char *needle, size_…
102 ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow(double d);
141 ZEND_API zend_uchar ZEND_FASTCALL is_numeric_str_function(const zend_string *str, zend_long *lval, …
247 ZEND_API zend_result ZEND_FASTCALL increment_function(zval *op1);
248 ZEND_API zend_result ZEND_FASTCALL decrement_function(zval *op2);
250 ZEND_API void ZEND_FASTCALL convert_scalar_to_number(zval *op);
251 ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op);
252 ZEND_API void ZEND_FASTCALL convert_to_long(zval *op);
253 ZEND_API void ZEND_FASTCALL convert_to_double(zval *op);
254 ZEND_API void ZEND_FASTCALL convert_to_long_base(zval *op, int base);
255 ZEND_API void ZEND_FASTCALL convert_to_null(zval *op);
256 ZEND_API void ZEND_FASTCALL convert_to_boolean(zval *op);
257 ZEND_API void ZEND_FASTCALL convert_to_array(zval *op);
258 ZEND_API void ZEND_FASTCALL convert_to_object(zval *op);
260 ZEND_API zend_long ZEND_FASTCALL zval_get_long_func(zval *op);
261 ZEND_API double ZEND_FASTCALL zval_get_double_func(zval *op);
262 ZEND_API zend_string* ZEND_FASTCALL zval_get_string_func(zval *op);
263 ZEND_API zend_string* ZEND_FASTCALL zval_try_get_string_func(zval *op);
314 ZEND_API zend_bool ZEND_FASTCALL _try_convert_to_string(zval *op);
333 ZEND_API int ZEND_FASTCALL zend_is_true(zval *op);
334 ZEND_API bool ZEND_FASTCALL zend_object_is_true(zval *op);
396 ZEND_API int ZEND_FASTCALL zend_compare(zval *op1, zval *op2);
398 ZEND_API int ZEND_FASTCALL compare_function(zval *result, zval *op1, zval *op2);
400 ZEND_API int ZEND_FASTCALL numeric_compare_function(zval *op1, zval *op2);
401 ZEND_API int ZEND_FASTCALL string_compare_function_ex(zval *op1, zval *op2, zend_bool case_insensit…
402 ZEND_API int ZEND_FASTCALL string_compare_function(zval *op1, zval *op2);
403 ZEND_API int ZEND_FASTCALL string_case_compare_function(zval *op1, zval *op2);
404 ZEND_API int ZEND_FASTCALL string_locale_compare_function(zval *op1, zval *op2);
406 ZEND_API void ZEND_FASTCALL zend_str_tolower(char *str, size_t length);
407 ZEND_API char* ZEND_FASTCALL zend_str_tolower_copy(char *dest, const char *source, size_t le…
408 ZEND_API char* ZEND_FASTCALL zend_str_tolower_dup(const char *source, size_t length);
409 ZEND_API char* ZEND_FASTCALL zend_str_tolower_dup_ex(const char *source, size_t length);
410 ZEND_API zend_string* ZEND_FASTCALL zend_string_tolower_ex(zend_string *str, bool persistent);
414 ZEND_API int ZEND_FASTCALL zend_binary_zval_strcmp(zval *s1, zval *s2);
415 ZEND_API int ZEND_FASTCALL zend_binary_zval_strncmp(zval *s1, zval *s2, zval *s3);
416 ZEND_API int ZEND_FASTCALL zend_binary_zval_strcasecmp(zval *s1, zval *s2);
417 ZEND_API int ZEND_FASTCALL zend_binary_zval_strncasecmp(zval *s1, zval *s2, zval *s3);
418 ZEND_API int ZEND_FASTCALL zend_binary_strcmp(const char *s1, size_t len1, const char *s2, size_t l…
419 ZEND_API int ZEND_FASTCALL zend_binary_strncmp(const char *s1, size_t len1, const char *s2, size_t …
420 ZEND_API int ZEND_FASTCALL zend_binary_strcasecmp(const char *s1, size_t len1, const char *s2, size…
421 ZEND_API int ZEND_FASTCALL zend_binary_strncasecmp(const char *s1, size_t len1, const char *s2, siz…
422 ZEND_API int ZEND_FASTCALL zend_binary_strcasecmp_l(const char *s1, size_t len1, const char *s2, si…
423 ZEND_API int ZEND_FASTCALL zend_binary_strncasecmp_l(const char *s1, size_t len1, const char *s2, s…
425 ZEND_API bool ZEND_FASTCALL zendi_smart_streq(zend_string *s1, zend_string *s2);
426 ZEND_API int ZEND_FASTCALL zendi_smart_strcmp(zend_string *s1, zend_string *s2);
427 ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2);
428 ZEND_API int ZEND_FASTCALL zend_compare_arrays(zval *a1, zval *a2);
429 ZEND_API int ZEND_FASTCALL zend_compare_objects(zval *o1, zval *o2);
431 ZEND_API int ZEND_FASTCALL zend_atoi(const char *str, size_t str_len);
432 ZEND_API zend_long ZEND_FASTCALL zend_atol(const char *str, size_t str_len);
434 ZEND_API void ZEND_FASTCALL zend_locale_sprintf_double(zval *op ZEND_FILE_LINE_DC);
929 ZEND_API zend_string* ZEND_FASTCALL zend_long_to_str(zend_long num);