Home
last modified time | relevance | path

Searched refs:readUint64 (Results 1 – 17 of 17) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DSevenZFile.java413 final long propertySize = readUint64(input); in readArchiveProperties()
478 archive.packPos = readUint64(header); in readPackInfo()
479 final long numPackStreams = readUint64(header); in readPackInfo()
484 archive.packSizes[i] = readUint64(header); in readPackInfo()
511 final long numFolders = readUint64(header); in readUnpackInfo()
529 folder.unpackSizes[i] = readUint64(header); in readUnpackInfo()
563 final long numStreams = readUint64(header); in readSubStreamsInfo()
583 final long size = readUint64(header); in readSubStreamsInfo()
639 final long numCoders = readUint64(header); in readFolder()
657 coders[i].numInStreams = readUint64(header); in readFolder()
[all …]
/external/protobuf/js/binary/
Dreader.js486 return this.readUint64();
694 jspb.BinaryReader.prototype.readUint64 = function() { method in jspb.BinaryReader
783 return this.decoder_.readUint64();
1117 return this.readPackedField_(this.decoder_.readUint64);
Dreader_test.js171 assertThrows(function() {reader.readUint64()});
324 assertNotUndefined(jspb.BinaryReader.prototype.readUint64);
334 jspb.BinaryReader.prototype.readUint64,
383 assertNotNull(jspb.BinaryReader.prototype.readUint64);
401 jspb.BinaryReader.prototype.readUint64,
Ddecoder_test.js262 assertThrows(function() {decoder.readUint64()});
297 jspb.BinaryDecoder.prototype.readUint64,
Ddecoder.js802 jspb.BinaryDecoder.prototype.readUint64 = function() { method in jspb.BinaryDecoder
/external/protobuf/js/compatibility_tests/v3.1.0/binary/
Dreader_test.js171 assertThrows(function() {reader.readUint64()});
324 assertNotUndefined(jspb.BinaryReader.prototype.readUint64);
334 jspb.BinaryReader.prototype.readUint64,
383 assertNotNull(jspb.BinaryReader.prototype.readUint64);
401 jspb.BinaryReader.prototype.readUint64,
Ddecoder_test.js221 assertThrows(function() {decoder.readUint64()});
256 jspb.BinaryDecoder.prototype.readUint64,
/external/protobuf/js/compatibility_tests/v3.0.0/binary/
Dreader_test.js171 assertThrows(function() {reader.readUint64()});
324 assertNotUndefined(jspb.BinaryReader.prototype.readUint64);
334 jspb.BinaryReader.prototype.readUint64,
383 assertNotNull(jspb.BinaryReader.prototype.readUint64);
401 jspb.BinaryReader.prototype.readUint64,
Ddecoder_test.js221 assertThrows(function() {decoder.readUint64()});
256 jspb.BinaryDecoder.prototype.readUint64,
/external/protobuf/php/tests/
Dphp_implementation_test.php96 GPBWire::readUint64($input, $value);
101 GPBWire::readUint64($input, $value);
106 GPBWire::readUint64($input, $value);
/external/flatbuffers/tests/
Dmonster_test_generated.ts791 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1218 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1310 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1577 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1601 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb…
1635 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1659 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb…
1675 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1699 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb…
2806 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
Dmonster_test_generated.js934 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1368 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1460 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1725 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1749 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c…
1783 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1807 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c…
1823 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1847 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c…
3012 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
/external/libchrome/mojo/public/js/lib/
Dcodec.js99 Decoder.prototype.readUint64 = function() { method in Decoder
121 var offset = this.readUint64();
701 this.requestID = this.decoder.readUint64();
816 return decoder.readUint64();
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dunion_definition.tmpl169 decoder.readUint64();
/external/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php185 public static function readUint64(&$input, &$value) function in Google\\Protobuf\\Internal\\GPBWire
DMessage.php338 if (!GPBWire::readUint64($input, $value)) {
/external/flatbuffers/js/
Dflatbuffers.js965 flatbuffers.ByteBuffer.prototype.readUint64 = function(offset) { method in flatbuffers.ByteBuffer