/external/v8/src/snapshot/ |
D | serializer.cc | 162 sink_.PutInt(skip, "HotObjectSkipDistance"); in SerializeHotObject() 198 sink_.PutInt(skip, "BackRefSkipDistance"); in SerializeBackReference() 227 sink_.PutInt(skip, "SkipInPutRoot"); in PutRoot() 232 sink_.PutInt(root_index, "root_index"); in PutRoot() 246 sink_.PutInt(reference.back_reference(), "BackRefValue"); in PutBackReference() 259 sink_.PutInt(reference.attached_reference_index(), "AttachedRefIndex"); in PutAttachedReference() 348 sink_->PutInt(size >> kObjectAlignmentBits, "ObjectSizeInWords"); in SerializePrologue() 360 sink_->PutInt(size >> kObjectAlignmentBits, "ObjectSizeInWords"); in SerializePrologue() 365 sink_->PutInt(size >> kObjectAlignmentBits, "ObjectSizeInWords"); in SerializePrologue() 420 sink_->PutInt(bytes_to_output, "length"); in SerializeExternalString() [all …]
|
D | partial-serializer.cc | 77 sink_.PutInt(cache_index, "partial_snapshot_cache_index"); in SerializeObject() 145 sink_.PutInt(i, "internal field index"); in SerializeInternalFields() 146 sink_.PutInt(data.raw_size, "internal fields data size"); in SerializeInternalFields()
|
D | snapshot-source-sink.cc | 21 void SnapshotByteSink::PutInt(uintptr_t integer, const char* description) { in PutInt() function in v8::internal::SnapshotByteSink
|
D | snapshot-source-sink.h | 93 void PutInt(uintptr_t integer, const char* description);
|
D | serializer.h | 185 sink_.PutInt(skip, "SkipDistanceFromSerializeObject"); in FlushSkip()
|
D | code-serializer.cc | 142 sink_.PutInt(builtin_index, "builtin_index"); in SerializeBuiltin()
|
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
D | StructInNestedNS.cs | 17 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); } in MutateA() 19 public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); } in MutateB() 23 builder.PutInt(B); in CreateStructInNestedNS() 24 builder.PutInt(A); in CreateStructInNestedNS()
|
D | TableInNestedNS.cs | 19 …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() 233 public void AddInt(int x) { Prep(sizeof(int), 0); PutInt(x); } in AddInt() 277 PutInt(off); in AddOffset() 295 PutInt(_vectorNumElems); in EndVector() 543 _bb.PutInt(_space, existingVtable - vtableloc); in EndObject() 558 _bb.PutInt(_bb.Length - vtableloc, Offset - vtableloc); in EndObject()
|
D | ByteBuffer.cs | 192 public void PutInt(int offset, int value) in PutInt() method in FlatBuffers.ByteBuffer 270 public void PutInt(int offset, int value) in PutInt() method in FlatBuffers.ByteBuffer
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | ByteBufferTests.cs | 98 uut.PutInt(0, 0x0A0B0C0D); in ByteBuffer_PutIntPopulatesBufferCorrectly() 113 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(2, 0x0A0B0C0D)); in ByteBuffer_PutIntCannotPutAtOffsetPastLength() 121 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(0, 0x0A0B0C0D)); in ByteBuffer_PutIntChecksLength() 129 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(2, 0x0A0B0C0D)); in ByteBuffer_PutIntChecksLengthAndOffset()
|
/external/v8/tools/ |
D | js2c.py | 511 def PutInt(blob_file, value): function 531 PutInt(blob_file, len(value)); 546 PutInt(output, debug_sources) 551 PutInt(output, len(sources.names) - debug_sources)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.cs | 54 …1(int testhashs32_fnv1) { int o = __p.__offset(36); if (o != 0) { __p.bb.PutInt(o + __p.bb_pos, te… in MutateTesthashs32Fnv1() 62 …(int testhashs32_fnv1a) { int o = __p.__offset(44); if (o != 0) { __p.bb.PutInt(o + __p.bb_pos, te… in MutateTesthashs32Fnv1a()
|