HomeSort by relevance Sort by last modified time
    Searched refs:block_size_ (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
log-utils.h 66 blocks_[index] = NewArray<char>(block_size_);
69 int BlockIndex(int pos) const { return pos / block_size_; }
73 int PosInBlock(int pos) const { return pos % block_size_; }
79 const int block_size_; member in class:v8::internal::LogDynamicBuffer
log-utils.cc 39 : block_size_(block_size),
40 max_size_(max_size - (max_size % block_size_)),
43 blocks_(max_size_ / block_size_ + 1),
69 Min(buf_size - dest_buf_pos, block_size_ - block_read_pos));
75 if (block_read_pos == block_size_) {
107 Min(data_size - data_pos, block_size_ - block_write_pos_);
112 if (block_write_pos_ == block_size_) {
parser.cc 1515 int block_size_; member in class:v8::internal::InitializationBlockFinder
    [all...]

Completed in 26 milliseconds