Lines Matching refs:code
80 OnigCodePoint code; in utf16be_mbc_to_code() local
84 code = ((((p[0] - 0xd8) << 2) + ((p[1] & 0xc0) >> 6) + 1) << 16) in utf16be_mbc_to_code()
90 code = p[0] * 256 + p[1]; in utf16be_mbc_to_code()
92 return code; in utf16be_mbc_to_code()
96 utf16be_code_to_mbclen(OnigCodePoint code) in utf16be_code_to_mbclen() argument
98 return (code > 0xffff ? 4 : 2); in utf16be_code_to_mbclen()
102 utf16be_code_to_mbc(OnigCodePoint code, UChar *buf) in utf16be_code_to_mbc() argument
106 if (code > 0xffff) { in utf16be_code_to_mbc()
109 plane = (code >> 16) - 1; in utf16be_code_to_mbc()
111 high = (code & 0xff00) >> 8; in utf16be_code_to_mbc()
114 *p = (UChar )(code & 0xff); in utf16be_code_to_mbc()
118 *p++ = (UChar )((code & 0xff00) >> 8); in utf16be_code_to_mbc()
119 *p++ = (UChar )(code & 0xff); in utf16be_code_to_mbc()