Lines Matching refs:code
55 utf16le_code_to_mbclen(OnigCodePoint code) in utf16le_code_to_mbclen() argument
57 return (code > 0xffff ? 4 : 2); in utf16le_code_to_mbclen()
85 OnigCodePoint code; in utf16le_mbc_to_code() local
90 code = ((((c1 - 0xd8) << 2) + ((c0 & 0xc0) >> 6) + 1) << 16) in utf16le_mbc_to_code()
95 code = c1 * 256 + p[0]; in utf16le_mbc_to_code()
97 return code; in utf16le_mbc_to_code()
101 utf16le_code_to_mbc(OnigCodePoint code, UChar *buf) in utf16le_code_to_mbc() argument
105 if (code > 0xffff) { in utf16le_code_to_mbc()
108 plane = code >> 16; in utf16le_code_to_mbc()
109 high = (code & 0xff00) >> 8; in utf16le_code_to_mbc()
113 *p++ = (UChar )(code & 0xff); in utf16le_code_to_mbc()
118 *p++ = (UChar )(code & 0xff); in utf16le_code_to_mbc()
119 *p++ = (UChar )((code & 0xff00) >> 8); in utf16le_code_to_mbc()