Home | History | Annotate | Download | only in serializer

Lines Matching refs:x80

141     if (c < 0x80)
148 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f));
153 m_outputBytes[count++] = (byte) (0x80 + ((c >> 6) & 0x3f));
154 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f));
159 m_outputBytes[count++] = (byte) (0x80 + ((c >> 12) & 0x3f));
160 m_outputBytes[count++] = (byte) (0x80 + ((c >> 6) & 0x3f));
161 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f));
263 for(; i < n && (c = chars[i])< 0x80 ; i++ )
271 if (c < 0x80)
276 buf_loc[count_loc++] = (byte) (0x80 + (c & 0x3f));
293 buf_loc[count_loc++] = (byte) (0x80 | (((high + 0x40) >> 2) & 0x3f));
294 buf_loc[count_loc++] = (byte) (0x80 | ((low >> 6) & 0x0f) + ((high << 4) & 0x30));
295 buf_loc[count_loc++] = (byte) (0x80 | (low & 0x3f));
300 buf_loc[count_loc++] = (byte) (0x80 + ((c >> 6) & 0x3f));
301 buf_loc[count_loc++] = (byte) (0x80 + (c & 0x3f));
391 for(; i < n && (c = chars[i])< 0x80 ; i++ )
399 if (c < 0x80)
404 buf_loc[count_loc++] = (byte) (0x80 + (c & 0x3f));
421 buf_loc[count_loc++] = (byte) (0x80 | (((high + 0x40) >> 2) & 0x3f));
422 buf_loc[count_loc++] = (byte) (0x80 | ((low >> 6) & 0x0f) + ((high << 4) & 0x30));
423 buf_loc[count_loc++] = (byte) (0x80 | (low & 0x3f));
428 buf_loc[count_loc++] = (byte) (0x80 + ((c >> 6) & 0x3f));
429 buf_loc[count_loc++] = (byte) (0x80 + (c & 0x3f));