Lines Matching refs:codepoint
186 unsigned short codepoint;
200 codepoint=str[0];
203 codepoint=(str[0]&0x1F)<<6 | (str[1]&0x3F);
206 codepoint=(str[0]&0x0F)<<12 | (str[1]&0x3F)<<6 | (str[2]&0x3F);
209 codepoint=(unsigned)'?';
212 ptr->byte1 = (codepoint >> 8) & 0xff;
213 ptr->byte2 = codepoint & 0xff;
225 unsigned short codepoint;
239 codepoint=str[0];
242 codepoint=(str[0]&0x1F)<<6 | (str[1]&0x3F);
245 codepoint=(str[0]&0x0F)<<12 | (str[1]&0x3F)<<6 | (str[2]&0x3F);
248 codepoint=(unsigned)'?';
251 ptr->byte1 = (codepoint >> 8) & 0xff;
252 ptr->byte2 = codepoint & 0xff;