Searched refs:codepoint (Results 1 – 10 of 10) sorted by relevance
183 _zip_unicode_to_utf8_len(zip_uint32_t codepoint) in _zip_unicode_to_utf8_len() argument185 if (codepoint < 0x0080) in _zip_unicode_to_utf8_len()187 if (codepoint < 0x0800) in _zip_unicode_to_utf8_len()189 if (codepoint < 0x10000) in _zip_unicode_to_utf8_len()199 if (codepoint < 0x0080) { in _zip_unicode_to_utf8()200 buf[0] = codepoint & 0xff; in _zip_unicode_to_utf8()203 if (codepoint < 0x0800) { in _zip_unicode_to_utf8()205 buf[1] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f); in _zip_unicode_to_utf8()208 if (codepoint < 0x10000) { in _zip_unicode_to_utf8()211 buf[2] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f); in _zip_unicode_to_utf8()[all …]
18 //first() and last() don't read codepoint and set the last code point var to -119 //The pointer is after the last read codepoint if moving forward and20 //before the last read codepoint is moving backwards28 //it's a post-increment operation as to the codepoint, i.e., it gives the codepoint
1989 *These match just the first codepoint (invalid sequence)1991 0+ These match just the first codepoint (invalid sequence)
1059 *These match just the first codepoint (invalid sequence)
1433 *These match just the first codepoint (invalid sequence)1435 0+ These match just the first codepoint (invalid sequence)
840 *These match just the first codepoint (invalid sequence)
2291 ZEND_ARG_INFO(0, codepoint)
1068 define virtual codepoint values for invalid encoding
5126 8-bit UTF-8 mode less than 0x10ffff and a valid codepoint5128 16-bit UTF-16 mode less than 0x10ffff and a valid codepoint5130 32-bit UTF-32 mode less than 0x10ffff and a valid codepoint
1042 caselessly. Previously, the high codepoint matched the low one, but not
Completed in 85 milliseconds