Searched refs:UTF_8_CONTINUE_MATCH (Results 1 – 1 of 1) sorted by relevance
115 #define UTF_8_CONTINUE_MATCH 0x80 macro157 if ((name[i+j] & UTF_8_CONTINUE_MASK) != UTF_8_CONTINUE_MATCH) { in _zip_guess_encoding()205 buf[1] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f); in _zip_unicode_to_utf8()210 buf[1] = UTF_8_CONTINUE_MATCH | ((codepoint >> 6) & 0x3f); in _zip_unicode_to_utf8()211 buf[2] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f); in _zip_unicode_to_utf8()215 buf[1] = UTF_8_CONTINUE_MATCH | ((codepoint >> 12) & 0x3f); in _zip_unicode_to_utf8()216 buf[2] = UTF_8_CONTINUE_MATCH | ((codepoint >> 6) & 0x3f); in _zip_unicode_to_utf8()217 buf[3] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f); in _zip_unicode_to_utf8()
Completed in 4 milliseconds