HomeSort by relevance Sort by last modified time
    Searched defs:next_size (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/tcmalloc/chromium/src/
common.cc 161 int next_size = 0; local
164 for (int s = next_size; s <= max_size_in_class; s += kAlignment) {
167 next_size = max_size_in_class + kAlignment;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
common.cc 157 int next_size = 0; local
160 for (int s = next_size; s <= max_size_in_class; s += kAlignment) {
163 next_size = max_size_in_class + kAlignment;
  /external/chromium_org/net/websockets/
websocket_frame_parser.cc 176 uint64 next_size = std::min<uint64>( local
180 DCHECK_LE(next_size, static_cast<uint64>(kint32max));
187 if (next_size) {
188 frame_chunk->data = new IOBufferWithSize(static_cast<int>(next_size));
190 memcpy(io_data, current, next_size);
195 masking_key_, frame_offset_, io_data, next_size);
198 current_read_pos_ += next_size;
199 frame_offset_ += next_size;
  /external/chromium/net/base/
filter.cc 401 int next_size = next_filter_->stream_buffer_size(); local
402 last_status_ = ReadFilteredData(next_buffer->data(), &next_size);
404 next_filter_->FlushStreamBuffer(next_size);
  /external/chromium_org/net/base/
filter.cc 400 int next_size = next_filter_->stream_buffer_size(); local
401 last_status_ = ReadFilteredData(next_buffer->data(), &next_size);
403 next_filter_->FlushStreamBuffer(next_size);
  /external/chromium_org/third_party/libwebp/enc/
picture.c 486 uint64_t next_size; local
490 next_size = (uint64_t)w->size + data_size;
491 if (next_size > w->max_size) {
494 if (next_max_size < next_size) next_max_size = next_size;
    [all...]
  /external/webp/src/enc/
picture.c 486 uint64_t next_size; local
490 next_size = (uint64_t)w->size + data_size;
491 if (next_size > w->max_size) {
494 if (next_max_size < next_size) next_max_size = next_size;
    [all...]

Completed in 277 milliseconds