Home
last modified time | relevance | path

Searched refs:writeLittleEndian (Results 1 – 3 of 3) sorted by relevance

/external/flatbuffers/php/
DByteBuffer.php120 public function writeLittleEndian($offset, $count, $data) function in Google\\FlatBuffers\\ByteBuffer
221 $this->writeLittleEndian($offset, 2, $value);
233 $this->writeLittleEndian($offset, 2, $value);
247 $this->writeLittleEndian($offset, 4, $value);
261 $this->writeLittleEndian($offset, 4, $value);
274 $this->writeLittleEndian($offset, 8, $value);
287 $this->writeLittleEndian($offset, 8, $value);
300 $this->writeLittleEndian($offset, 4, $v[1]);
314 $this->writeLittleEndian($offset, 4, $v[1]);
315 $this->writeLittleEndian($offset + 4, 4, $v[2]);
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/snappy/
DFramedSnappyCompressorOutputStream.java130 writeLittleEndian(3, b.length + 4L /* CRC */); in flushBuffer()
136 private void writeLittleEndian(final int numBytes, long num) throws IOException { in writeLittleEndian() method in FramedSnappyCompressorOutputStream
142 writeLittleEndian(4, mask(checksum.getValue())); in writeCrc()
DSnappyCompressorOutputStream.java215 writeLittleEndian(sizeBytes, len - 1); in writeLiteralBlockWithSize()
219 private void writeLittleEndian(final int numBytes, int num) throws IOException { in writeLittleEndian() method in SnappyCompressorOutputStream
263 writeLittleEndian(offsetBytes, offset); in writeBackReferenceWithLittleEndianOffset()