HomeSort by relevance Sort by last modified time
    Searched refs:total_size (Results 76 - 100 of 252) sorted by null

1 2 34 5 6 7 8 91011

  /external/chromium_org/net/websockets/
websocket_basic_stream.cc 52 int total_size = 0; local
61 CHECK_GE(kMaximumTotalSize - total_size, frame_size)
63 total_size += frame_size;
65 return total_size;
142 int total_size = CalculateSerializedSizeAndTurnOnMaskBit(frames); local
144 new IOBufferWithSize(total_size));
147 int remaining_size = total_size;
171 new DrainableIOBuffer(combined_buffer, total_size));
  /external/marisa-trie/lib/marisa/
intvector.h 77 std::size_t total_size() const { function in class:marisa::IntVector
78 return units_.total_size() + sizeof(num_bits_per_int_)
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
intvector.h 77 std::size_t total_size() const { function in class:marisa_alpha::IntVector
78 return units_.total_size() + sizeof(num_bits_per_int_)
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_manager.h 43 ImageBurnStatus() : amount_burnt(0), total_size(0) {
47 : amount_burnt(burnt), total_size(total) {
51 int64 total_size; member in struct:chromeos::ImageBurnStatus
366 int64 total_size);
  /external/chromium_org/chrome/browser/extensions/api/gcm/
gcm_api.cc 164 size_t total_size = 0u; local
167 total_size += iter->first.size() + iter->second.size();
172 kMaximumMessageSize < total_size)
176 return total_size != 0;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug_memory.c 267 size_t total_size = 0; local
298 total_size += hdr->size;
309 if(total_size) {
311 (unsigned long) (total_size + 1023)/1024);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
unknown_field_set.cc 96 int total_size = sizeof(*fields_) + sizeof(UnknownField) * fields_->size(); local
101 total_size += sizeof(*field.length_delimited_.string_value_) +
106 total_size += field.group_->SpaceUsed();
112 return total_size;
extension_set_heavy.cc 277 int total_size = local
283 total_size += iter->second.SpaceUsedExcludingSelf();
285 return total_size;
294 int total_size = 0; local
299 total_size += sizeof(*repeated_##LOWERCASE##_value) + \
319 total_size += sizeof(*repeated_message_value) +
326 total_size += sizeof(*string_value) +
331 total_size += lazymessage_value->SpaceUsed();
333 total_size += down_cast<Message*>(message_value)->SpaceUsed();
341 return total_size;
700 int total_size = 0; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
space_used.tcl 45 set total_size 0
82 incr total_size $size
91 puts "-- Total payload size: $total_size"
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_memory.c 267 size_t total_size = 0; local
298 total_size += hdr->size;
309 if(total_size) {
311 (unsigned long) (total_size + 1023)/1024);
  /external/protobuf/src/google/protobuf/
unknown_field_set.cc 71 int total_size = sizeof(*fields_) + sizeof(UnknownField) * fields_->size(); local
76 total_size += sizeof(*field.length_delimited_) +
80 total_size += field.group_->SpaceUsed();
86 return total_size;
extension_set_heavy.cc 236 int total_size = local
242 total_size += iter->second.SpaceUsedExcludingSelf();
244 return total_size;
253 int total_size = 0; local
258 total_size += sizeof(*repeated_##LOWERCASE##_value) + \
278 total_size += sizeof(*repeated_message_value) +
285 total_size += sizeof(*string_value) +
289 total_size += down_cast<Message*>(message_value)->SpaceUsed();
296 return total_size;
  /external/chromium_org/media/cast/video_sender/codecs/vp8/
vp8_encoder.cc 170 size_t total_size = 0; local
173 total_size += pkt->data.frame.sz;
174 encoded_image->data.reserve(total_size);
188 if (total_size == 0) return true;
196 << " sized:" << total_size;
  /system/core/libdiskconfig/
diskconfig.c 276 uint64_t total_size; local
345 total_size = dinfo->skip_lba * dinfo->sect_size;
351 total_size += part->len_kb * 1024;
373 if (S_ISBLK(stat.st_mode) && total_size > disk_size) {
375 "size (%llu).", total_size, disk_size);
  /external/chromium_org/cc/base/
tiling_data_unittest.cc 17 gfx::Size total_size,
19 TilingData tiling(max_texture_size, total_size, has_border_texels);
32 gfx::Size total_size,
35 TilingData tiling(max_texture_size, total_size, has_border_texels);
41 gfx::Size total_size,
44 TilingData tiling(max_texture_size, total_size, has_border_texels);
50 gfx::Size total_size,
53 TilingData tiling(max_texture_size, total_size, has_border_texels);
59 gfx::Size total_size,
62 TilingData tiling(max_texture_size, total_size, has_border_texels)
    [all...]
  /external/chromium_org/chrome/browser/notifications/
balloon_collection_impl.cc 121 int total_size = 0; local
122 layout_.GetMaxLinearSize(&max_balloon_size, &total_size);
125 int max_allowed_size = static_cast<int>(total_size *
291 int* total_size) const {
292 DCHECK(max_balloon_size && total_size);
295 *total_size = work_area_.height();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_miptree.c 201 mt->total_size = mt->level[0].pitch * pt->height0;
229 lvl->offset = mt->total_size;
239 mt->total_size += lvl->pitch * align(nby, tsy) * align(d, tsz);
247 mt->layer_stride = align(mt->total_size,
249 mt->total_size = mt->layer_stride * pt->array_size;
292 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config,
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_miptree.c 201 mt->total_size = mt->level[0].pitch * pt->height0;
229 lvl->offset = mt->total_size;
239 mt->total_size += lvl->pitch * align(nby, tsy) * align(d, tsz);
247 mt->layer_stride = align(mt->total_size,
249 mt->total_size = mt->layer_stride * pt->array_size;
292 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config,
  /art/runtime/
mapping_table.h 45 uint32_t total_size = DecodeUnsignedLeb128(&table); variable
47 return total_size - pc_to_dex_size;
54 DecodeUnsignedLeb128(&table); // Total_size, unused.
122 DecodeUnsignedLeb128(&table); // Total_size, unused.
131 DecodeUnsignedLeb128(&table); // Total_size, unused.
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h 282 unsigned long long total_size = static_cast<unsigned long long>(width) local
284 return total_size > ((1 << 29) - 1);
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.cpp 1558 int total_size = 0; local
1832 int total_size = 0; local
2188 int total_size = 0; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 362 def hooktester(count, block_size, total_size, count_holder=[0]):
365 self.assertIsInstance(total_size, int)
376 def hooktester(count, block_size, total_size, _report=report):
377 _report.append((count, block_size, total_size))
390 def hooktester(count, block_size, total_size, _report=report):
391 _report.append((count, block_size, total_size))
404 def hooktester(count, block_size, total_size, _report=report):
405 _report.append((count, block_size, total_size))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 362 def hooktester(count, block_size, total_size, count_holder=[0]):
365 self.assertIsInstance(total_size, int)
376 def hooktester(count, block_size, total_size, _report=report):
377 _report.append((count, block_size, total_size))
390 def hooktester(count, block_size, total_size, _report=report):
391 _report.append((count, block_size, total_size))
404 def hooktester(count, block_size, total_size, _report=report):
405 _report.append((count, block_size, total_size))
    [all...]
  /external/chromium/chrome/browser/notifications/
balloon_collection_impl.h 101 void GetMaxLinearSize(int* max_balloon_size, int* total_size) const;
  /external/chromium_org/cc/resources/
layer_tiling_data.h 83 gfx::Size bounds() const { return tiling_data_.total_size(); }

Completed in 1623 milliseconds

1 2 34 5 6 7 8 91011