/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
D | StructInNestedNS.cs | 19 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()
|
D | TableInNestedNS.cs | 21 …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/ |
D | FlatBufferBuilder.cs | 168 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()
|
D | ByteBuffer.cs | 467 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/ |
D | BookReader.cs | 16 public void MutateBooksRead(int books_read) { __p.bb.PutInt(__p.bb_pos + 0, books_read); } in MutateBooksRead() 20 builder.PutInt(BooksRead); in CreateBookReader()
|
D | Rapunzel.cs | 16 public void MutateHairLength(int hair_length) { __p.bb.PutInt(__p.bb_pos + 0, hair_length); } in MutateHairLength() 20 builder.PutInt(HairLength); in CreateRapunzel()
|
D | Attacker.cs | 18 …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/ |
D | serializer.cc | 246 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 …]
|
D | context-serializer.cc | 280 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()
|
D | snapshot-source-sink.cc | 15 void SnapshotByteSink::PutInt(uintptr_t integer, const char* description) { in PutInt() function in v8::internal::SnapshotByteSink
|
D | startup-serializer.cc | 202 sink_.PutInt(isolate()->string_table()->NumberOfElements(), in SerializeStringTable() 275 sink->PutInt(cache_index, "startup_object_cache_index"); in SerializeUsingStartupObjectCache()
|
D | read-only-serializer.cc | 127 sink->PutInt(cache_index, "read_only_object_cache_index"); in SerializeUsingReadOnlyObjectCache()
|
D | snapshot-source-sink.h | 129 void PutInt(uintptr_t integer, const char* description);
|
D | code-serializer.cc | 117 sink_.PutInt(chunk_index, "ReadOnlyHeapRefChunkIndex"); in SerializeReadOnlyObject() 118 sink_.PutInt(chunk_offset, "ReadOnlyHeapRefChunkOffset"); in SerializeReadOnlyObject()
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | ByteBufferTests.cs | 94 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/ |
D | TypeAliases.cs | 29 …public bool MutateI32(int i32) { int o = __p.__offset(12); if (o != 0) { __p.bb.PutInt(o + __p.bb_… in MutateI32()
|
D | Monster.cs | 72 …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()
|