Searched refs:fromBuf (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/util/
H A DFastOutputStream.java131 public void write(byte[] fromBuf) throws IOException { argument
133 writeFast(fromBuf);
136 public void write(byte[] fromBuf, int offset, int length) argument
139 writeFast(fromBuf, offset, length);
190 public final void writeFast(byte[] fromBuf) { argument
192 int needed = len + fromBuf.length - buf.length;
196 System.arraycopy(fromBuf, 0, buf, len, fromBuf.length);
197 len += fromBuf.length;
205 public final void writeFast(byte[] fromBuf, in argument
[all...]

Completed in 106 milliseconds