HomeSort by relevance Sort by last modified time
    Searched defs:total_size (Results 51 - 75 of 163) sorted by null

1 23 4 5 6 7

  /external/chromium_org/content/browser/service_worker/
service_worker_url_request_job.cc 308 uint64 total_size = 0; local
312 if (total_size != kuint64max && element.length() != kuint64max)
313 total_size += element.length();
315 total_size = kuint64max;
344 *blob_size = total_size;
  /external/chromium_org/media/cast/logging/
stats_event_subscriber_unittest.cc 146 int total_size = 0; local
149 total_size += size;
183 static_cast<double>(total_size) / duration.InMillisecondsF() * 8);
327 int total_size = 0; local
338 total_size += size;
453 static_cast<double>(total_size) / duration.InMillisecondsF() * 8);
  /external/chromium_org/mojo/system/
message_in_transit.h 107 return (total_size() > main_buffer_size())
112 return total_size() - main_buffer_size();
114 size_t total_size() const { return header()->total_size; } function in class:mojo::system::MessageInTransit::View
186 size_t total_size() const { return header()->total_size; } function in class:mojo::system::MessageInTransit
232 uint32_t total_size; member in struct:mojo::system::MessageInTransit::Header
  /external/chromium_org/net/tools/disk_cache_memory_test/
disk_cache_memory_test.cc 203 uint64 total_size = 0; local
205 return total_size;
212 return total_size;
217 total_size += size;
221 return total_size;
224 return total_size;
  /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;
173 new DrainableIOBuffer(combined_buffer.get(), total_size));
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h 318 unsigned long long total_size = static_cast<unsigned long long>(width) local
320 return total_size > ((1 << 29) - 1);
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
cld_utf8statetable.h 80 const uint32 total_size; member in struct:__anon16350
96 const uint32 total_size; member in struct:__anon16351
  /external/chromium_org/third_party/libwebp/enc/
picture.c 97 uint64_t y_size, uv_size, a_size, total_size; local
116 total_size = y_size + a_size + 2 * uv_size;
124 mem = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*mem));
  /external/chromium_org/third_party/libyuv/util/
convert.cc 233 const size_t total_size = y_size + 2 * uv_size; local
239 fseek(file_org, num_skip_org * total_size, SEEK_SET);
244 uint8* const ch_rec = new uint8[total_size];
335 static_cast<size_t>(total_size),
337 if (bytes_rec < static_cast<size_t>(total_size))
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_zscan.c 347 const unsigned total_size = blocks_per_line * VL_BLOCK_WIDTH * VL_BLOCK_HEIGHT; local
405 addr /= total_size;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
dxbc.h 84 uint32_t total_size; member in struct:dxbc_container_header
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 379 int total_size = 0; local
384 total_size += 1 +
391 total_size += 1 * this->file_to_generate_size();
393 total_size += ::google::protobuf::internal::WireFormatLite::StringSize(
398 total_size += 1 * this->proto_file_size();
400 total_size +=
406 total_size +=
411 _cached_size_ = total_size;
413 return total_size;
718 int total_size = 0 local
995 int total_size = 0; local
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
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/tcmalloc/chromium/src/
malloc_extension.cc 276 uintptr_t total_size = 0; local
279 total_size += Size(entry);
284 PrintCountAndSize(writer, total_count, total_size);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
malloc_extension.cc 259 uintptr_t total_size = 0; local
262 total_size += Size(entry);
267 PrintCountAndSize(writer, total_count, total_size);
  /external/chromium_org/tools/telemetry/telemetry/core/
bitmaptools.cc 97 total_size = size;
105 if (box.bottom * row_stride > total_size ||
118 total_size = (box.bottom - box.top) * row_stride;
129 row < data + total_size;
146 int total_size; member in struct:Bitmap
180 for (const unsigned char* row = bmp.data; row < bmp.data + bmp.total_size;
207 box.left = bmp.total_size;
208 box.top = bmp.total_size;
214 for (const unsigned char* row = bmp.data; row < bmp.data + bmp.total_size;
  /external/chromium_org/v8/tools/oom_dump/
oom_dump.cc 212 int total_size = 0; local
214 total_size += size_per_type[i];
270 100. * size / total_size, 100. * running_size / total_size);
273 "total", 0, toM(total_size), 100., 100.);
  /external/compiler-rt/lib/lsan/
lsan_common.h 87 uptr total_size; member in struct:__lsan::Leak
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_zscan.c 347 const unsigned total_size = blocks_per_line * VL_BLOCK_WIDTH * VL_BLOCK_HEIGHT; local
405 addr /= total_size;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
dxbc.h 84 uint32_t total_size; member in struct:dxbc_container_header
  /external/qemu/android/
snapshot.c 151 uint32_t total_size = end_offset - start_offset; local
152 uint32_t aligned_size = ((total_size - 1) / 8 + 1) * 8;
  /external/qemu/audio/
wavaudio.c 236 int total_size; member in struct:WAVVoiceIn
287 wav->total_size = le_read( hdr+40, 4 );
  /external/qemu/block/
raw-win32.c 212 int64_t total_size = 0; local
217 total_size = options->value.n / 512;
227 ftruncate(fd, total_size * 512);
  /external/webp/src/enc/
picture.c 97 uint64_t y_size, uv_size, a_size, total_size; local
116 total_size = y_size + a_size + 2 * uv_size;
124 mem = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*mem));
  /hardware/qcom/media/mm-video-legacy/vidc/common/src/
extra_data_handler.cpp 231 OMX_U32 slice_offset = 0, slice_size = 0, total_size = 0; local
251 if (slice_offset != total_size) {
257 total_size += slice_size;
261 if (pBufHdr->nFilledLen != total_size) {
263 "total slices size[%d]", pBufHdr->nFilledLen, total_size);

Completed in 2013 milliseconds

1 23 4 5 6 7