Home
last modified time | relevance | path

Searched refs:readUint32 (Results 1 – 25 of 32) sorted by relevance

12

/external/cronet/third_party/protobuf/js/binary/
Ddecoder.js666 jspb.BinaryDecoder.prototype.readUint32 = function() { method in jspb.BinaryDecoder
686 var bitsLow = this.readUint32();
687 var bitsHigh = this.readUint32();
700 var bitsLow = this.readUint32();
701 var bitsHigh = this.readUint32();
758 var bitsLow = this.readUint32();
759 var bitsHigh = this.readUint32();
772 var bitsLow = this.readUint32();
773 var bitsHigh = this.readUint32();
785 var bitsLow = this.readUint32();
[all …]
Dreader.js515 return this.readUint32();
676 jspb.BinaryReader.prototype.readUint32 = function() { method in jspb.BinaryReader
780 return this.decoder_.readUint32();
1185 return this.readPackedField_(this.decoder_.readUint32);
Dreader_test.js185 reader.readUint32()
361 assertNotUndefined(jspb.BinaryReader.prototype.readUint32);
368 jspb.BinaryReader.prototype.readUint32,
422 assertNotNull(jspb.BinaryReader.prototype.readUint32);
430 jspb.BinaryReader.prototype.readUint32, 12, '08 8C 80 80 80 00');
/external/flatbuffers/ts/
Dbyte-buffer.ts74 readUint32(offset: number): number { method in ByteBuffer
79 …return BigInt.asIntN(64, BigInt(this.readUint32(offset)) + (BigInt(this.readUint32(offset + 4)) <<…
83 …return BigInt.asUintN(64, BigInt(this.readUint32(offset)) + (BigInt(this.readUint32(offset + 4)) <…
/external/libchrome/mojo/public/js/lib/
Dcodec.js87 Decoder.prototype.readUint32 = function() { method in Decoder
133 return this.handles[this.readUint32()] || null;
137 return this.associatedEndpointHandles[this.readUint32()] || null;
141 var numberOfBytes = this.readUint32();
142 var numberOfElements = this.readUint32();
150 var numberOfBytes = this.readUint32();
151 var numberOfElements = this.readUint32();
692 var messageHeaderSize = this.decoder.readUint32();
694 var version = this.decoder.readUint32();
695 var interface_id = this.decoder.readUint32();
[all …]
/external/flatbuffers/tests/my-game/example/
Dability.js13 return this.bb.readUint32(this.bb_pos);
20 return this.bb.readUint32(this.bb_pos + 4);
Dability.ts17 return this.bb!.readUint32(this.bb_pos);
26 return this.bb!.readUint32(this.bb_pos + 4);
Dtype-aliases.js82 return offset ? this.bb.readUint32(this.bb_pos + offset) : 0;
Dtype-aliases.ts107 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
/external/cronet/third_party/protobuf/js/experimental/runtime/kernel/
Dreader.js156 function readUint32(bufferDecoder, start) { function
315 return readPacked(bufferDecoder, start, readUint32);
352 readUint32, property
Dreader_test.js218 expect(() => reader.readUint32(bufferDecoder, 0)).toThrow();
225 expect(() => reader.readUint32(pair.bufferDecoder, 0)).toThrow();
227 const d = reader.readUint32(pair.bufferDecoder, 0);
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dunion_definition.tmpl166 var size = decoder.readUint32();
168 decoder.readUint32();
174 var tag = decoder.readUint32();
Dstruct_definition.tmpl132 var numberOfBytes = decoder.readUint32();
133 var version = decoder.readUint32();
/external/cronet/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Dreader_test.js169 assertThrows(function() {reader.readUint32()});
322 assertNotUndefined(jspb.BinaryReader.prototype.readUint32);
329 jspb.BinaryReader.prototype.readUint32,
382 assertNotNull(jspb.BinaryReader.prototype.readUint32);
390 jspb.BinaryReader.prototype.readUint32,
Ddecoder_test.js251 jspb.BinaryDecoder.prototype.readUint32,
/external/cronet/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Dreader_test.js184 reader.readUint32()
360 assertNotUndefined(jspb.BinaryReader.prototype.readUint32);
367 jspb.BinaryReader.prototype.readUint32,
421 assertNotNull(jspb.BinaryReader.prototype.readUint32);
429 jspb.BinaryReader.prototype.readUint32, 12, '08 8C 80 80 80 00');
Ddecoder_test.js261 jspb.BinaryDecoder.prototype.readUint32,
/external/flatbuffers/tests/optional_scalars/
Dscalar-stuff.js86 return offset ? this.bb.readUint32(this.bb_pos + offset) : 0;
90 return offset ? this.bb.readUint32(this.bb_pos + offset) : null;
94 return offset ? this.bb.readUint32(this.bb_pos + offset) : 42;
Dscalar-stuff.ts107 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
112 return offset ? this.bb!.readUint32(this.bb_pos + offset) : null;
117 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 42;
/external/flatbuffers/tests/optional-scalars/
Dscalar-stuff.ts107 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
112 return offset ? this.bb!.readUint32(this.bb_pos + offset) : null;
117 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 42;
/external/protobuf/php/tests/
DPhpImplementationTest.php60 GPBWire::readUint32($input, $value);
65 GPBWire::readUint32($input, $value);
70 GPBWire::readUint32($input, $value);
/external/cronet/third_party/protobuf/php/tests/
DPhpImplementationTest.php60 GPBWire::readUint32($input, $value);
65 GPBWire::readUint32($input, $value);
70 GPBWire::readUint32($input, $value);
/external/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php180 public static function readUint32(&$input, &$value) function in Google\\Protobuf\\Internal\\GPBWire
/external/cronet/third_party/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php180 public static function readUint32(&$input, &$value) function in Google\\Protobuf\\Internal\\GPBWire
/external/flatbuffers/tests/ts/ts-flat-files/
Dmonster_test_generated.ts499 return this.bb!.readUint32(this.bb_pos);
503 return this.bb!.readUint32(this.bb_pos + 4);
870 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
890 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
1661 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;

12