Searched refs:UTF8_TRAILS (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10.1/ruby-106/ruby/enc/
H A Dutf_8.c314 #define UTF8_TRAILS(code, shift) (UChar )((((code) >> (shift)) & 0x3f) | 0x80) macro
329 *p++ = UTF8_TRAILS(code, 6);
333 *p++ = UTF8_TRAILS(code, 12);
334 *p++ = UTF8_TRAILS(code, 6);
338 *p++ = UTF8_TRAILS(code, 18);
339 *p++ = UTF8_TRAILS(code, 12);
340 *p++ = UTF8_TRAILS(code, 6);
344 *p++ = UTF8_TRAILS(code, 24);
345 *p++ = UTF8_TRAILS(code, 18);
346 *p++ = UTF8_TRAILS(cod
[all...]

Completed in 171 milliseconds