Home | History | Annotate | Download | only in iso

Lines Matching refs:bb

24     public static long readUInt32BE(ByteBuffer bb) {
25 long ch1 = readUInt8(bb);
26 long ch2 = readUInt8(bb);
27 long ch3 = readUInt8(bb);
28 long ch4 = readUInt8(bb);
34 public static long readUInt32(ByteBuffer bb) {
35 long i = bb.getInt();
42 public static int readUInt24(ByteBuffer bb) {
44 result += readUInt16(bb) << 8;
45 result += byte2int(bb.get());
50 public static int readUInt16(ByteBuffer bb) {
52 result += byte2int(bb.get()) << 8;
53 result += byte2int(bb.get());
57 public static int readUInt16BE(ByteBuffer bb) {
59 result += byte2int(bb.get());
60 result += byte2int(bb.get()) << 8;
64 public static int readUInt8(ByteBuffer bb) {
65 return byte2int(bb.get());
109 public static double readFixedPoint1616(ByteBuffer bb) {
111 bb.get(bytes);
122 public static float readFixedPoint88(ByteBuffer bb) {
124 bb.get(bytes);
131 public static String readIso639(ByteBuffer bb) {
132 int bits = readUInt16(bb);
141 public static String read4cc(ByteBuffer bb) {
143 bb.get(b);