Lines Matching refs:likely
306 if (w < 0x0080) [[likely]] { in utf16_to_utf8_length()
310 if (w < 0x0800) [[likely]] { in utf16_to_utf8_length()
314 if (!is_any_surrogate(w)) [[likely]] { in utf16_to_utf8_length()
347 if (w < 0x0080) [[likely]] { in utf16_to_utf8()
353 if (w < 0x0800) [[likely]] { in utf16_to_utf8()
360 if (!is_any_surrogate(w)) [[likely]] { in utf16_to_utf8()
422 if ((c & 0x80) == 0) [[likely]] { in utf8_to_utf16_length()
431 if (c < 0xe0) [[likely]] { in utf8_to_utf16_length()
435 if (c < 0xf0) [[likely]] { in utf8_to_utf16_length()
489 if ((c & 0x80) == 0) [[likely]] { in utf8_to_utf16_no_null_terminator()
498 if (c < 0xe0) [[likely]] { in utf8_to_utf16_no_null_terminator()
506 if (c < 0xf0) [[likely]] { in utf8_to_utf16_no_null_terminator()