Searched refs:num_words (Results 1 - 3 of 3) sorted by relevance

/fuchsia/zircon/system/ulib/trace-engine/include/trace-engine/
H A Dfields.h27 inline constexpr size_t WordsToBytes(size_t num_words) { argument
28 return num_words * sizeof(uint64_t);
/fuchsia/zircon/system/ulib/trace-reader/
H A Dreader.cpp642 Chunk::Chunk(const uint64_t* begin, size_t num_words) argument
643 : begin_(begin), current_(begin), end_(begin_ + num_words) {}
669 bool Chunk::ReadChunk(size_t num_words, Chunk* out_chunk) { argument
670 if (current_ + num_words > end_)
673 *out_chunk = Chunk(current_, num_words);
674 current_ += num_words;
679 auto num_words = BytesToWords(length); local
680 if (current_ + num_words > end_)
685 current_ += num_words;
689 bool Chunk::ReadInPlace(size_t num_words, cons argument
[all...]
/fuchsia/zircon/system/ulib/trace-reader/include/trace-reader/
H A Dreader.h165 explicit Chunk(const uint64_t* begin, size_t num_words);
180 bool ReadChunk(size_t num_words, Chunk* out_chunk);
181 bool ReadInPlace(size_t num_words, const void** out_ptr);

Completed in 78 milliseconds