OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:writeLittleEndian
(Results
1 - 3
of
3
) sorted by null
/external/flatbuffers/php/
ByteBuffer.php
120
public function
writeLittleEndian
($offset, $count, $data)
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])
[
all
...]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/snappy/
FramedSnappyCompressorOutputStream.java
130
writeLittleEndian
(3, b.length + 4L /* CRC */);
136
private void
writeLittleEndian
(final int numBytes, long num) throws IOException {
142
writeLittleEndian
(4, mask(checksum.getValue()));
SnappyCompressorOutputStream.java
215
writeLittleEndian
(sizeBytes, len - 1);
219
private void
writeLittleEndian
(final int numBytes, int num) throws IOException {
263
writeLittleEndian
(offsetBytes, offset);
Completed in 2069 milliseconds