Home | History | Annotate | Download | only in mtp

Lines Matching refs:x80

68         if ((ch & 0x80) == 0) {
106 *dest++ = (uint8_t)(0x80 | ((ch >> 6) & 0x3F));
107 *dest++ = (uint8_t)(0x80 | (ch & 0x3F));
108 } else if (ch >= 0x80) {
110 *dest++ = (uint8_t)(0x80 | (ch & 0x3F));
128 *dest++ = (uint8_t)(0x80 | ((ch >> 6) & 0x3F));
129 *dest++ = (uint8_t)(0x80 | (ch & 0x3F));
130 } else if (ch >= 0x80) {
132 *dest++ = (uint8_t)(0x80 | (ch & 0x3F));
151 if ((ch1 & 0x80) == 0) {