Home | History | Annotate | Download | only in efiboot

Lines Matching defs:ucs4

126 	uint32_t ucs4;
138 ucs4 = 0;
151 ucs4 = c & 0x07;
154 ucs4 = c & 0x0f;
157 ucs4 = c & 0x1f;
160 ucs4 = c & 0x7f;
166 ucs4 = (ucs4 << 6) + (c & 0x3f);
172 if (ucs4 > 0xffff)
174 *nm++ = (CHAR16)ucs4;