Home
last modified time | relevance | path

Searched refs:writeUint64 (Results 1 – 23 of 23) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DSevenZOutputFile.java377 writeUint64(header, 0);
378 writeUint64(header, 0xffffFFFFL & numNonEmptyStreams);
383 writeUint64(header, entry.getCompressedSize());
402 writeUint64(header, numNonEmptyStreams);
416 writeUint64(header, s);
419 writeUint64(header, entry.getSize());
442 writeUint64(header, numCoders);
445 writeUint64(header, i + 1);
446 writeUint64(header, i);
485 writeUint64(header, files.size());
[all …]
/external/protobuf/js/compatibility_tests/v3.1.0/binary/
Dwriter_test.js70 assertFails(function() {writer.writeUint64(-1, 1);});
84 assertFails(function() {writer.writeUint64(1, -1);});
85 assertFails(function() {writer.writeUint64(1, Infinity);});
Dutils_test.js502 writer.writeUint64(1, Math.floor(i));
515 writer.writeUint64(123456789, Math.floor(i));
Ddecoder_test.js257 jspb.BinaryEncoder.prototype.writeUint64,
Dreader_test.js325 assertNotUndefined(jspb.BinaryWriter.prototype.writeUint64);
335 jspb.BinaryWriter.prototype.writeUint64,
/external/protobuf/js/compatibility_tests/v3.0.0/binary/
Dwriter_test.js70 assertFails(function() {writer.writeUint64(-1, 1);});
84 assertFails(function() {writer.writeUint64(1, -1);});
85 assertFails(function() {writer.writeUint64(1, Infinity);});
Dutils_test.js502 writer.writeUint64(1, Math.floor(i));
515 writer.writeUint64(123456789, Math.floor(i));
Ddecoder_test.js257 jspb.BinaryEncoder.prototype.writeUint64,
Dreader_test.js325 assertNotUndefined(jspb.BinaryWriter.prototype.writeUint64);
335 jspb.BinaryWriter.prototype.writeUint64,
/external/protobuf/js/binary/
Dwriter_test.js69 assertFails(function() {writer.writeUint64(-1, 1);});
83 assertFails(function() {writer.writeUint64(1, -1);});
84 assertFails(function() {writer.writeUint64(1, Infinity);});
Dutils_test.js503 writer.writeUint64(1, Math.floor(i));
516 writer.writeUint64(123456789, Math.floor(i));
Dwriter.js304 this.writeUint64(field, /** @type {number} */(value));
544 jspb.BinaryWriter.prototype.writeUint64 = function(field, value) { method in jspb.BinaryWriter
633 this.encoder_.writeUint64(value);
1470 this.encoder_.writeUint64(value[i]);
Ddecoder_test.js298 jspb.BinaryEncoder.prototype.writeUint64,
Dreader_test.js325 assertNotUndefined(jspb.BinaryWriter.prototype.writeUint64);
335 jspb.BinaryWriter.prototype.writeUint64,
Dencoder.js286 jspb.BinaryEncoder.prototype.writeUint64 = function(value) { method in jspb.BinaryEncoder
/external/libchrome/mojo/public/js/lib/
Dcodec.js278 Encoder.prototype.writeUint64 = function(val) { method in Encoder
298 return this.writeUint64(0);
302 this.writeUint64(offset);
624 encoder.writeUint64(requestID);
653 this.encoder.writeUint64(requestID);
820 encoder.writeUint64(val);
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dunion_definition.tmpl139 encoder.writeUint64(0);
140 encoder.writeUint64(0);
/external/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php315 public static function writeUint64(&$output, $value) function in Google\\Protobuf\\Internal\\GPBWire
539 if (!GPBWire::writeUint64($output, $value)) {
/external/flatbuffers/tests/
Dmonster_test_generated.ts805 this.bb!.writeUint64(this.bb_pos + offset, value);
1232 this.bb!.writeUint64(this.bb_pos + offset, value);
1324 this.bb!.writeUint64(this.bb_pos + offset, value);
1591 this.bb!.writeUint64(this.bb_pos + offset, value);
1649 this.bb!.writeUint64(this.bb_pos + offset, value);
1689 this.bb!.writeUint64(this.bb_pos + offset, value);
2820 this.bb!.writeUint64(this.bb_pos + offset, value);
Dmonster_test_generated.js948 this.bb.writeUint64(this.bb_pos + offset, value);
1382 this.bb.writeUint64(this.bb_pos + offset, value);
1474 this.bb.writeUint64(this.bb_pos + offset, value);
1739 this.bb.writeUint64(this.bb_pos + offset, value);
1797 this.bb.writeUint64(this.bb_pos + offset, value);
1837 this.bb.writeUint64(this.bb_pos + offset, value);
3026 this.bb.writeUint64(this.bb_pos + offset, value);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp90 static int writeUint64(raw_ostream &OS, uint64_t Value) { in writeUint64() function
144 writeUint64(OS, InitExpr.Value.Float64); in writeInitExpr()
/external/llvm-project/llvm/lib/ObjectYAML/
DWasmEmitter.cpp91 static int writeUint64(raw_ostream &OS, uint64_t Value) { in writeUint64() function
145 writeUint64(OS, InitExpr.Value.Float64); in writeInitExpr()
/external/flatbuffers/js/
Dflatbuffers.js1057 flatbuffers.ByteBuffer.prototype.writeUint64 = function(offset, value) { method in flatbuffers.ByteBuffer