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

  /external/chromium/net/tools/flip_server/
balsa_headers.h 104 const char* GetPtr(Blocks::size_type block_idx) const {
105 DCHECK_LT(block_idx, blocks_.size())
106 << block_idx << ", " << blocks_.size();
107 return blocks_[block_idx].buffer;
110 char* GetPtr(Blocks::size_type block_idx) {
111 DCHECK_LT(block_idx, blocks_.size())
112 << block_idx << ", " << blocks_.size();
113 return blocks_[block_idx].buffer;
144 // StringPiece which points to that data. If block_idx != NULL, it will be
    [all...]
balsa_headers.cc 137 Blocks::size_type block_idx = can_write_to_contiguous_buffer_ ? 1 : 0; local
138 for (; block_idx < blocks_.size(); ++block_idx) {
139 if (blocks_[block_idx].bytes_free >= size) {
140 block = &blocks_[block_idx];
156 *block_buffer_idx = block_idx;
    [all...]

Completed in 69 milliseconds