Lines Matching refs:int_codepoint

11 static inline int convert_cp(UChar32* pcp, zend_string *string_codepoint, zend_long int_codepoint) {  in convert_cp()  argument
22 U8_NEXT(ZSTR_VAL(string_codepoint), i, string_codepoint_length, int_codepoint); in convert_cp()
30 if ((int_codepoint < UCHAR_MIN_VALUE) || (int_codepoint > UCHAR_MAX_VALUE)) { in convert_cp()
35 *pcp = (UChar32)int_codepoint; in convert_cp()
41 zend_long int_codepoint = 0; in parse_code_point_param() local
43 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in parse_code_point_param()
45 return convert_cp(cp, string_codepoint, int_codepoint); in parse_code_point_param()
88 zend_long int_codepoint; in IC_METHOD() local
91 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
95 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
108 zend_long int_codepoint; in IC_METHOD() local
111 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
115 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
216 zend_long int_codepoint; in IC_METHOD() local
223 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
228 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
392 zend_long int_codepoint; in IC_METHOD() local
395 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
399 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
422 zend_long int_codepoint; in IC_METHOD() local
425 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
430 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
586 zend_long int_codepoint; \
588 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) \
590 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { \