Home
last modified time | relevance | path

Searched refs:writeIntLe (Results 1 – 5 of 5) sorted by relevance

/external/okhttp/okio/okio/src/main/java/okio/
DGzipSink.java125 sink.writeIntLe((int) crc.getValue()); // CRC of original data. in writeFooter()
126 sink.writeIntLe(deflater.getTotalIn()); // Length of original data. in writeFooter()
DRealBufferedSink.java143 @Override public BufferedSink writeIntLe(int i) throws IOException { in writeIntLe() method in RealBufferedSink
145 buffer.writeIntLe(i); in writeIntLe()
DBufferedSink.java88 BufferedSink writeIntLe(int i) throws IOException; in writeIntLe() method
DBuffer.java1006 @Override public Buffer writeIntLe(int i) {
/external/okhttp/okio/okio/src/test/java/okio/
DBufferedSinkTest.java150 @Test public void writeIntLe() throws Exception {
151 sink.writeIntLe(0xabcdef01);
152 sink.writeIntLe(0x87654321);