Home | History | Annotate | Download | only in msdosfs

Lines Matching defs:inch

783 	uint16_t inch = le16toh(in[0]);
785 if (inch <= 0x007f) {
788 *out++ = inch;
790 } else if (inch <= 0x07ff) {
793 *out++ = 0xc0 | (inch >> 6);
794 *out++ = 0x80 | (inch & 0x3f);
800 *out++ = 0xe0 | (inch >> 12);
801 *out++ = 0x80 | ((inch >> 6) & 0x3f);
802 *out++ = 0x80 | (inch & 0x3f);
901 u_int16_t inch;
907 inch = le16toh(in[0]);
908 if (inch > 255)
911 p[0] = inch;