Lines Matching refs:count
41 int count = 0; in unsignedLeb128Size() local
45 count++; in unsignedLeb128Size()
48 return count + 1; in unsignedLeb128Size()
57 int count = 0; in readSignedLeb128() local
62 result |= (cur & 0x7f) << (count * 7); in readSignedLeb128()
64 count++; in readSignedLeb128()
65 } while (((cur & 0x80) == 0x80) && count < 5); in readSignedLeb128()
85 int count = 0; in readUnsignedLeb128() local
89 result |= (cur & 0x7f) << (count * 7); in readUnsignedLeb128()
90 count++; in readUnsignedLeb128()
91 } while (((cur & 0x80) == 0x80) && count < 5); in readUnsignedLeb128()