codepoint        2290 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, codepoint)
codepoint         183 ext/zip/lib/zip_utf-8.c _zip_unicode_to_utf8_len(zip_uint32_t codepoint)
codepoint         185 ext/zip/lib/zip_utf-8.c     if (codepoint < 0x0080)
codepoint         187 ext/zip/lib/zip_utf-8.c     if (codepoint < 0x0800)
codepoint         189 ext/zip/lib/zip_utf-8.c     if (codepoint < 0x10000)
codepoint         197 ext/zip/lib/zip_utf-8.c _zip_unicode_to_utf8(zip_uint32_t codepoint, zip_uint8_t *buf)
codepoint         199 ext/zip/lib/zip_utf-8.c     if (codepoint < 0x0080) {
codepoint         200 ext/zip/lib/zip_utf-8.c 	buf[0] = codepoint & 0xff;
codepoint         203 ext/zip/lib/zip_utf-8.c     if (codepoint < 0x0800) {
codepoint         204 ext/zip/lib/zip_utf-8.c 	buf[0] = UTF_8_LEN_2_MATCH | ((codepoint >> 6) & 0x1f);
codepoint         205 ext/zip/lib/zip_utf-8.c 	buf[1] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f);
codepoint         208 ext/zip/lib/zip_utf-8.c     if (codepoint < 0x10000) {
codepoint         209 ext/zip/lib/zip_utf-8.c 	buf[0] = UTF_8_LEN_3_MATCH | ((codepoint >> 12) & 0x0f);
codepoint         210 ext/zip/lib/zip_utf-8.c 	buf[1] = UTF_8_CONTINUE_MATCH | ((codepoint >> 6) & 0x3f);
codepoint         211 ext/zip/lib/zip_utf-8.c 	buf[2] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f);
codepoint         214 ext/zip/lib/zip_utf-8.c     buf[0] = UTF_8_LEN_4_MATCH | ((codepoint >> 18) & 0x07);
codepoint         215 ext/zip/lib/zip_utf-8.c     buf[1] = UTF_8_CONTINUE_MATCH | ((codepoint >> 12) & 0x3f);
codepoint         216 ext/zip/lib/zip_utf-8.c     buf[2] = UTF_8_CONTINUE_MATCH | ((codepoint >> 6) & 0x3f);
codepoint         217 ext/zip/lib/zip_utf-8.c     buf[3] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f);