Home
last modified time | relevance | path

Searched refs:writeUint32 (Results 1 – 25 of 27) sorted by relevance

12

/external/libchrome/mojo/public/js/lib/
Dcodec.js265 Encoder.prototype.writeUint32 = function(val) { method in Encoder
315 this.writeUint32(this.handles.length - 1);
317 this.writeUint32(kEncodedInvalidHandleValue);
324 this.writeUint32(this.associatedEndpointHandles.length - 1);
326 this.writeUint32(kEncodedInvalidHandleValue);
335 this.writeUint32(numberOfBytes);
336 this.writeUint32(numberOfElements);
347 this.writeUint32(encodedSize);
348 this.writeUint32(numberOfElements);
420 this.writeUint32(kStructHeaderSize + kMapStructPayloadSize);
[all …]
/external/cronet/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Dwriter_test.js92 writer.writeUint32(1, -1);
95 writer.writeUint32(1, Infinity);
156 writer.writeUint32(1, 100);
159 writer.writeUint32(4, 200);
Ddecoder_test.js262 jspb.BinaryEncoder.prototype.writeUint32,
Dreader_test.js361 assertNotUndefined(jspb.BinaryWriter.prototype.writeUint32);
368 jspb.BinaryWriter.prototype.writeUint32, 1, Math.pow(2, 32) - 1,
/external/cronet/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Dwriter_test.js81 assertFails(function() {writer.writeUint32(1, -1);});
82 assertFails(function() {writer.writeUint32(1, Infinity);});
114 writer.writeUint32(1, 100);
117 writer.writeUint32(4, 200);
Ddecoder_test.js252 jspb.BinaryEncoder.prototype.writeUint32,
Dreader_test.js323 assertNotUndefined(jspb.BinaryWriter.prototype.writeUint32);
330 jspb.BinaryWriter.prototype.writeUint32,
/external/cronet/third_party/protobuf/js/binary/
Dencoder.js115 this.writeUint32(lowBits);
116 this.writeUint32(highBits);
284 jspb.BinaryEncoder.prototype.writeUint32 = function(value) { method in jspb.BinaryEncoder
305 this.writeUint32(jspb.utils.split64Low);
306 this.writeUint32(jspb.utils.split64High);
390 this.writeUint32(jspb.utils.split64Low);
405 this.writeUint32(jspb.utils.split64Low);
406 this.writeUint32(jspb.utils.split64High);
462 this.writeUint32(jspb.utils.split64Low);
463 this.writeUint32(jspb.utils.split64High);
Dwriter_test.js95 writer.writeUint32(1, -1);
98 writer.writeUint32(1, Infinity);
159 writer.writeUint32(1, 100);
162 writer.writeUint32(4, 200);
Dwriter.js331 this.writeUint32(field, /** @type {number} */(value));
528 jspb.BinaryWriter.prototype.writeUint32 = function(field, value) { method in jspb.BinaryWriter
641 this.encoder_.writeUint32(value);
1662 this.encoder_.writeUint32(value[i]);
Dreader_test.js362 assertNotUndefined(jspb.BinaryWriter.prototype.writeUint32);
369 jspb.BinaryWriter.prototype.writeUint32, 1, Math.pow(2, 32) - 1,
Ddecoder_test.js416 jspb.BinaryEncoder.prototype.writeUint32,
/external/flatbuffers/tests/my-game/example/
Dability.js16 this.bb.writeUint32(this.bb_pos + 0, value);
23 this.bb.writeUint32(this.bb_pos + 4, value);
Dability.ts21 this.bb!.writeUint32(this.bb_pos + 0, value);
30 this.bb!.writeUint32(this.bb_pos + 4, value);
Dtype-aliases.js89 this.bb.writeUint32(this.bb_pos + offset, value);
Dtype-aliases.ts117 this.bb!.writeUint32(this.bb_pos + offset, value);
Dmonster.js182 this.bb.writeUint32(this.bb_pos + offset, value);
230 this.bb.writeUint32(this.bb_pos + offset, value);
/external/flatbuffers/ts/
Dbyte-buffer.ts122 writeUint32(offset: number, value: number): void { method in ByteBuffer
135 this.writeUint32(offset, Number(BigInt.asUintN(32, value)));
136 this.writeUint32(offset + 4, Number(BigInt.asUintN(32, value >> BigInt(32))));
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp97 static int writeUint32(raw_ostream &OS, uint32_t Value) { in writeUint32() function
141 writeUint32(OS, InitExpr.Value.Float32); in writeInitExpr()
361 writeUint32(OS, Import.EventImport.Attribute); in writeSectionContent()
362 writeUint32(OS, Import.EventImport.SigIndex); in writeSectionContent()
547 writeUint32(OS, Obj.Header.Version); in writeWasm()
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dstruct_definition.tmpl155 encoder.writeUint32({{struct.name}}.encodedSize);
156 encoder.writeUint32({{struct.versions[-1].version}});
Dunion_definition.tmpl147 encoder.writeUint32(16);
148 encoder.writeUint32(val.$tag);
/external/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php310 public static function writeUint32(&$output, $value) function in Google\\Protobuf\\Internal\\GPBWire
586 if (!GPBWire::writeUint32($output, $value)) {
/external/cronet/third_party/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php310 public static function writeUint32(&$output, $value) function in Google\\Protobuf\\Internal\\GPBWire
586 if (!GPBWire::writeUint32($output, $value)) {
/external/cronet/third_party/protobuf/js/experimental/runtime/kernel/
Dwriter.js333 writeUint32(fieldNumber, value) { method in Writer
674 values.forEach(val => this.writeUint32(fieldNumber, val));
Dwriter_test.js470 writer.writeUint32(1, pair.intValue);

12