Lines Matching refs:writeInt32
336 flatbuffers.Builder.prototype.writeInt32 = function(value) { method in flatbuffers.Builder
337 this.bb.writeInt32(this.space -= 4, value);
386 this.writeInt32(value);
589 this.writeInt32(this.offset() - offset + flatbuffers.SIZEOF_INT);
665 this.bb.writeInt32(this.space, existing_vtable - vtableloc);
672 this.bb.writeInt32(this.bb.capacity() - vtableloc, this.offset() - vtableloc);
762 this.writeInt32(this.vector_num_elems);
1026 flatbuffers.ByteBuffer.prototype.writeInt32 = function(offset, value) { method in flatbuffers.ByteBuffer
1049 this.writeInt32(offset, value.low);
1050 this.writeInt32(offset + 4, value.high);
1068 this.writeInt32(offset, flatbuffers.int32[0]);
1077 this.writeInt32(offset, flatbuffers.int32[flatbuffers.isLittleEndian ? 0 : 1]);
1078 this.writeInt32(offset + 4, flatbuffers.int32[flatbuffers.isLittleEndian ? 1 : 0]);