Home
last modified time | relevance | path

Searched refs:writeInt32 (Results 1 – 25 of 40) sorted by relevance

12

/external/protobuf/js/binary/
Dreader_test.js342 jspb.BinaryWriter.prototype.writeInt32,
540 writer.writeInt32(1, 100);
544 writer.writeInt32(3, 300);
545 writer.writeInt32(4, 400);
546 writer.writeInt32(5, 500);
552 writer.writeInt32(7, 700);
606 writer.writeInt32(1, sentinel);
607 writer.writeInt32(1, 1);
608 writer.writeInt32(1, 1000);
609 writer.writeInt32(1, 1000000);
[all …]
Dwriter_test.js76 assertFails(function() {writer.writeInt32(1, -Infinity);});
77 assertFails(function() {writer.writeInt32(1, Infinity);});
Dwriter.js305 this.writeInt32(field, /** @type {number} */(value));
443 jspb.BinaryWriter.prototype.writeInt32 = function(field, value) { method in jspb.BinaryWriter
618 this.encoder_.writeInt32(value);
1452 this.encoder_.writeInt32(value[i]);
Ddecoder_test.js296 jspb.BinaryEncoder.prototype.writeInt32,
Dencoder.js296 jspb.BinaryEncoder.prototype.writeInt32 = function(value) { method in jspb.BinaryEncoder
/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.ts60 this.bb!.writeInt32(this.bb_pos + offset, value);
132 this.bb!.writeInt32(this.bb_pos + offset, value);
154 this.bb!.writeInt32(this.bb_pos + offset, value);
166 builder.writeInt32(b);
167 builder.writeInt32(a);
Dnamespace_test1_generated.js78 this.bb.writeInt32(this.bb_pos + offset, value);
161 this.bb.writeInt32(this.bb_pos + offset, value);
183 this.bb.writeInt32(this.bb_pos + offset, value);
195 builder.writeInt32(b);
196 builder.writeInt32(a);
/external/flatbuffers/js/
Dflatbuffers.js330 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);
[all …]
/external/flatbuffers/tests/union_vector/
Dunion_vector_generated.js70 this.bb.writeInt32(this.bb_pos + offset, value);
153 this.bb.writeInt32(this.bb_pos + offset, value);
164 builder.writeInt32(hair_length);
212 this.bb.writeInt32(this.bb_pos + offset, value);
223 builder.writeInt32(books_read);
Dunion_vector_generated.ts62 this.bb!.writeInt32(this.bb_pos + offset, value);
132 this.bb!.writeInt32(this.bb_pos + offset, value);
143 builder.writeInt32(hair_length);
184 this.bb!.writeInt32(this.bb_pos + offset, value);
195 builder.writeInt32(books_read);
/external/grpc-grpc/examples/node/static_codegen/route_guide/
Droute_guide_pb.js149 writer.writeInt32(
156 writer.writeInt32(
935 writer.writeInt32(
942 writer.writeInt32(
949 writer.writeInt32(
956 writer.writeInt32(
/external/llvm/lib/DebugInfo/CodeView/
DTypeRecordBuilder.cpp36 void TypeRecordBuilder::writeInt32(int32_t Value) { in writeInt32() function in TypeRecordBuilder
72 writeInt32(static_cast<int32_t>(Value)); in writeEncodedSignedInteger()
DMethodListRecordBuilder.cpp35 Builder.writeInt32(VTableSlotOffset); in writeMethod()
DTypeTableBuilder.cpp56 Builder.writeInt32(Record.getThisPointerAdjustment()); in writeMemberFunction()
286 Builder.writeInt32(Method.getVFTableOffset()); in writeMethodOverloadList()
DFieldListRecordBuilder.cpp77 Builder.writeInt32(Record.getVFTableOffset()); in writeOneMethod()
/external/tensorflow/tensorflow/lite/models/smartreply/ops/
Dpredict_test.cc49 writeInt32(num_output, &predict_option); in PredictOpModel()
88 void writeInt32(int32_t value, std::vector<uint8_t>* data) { in writeInt32() function in tflite::ops::custom::__anon95d2e5af0111::PredictOpModel
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecordBuilder.h34 void writeInt32(int32_t Value);
/external/grpc-grpc-java/protobuf-nano/src/generated/test/javanano/io/grpc/protobuf/nano/
DMessages.java54 output.writeInt32(1, this.i); in writeTo()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java195 public abstract void writeInt32(int fieldNumber, int value) throws IOException; in writeInt32() method in CodedOutputStream
257 writeInt32(fieldNumber, value); in writeEnum()
1125 public final void writeInt32(final int fieldNumber, final int value) throws IOException { in writeInt32() method in CodedOutputStream.ArrayEncoder
1495 public void writeInt32(final int fieldNumber, final int value) throws IOException { in writeInt32() method in CodedOutputStream.NioEncoder
1969 public void writeInt32(final int fieldNumber, final int value) throws IOException { in writeInt32() method in CodedOutputStream.ByteOutputEncoder
2272 public void writeInt32(final int fieldNumber, final int value) throws IOException { in writeInt32() method in CodedOutputStream.OutputStreamEncoder
/external/libchrome/mojo/public/js/lib/
Dcodec.js260 Encoder.prototype.writeInt32 = function(val) { method in Encoder
781 encoder.writeInt32(val);
882 encoder.writeInt32(val);
/external/protobuf/objectivec/
DGPBCodedOutputStream.h150 - (void)writeInt32:(int32_t)fieldNumber value:(int32_t)value;
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DCodedOutputByteBufferNano.java121 public void writeInt32(final int fieldNumber, final int value) in writeInt32() method in CodedOutputByteBufferNano
1187 writeInt32(number, int32Value); in writeField()
/external/flatbuffers/tests/
Dmonster_test_generated.ts545 builder.writeInt32(distance);
546 builder.writeInt32(id);
1096 this.bb!.writeInt32(this.bb_pos + offset, value);
1188 this.bb!.writeInt32(this.bb_pos + offset, value);
2664 this.bb!.writeInt32(this.bb_pos + offset, value);
Dmonster_test_generated.js613 builder.writeInt32(distance);
614 builder.writeInt32(id);
1187 this.bb.writeInt32(this.bb_pos + offset, value);
1279 this.bb.writeInt32(this.bb_pos + offset, value);
2810 this.bb.writeInt32(this.bb_pos + offset, value);
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
DCodedOutputStreamMicro.java148 public void writeInt32(final int fieldNumber, final int value) in writeInt32() method in CodedOutputStreamMicro

12