Lines Matching refs:bytes
73 throw new EndOfStreamException("Read " + inputData.Length + " bytes of data when expecting " + size);
165 byte[] bytes = input.ReadBytes(4);
166 if (bytes.Length == 0)
171 if (bytes.Length != 4)
173 throw new EndOfStreamException("Read " + bytes.Length + " bytes of size when expecting 4");
175 return bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24);