Home
last modified time | relevance | path

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

/external/v8/src/snapshot/
Dserializer.cc162 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 …]
Dpartial-serializer.cc77 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()
Dsnapshot-source-sink.cc21 void SnapshotByteSink::PutInt(uintptr_t integer, const char* description) { in PutInt() function in v8::internal::SnapshotByteSink
Dsnapshot-source-sink.h93 void PutInt(uintptr_t integer, const char* description);
Dserializer.h185 sink_.PutInt(skip, "SkipDistanceFromSerializeObject"); in FlushSkip()
Dcode-serializer.cc142 sink_.PutInt(builtin_index, "builtin_index"); in SerializeBuiltin()
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.cs17 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()
DTableInNestedNS.cs19 …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()
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()
DByteBuffer.cs192 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/
DByteBufferTests.cs98 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/
Djs2c.py511 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/
DMonster.cs54 …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()