Lines Matching refs:bitpos
153 int bitpos;164 bitpos = 6;168 bitpos = 2*6;172 bitpos = 3*6;176 bitpos = 4*6;180 bitpos = 5*6;183 buffer_append_c(output, first | (chr >> bitpos));186 bitpos -= 6;187 buffer_append_c(output, 0x80 | ((chr >> bitpos) & 0x3f));188 } while (bitpos > 0);