Home
last modified time | relevance | path

Searched refs:PutInt (Results 1 – 17 of 17) sorted by relevance

/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.cs19 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); } in MutateA()
21 public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); } in MutateB()
25 builder.PutInt(B); in CreateStructInNestedNS()
26 builder.PutInt(A); in CreateStructInNestedNS()
DTableInNestedNS.cs21 …public bool MutateFoo(int foo) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutInt(o + __p.bb_p… in MutateFoo()
/external/flatbuffers/net/FlatBuffers/
DFlatBufferBuilder.cs168 public void PutInt(int x) in PutInt() method in FlatBuffers.FlatBufferBuilder
170 _bb.PutInt(_space -= sizeof(int), x); in PutInt()
259 public void AddInt(int x) { Prep(sizeof(int), 0); PutInt(x); } in AddInt()
356 PutInt(off); in AddOffset()
374 PutInt(_vectorNumElems); in EndVector()
647 _bb.PutInt(_space, existingVtable - vtableloc); in EndObject()
662 _bb.PutInt(_bb.Length - vtableloc, Offset - vtableloc); in EndObject()
DByteBuffer.cs467 public void PutInt(int offset, int value) in PutInt() method in FlatBuffers.ByteBuffer
562 public void PutInt(int offset, int value) in PutInt() method in FlatBuffers.ByteBuffer
/external/flatbuffers/tests/union_vector/
DBookReader.cs16 public void MutateBooksRead(int books_read) { __p.bb.PutInt(__p.bb_pos + 0, books_read); } in MutateBooksRead()
20 builder.PutInt(BooksRead); in CreateBookReader()
DRapunzel.cs16 public void MutateHairLength(int hair_length) { __p.bb.PutInt(__p.bb_pos + 0, hair_length); } in MutateHairLength()
20 builder.PutInt(HairLength); in CreateRapunzel()
DAttacker.cs18 …int sword_attack_damage) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutInt(o + __p.bb_pos, sw… in MutateSwordAttackDamage()
/external/v8/src/snapshot/
Dserializer.cc246 sink_.PutInt(root_index, "root_index"); in PutRoot()
269 sink_.PutInt(reference.back_ref_index(), "BackRefIndex"); in PutBackReference()
276 sink_.PutInt(reference.attached_reference_index(), "AttachedRefIndex"); in PutAttachedReference()
284 sink_.PutInt(VariableRepeatCount::Encode(repeat_count), "repeat count"); in PutRepeat()
305 sink_.PutInt(forward_reference_id, "with this index"); in ResolvePendingForwardReference()
393 sink_->PutInt(size >> kObjectAlignmentBits, "ObjectSizeInWords"); in SerializePrologue()
450 sink_->PutInt(byte_length, "length"); in SerializeBackingStore()
590 sink_->PutInt(slots_to_output, "length"); in SerializeExternalStringAsSequentialString()
902 sink_->PutInt(encoded_reference.index(), "reference index"); in OutputExternalReference()
909 sink_->PutInt(encoded_reference.index(), "reference index"); in OutputExternalReference()
[all …]
Dcontext-serializer.cc280 embedder_fields_sink_.PutInt(reference->back_ref_index(), "BackRefIndex"); in SerializeJSObjectWithEmbedderFields()
281 embedder_fields_sink_.PutInt(i, "embedder field index"); in SerializeJSObjectWithEmbedderFields()
282 embedder_fields_sink_.PutInt(data.raw_size, "embedder fields data size"); in SerializeJSObjectWithEmbedderFields()
Dsnapshot-source-sink.cc15 void SnapshotByteSink::PutInt(uintptr_t integer, const char* description) { in PutInt() function in v8::internal::SnapshotByteSink
Dstartup-serializer.cc202 sink_.PutInt(isolate()->string_table()->NumberOfElements(), in SerializeStringTable()
275 sink->PutInt(cache_index, "startup_object_cache_index"); in SerializeUsingStartupObjectCache()
Dread-only-serializer.cc127 sink->PutInt(cache_index, "read_only_object_cache_index"); in SerializeUsingReadOnlyObjectCache()
Dsnapshot-source-sink.h129 void PutInt(uintptr_t integer, const char* description);
Dcode-serializer.cc117 sink_.PutInt(chunk_index, "ReadOnlyHeapRefChunkIndex"); in SerializeReadOnlyObject()
118 sink_.PutInt(chunk_offset, "ReadOnlyHeapRefChunkOffset"); in SerializeReadOnlyObject()
/external/flatbuffers/tests/FlatBuffers.Test/
DByteBufferTests.cs94 uut.PutInt(0, 0x0A0B0C0D); in ByteBuffer_PutIntPopulatesBufferCorrectly()
108 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(2, 0x0A0B0C0D)); in ByteBuffer_PutIntCannotPutAtOffsetPastLength()
115 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(0, 0x0A0B0C0D)); in ByteBuffer_PutIntChecksLength()
122 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(2, 0x0A0B0C0D)); in ByteBuffer_PutIntChecksLengthAndOffset()
/external/flatbuffers/tests/MyGame/Example/
DTypeAliases.cs29 …public bool MutateI32(int i32) { int o = __p.__offset(12); if (o != 0) { __p.bb.PutInt(o + __p.bb_… in MutateI32()
DMonster.cs72 …1(int testhashs32_fnv1) { int o = __p.__offset(36); if (o != 0) { __p.bb.PutInt(o + __p.bb_pos, te… in MutateTesthashs32Fnv1()
80 …(int testhashs32_fnv1a) { int o = __p.__offset(44); if (o != 0) { __p.bb.PutInt(o + __p.bb_pos, te… in MutateTesthashs32Fnv1a()