Home | History | Annotate | Download | only in Support

Lines Matching refs:x80

23       byte |= 0x80;
41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
45 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
46 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
50 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
51 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
52 *pBuf++ = static_cast<ByteType>(((pValue >> 14) & 0x7f) | 0x80);
56 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
57 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
58 *pBuf++ = static_cast<ByteType>(((pValue >> 14) & 0x7f) | 0x80);
59 *pBuf++ = static_cast<ByteType>(((pValue >> 21) & 0x7f) | 0x80);
79 byte |= 0x80;
99 if ((*pBuf & 0x80) == 0) {
102 } else if ((*(pBuf + 1) & 0x80) == 0) {
106 } else if ((*(pBuf + 2) & 0x80) == 0) {
119 if ((*(pBuf + 3) & 0x80) != 0) {
133 } while (byte & 0x80);
146 if ((byte & 0x80) == 0) {
151 if ((byte & 0x80) == 0) {
156 if ((byte & 0x80) == 0) {
161 if ((byte & 0x80) == 0) {
177 } while (byte & 0x80);
200 } while (byte & 0x80);
219 } while (byte & 0x80);