Home | History | Annotate | Download | only in iso

Lines Matching refs:bytes

110         byte[] bytes = new byte[4];
111 bb.get(bytes);
114 result |= ((bytes[0] << 24) & 0xFF000000);
115 result |= ((bytes[1] << 16) & 0xFF0000);
116 result |= ((bytes[2] << 8) & 0xFF00);
117 result |= ((bytes[3]) & 0xFF);
123 byte[] bytes = new byte[2];
124 bb.get(bytes);
126 result |= ((bytes[0] << 8) & 0xFF00);
127 result |= ((bytes[1]) & 0xFF);