Searched refs:count_loc (Results 1 – 1 of 1) sorted by relevance
254 int count_loc = count; // local integer for faster access in write() local264 buf_loc[count_loc++] = (byte)c; in write()272 buf_loc[count_loc++] = (byte) (c); in write()275 buf_loc[count_loc++] = (byte) (0xc0 + (c >> 6)); in write()276 buf_loc[count_loc++] = (byte) (0x80 + (c & 0x3f)); in write()292 buf_loc[count_loc++] = (byte) (0xF0 | (((high + 0x40) >> 8) & 0xf0)); in write()293 buf_loc[count_loc++] = (byte) (0x80 | (((high + 0x40) >> 2) & 0x3f)); in write()294 buf_loc[count_loc++] = (byte) (0x80 | ((low >> 6) & 0x0f) + ((high << 4) & 0x30)); in write()295 buf_loc[count_loc++] = (byte) (0x80 | (low & 0x3f)); in write()299 buf_loc[count_loc++] = (byte) (0xe0 + (c >> 12)); in write()[all …]