Home
last modified time | relevance | path

Searched refs:readInt16 (Results 1 – 15 of 15) sorted by relevance

/third_party/flatbuffers/ts/
Dbyte-buffer.ts62 readInt16(offset: number): number { method in ByteBuffer
175 return vtable_offset < this.readInt16(vtable) ? this.readInt16(vtable + vtable_offset) : 0;
Dbuilder.ts391 if (len == this.bb.readInt16(vt2)) {
393 if (this.bb.readInt16(vt1 + j) != this.bb.readInt16(vt2 + j)) {
461 const ok = this.bb.readInt16(vtable_start + field) != 0;
/third_party/flatbuffers/tests/my-game/example/
Dtest.js13 return this.bb.readInt16(this.bb_pos);
Dtest.ts17 return this.bb!.readInt16(this.bb_pos);
Dtype-aliases.js46 return offset ? this.bb.readInt16(this.bb_pos + offset) : 0;
Dtype-aliases.ts59 return offset ? this.bb!.readInt16(this.bb_pos + offset) : 0;
Dmonster.js43 return offset ? this.bb.readInt16(this.bb_pos + offset) : 150;
55 return offset ? this.bb.readInt16(this.bb_pos + offset) : 100;
Dmonster.ts52 return offset ? this.bb!.readInt16(this.bb_pos + offset) : 150;
68 return offset ? this.bb!.readInt16(this.bb_pos + offset) : 100;
/third_party/flatbuffers/tests/optional_scalars/
Dscalar-stuff.js50 return offset ? this.bb.readInt16(this.bb_pos + offset) : 0;
54 return offset ? this.bb.readInt16(this.bb_pos + offset) : null;
58 return offset ? this.bb.readInt16(this.bb_pos + offset) : 42;
Dscalar-stuff.ts62 return offset ? this.bb!.readInt16(this.bb_pos + offset) : 0;
67 return offset ? this.bb!.readInt16(this.bb_pos + offset) : null;
72 return offset ? this.bb!.readInt16(this.bb_pos + offset) : 42;
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Ddecoder_test.js272 jspb.BinaryDecoder.prototype.readInt16,
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Ddecoder_test.js283 jspb.BinaryDecoder.prototype.readInt16,
/third_party/protobuf/js/binary/
Ddecoder_test.js433 jspb.BinaryDecoder.prototype.readInt16,
Ddecoder.js723 jspb.BinaryDecoder.prototype.readInt16 = function() { method in jspb.BinaryDecoder
/third_party/sqlite/src/
Dsqlite3.c194989 #define NCELL(pNode) readInt16(&(pNode)->zData[2])
195120 static int readInt16(u8 *p){
195388 pRtree->iDepth = readInt16(pNode->zData);
198546 sqlite3_result_int(ctx, readInt16(zBlob));
198819 iDepth = readInt16(aNode);
198826 nCell = readInt16(&aNode[2]);