Lines Matching refs:writeInt32
330 flatbuffers.Builder.prototype.writeInt32 = function(value) { method in flatbuffers.Builder
331 this.bb.writeInt32(this.space -= 4, value);
380 this.writeInt32(value);
583 this.writeInt32(this.offset() - offset + flatbuffers.SIZEOF_INT);
659 this.bb.writeInt32(this.space, existing_vtable - vtableloc);
666 this.bb.writeInt32(this.bb.capacity() - vtableloc, this.offset() - vtableloc);
741 this.writeInt32(this.vector_num_elems);
1006 flatbuffers.ByteBuffer.prototype.writeInt32 = function(offset, value) { method in flatbuffers.ByteBuffer
1029 this.writeInt32(offset, value.low);
1030 this.writeInt32(offset + 4, value.high);
1048 this.writeInt32(offset, flatbuffers.int32[0]);
1057 this.writeInt32(offset, flatbuffers.int32[flatbuffers.isLittleEndian ? 0 : 1]);
1058 this.writeInt32(offset + 4, flatbuffers.int32[flatbuffers.isLittleEndian ? 1 : 0]);