Lines Matching refs:int_codepoint

12 static inline int convert_cp(UChar32* pcp, zend_string *string_codepoint, zend_long int_codepoint) {  in convert_cp()  argument
23 U8_NEXT(ZSTR_VAL(string_codepoint), i, string_codepoint_length, int_codepoint); in convert_cp()
31 if ((int_codepoint < UCHAR_MIN_VALUE) || (int_codepoint > UCHAR_MAX_VALUE)) { in convert_cp()
36 *pcp = (UChar32)int_codepoint; in convert_cp()
42 zend_long int_codepoint = 0; in parse_code_point_param() local
44 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in parse_code_point_param()
46 return convert_cp(cp, string_codepoint, int_codepoint); in parse_code_point_param()
89 zend_long int_codepoint = 0; in IC_METHOD() local
92 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
96 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
109 zend_long int_codepoint = 0; in IC_METHOD() local
112 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
116 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
217 zend_long int_codepoint = 0; in IC_METHOD() local
224 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
229 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
402 zend_long int_codepoint = 0; in IC_METHOD() local
405 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
410 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
433 zend_long int_codepoint = 0; in IC_METHOD() local
436 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
441 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
597 zend_long int_codepoint = -1; \
599 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) \
601 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { \