Searched refs:number_of_bytes (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/ |
D | snapshot-source-sink.cc | 35 void SnapshotByteSource::CopyRaw(byte* to, int number_of_bytes) { in CopyRaw() argument 36 MemCopy(to, data_ + position_, number_of_bytes); in CopyRaw() 37 position_ += number_of_bytes; in CopyRaw() 53 void SnapshotByteSink::PutRaw(byte* data, int number_of_bytes, in PutRaw() argument 55 for (int i = 0; i < number_of_bytes; ++i) { in PutRaw() 60 void SnapshotByteSink::PutBlob(byte* data, int number_of_bytes, in PutBlob() argument 62 PutInt(number_of_bytes, description); in PutBlob() 63 PutRaw(data, number_of_bytes, description); in PutBlob() 76 bool SnapshotByteSource::GetBlob(const byte** data, int* number_of_bytes) { in GetBlob() argument 78 *number_of_bytes = size; in GetBlob()
|
D | snapshot-source-sink.h | 36 void CopyRaw(byte* to, int number_of_bytes); 51 bool GetBlob(const byte** data, int* number_of_bytes); 80 void PutRaw(byte* data, int number_of_bytes, const char* description); 81 void PutBlob(byte* data, int number_of_bytes, const char* description);
|