Searched defs:total_size (Results 1 - 25 of 50) sorted by relevance

12

/external/webp/src/utils/
H A Dutils.c23 const uint64_t total_size = nmemb * size; local
26 if (total_size != (size_t)total_size) return 0;
/external/chromium/chrome/browser/chromeos/cros/
H A Dburn_library.h20 total_size(status.total_size) {
28 int64 total_size; member in struct:ImageBurnStatus
H A Dmount_library.cc26 uint64 total_size,
39 total_size_(total_size),
18 Disk(const std::string& device_path, const std::string& mount_path, const std::string& system_path, const std::string& file_path, const std::string& device_label, const std::string& drive_label, const std::string& parent_path, DeviceType device_type, uint64 total_size, bool is_parent, bool is_read_only, bool has_media, bool on_boot_device) argument
H A Dmount_library.h46 uint64 total_size,
68 uint64 total_size() const { return total_size_; } function in class:chromeos::MountLibrary::Disk
/external/chromium/chrome/browser/download/
H A Ddownload_item_model.cc113 int64 total_size = download_->total_bytes(); local
121 base::FormatNumber(total_size));
135 base::FormatNumber(total_size));
/external/blktrace/btt/
H A Dmmap.c37 static off_t cur_min, cur, cur_max, total_size; variable
87 len = min_len(DEF_LEN, total_size - cur_min);
117 total_size = buf.st_size;
149 return 100.0 * ((double)cur / (double)total_size);
/external/qemu/
H A Delf_ops.h186 int size, i, total_size; local
232 total_size = 0;
251 total_size += mem_size;
266 return total_size;
/external/e2fsprogs/lib/ext2fs/
H A Dimager.c284 int c, total_size; local
310 total_size = size * fs->group_desc_count;
332 size = total_size % fs->blocksize;
/external/libpng/
H A Dpngmem.c176 png_uint_32 total_size; local
196 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
198 table = farmalloc(total_size);
/external/oprofile/libopagent/
H A Djitdump.h58 /* each record starts always with a id and a total_size */
61 u32 total_size; member in struct:jr_prefix
67 u32 total_size; member in struct:jr_code_load
78 u32 total_size; member in struct:jr_code_unload
86 u32 total_size; member in struct:jr_code_close
93 u32 total_size; member in struct:jr_code_debug_info
/external/protobuf/src/google/protobuf/
H A Dunknown_field_set.cc71 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;
H A Dextension_set_heavy.cc236 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/qemu/distrib/libpng-1.2.19/
H A Dpngmem.c163 png_uint_32 total_size; local
183 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
185 table = farmalloc(total_size);
/external/v8/src/
H A Dpreparse-data.cc94 int total_size = PreparseDataConstants::kHeaderSize + function_size; local
95 Vector<unsigned> data = Vector<unsigned>::New(total_size);
149 int total_size = PreparseDataConstants::kHeaderSize + function_size local
151 Vector<unsigned> data = Vector<unsigned>::New(total_size);
162 Vector<byte>::cast(data.SubVector(symbol_start, total_size)));
/external/webp/src/dec/
H A Dbuffer.c87 uint64_t uv_size = 0, a_size = 0, total_size; local
101 total_size = size + 2 * uv_size + a_size;
104 output = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*output));
/external/chromium/chrome/browser/autofill/
H A Dautofill_download.cc289 size_t total_size = forms_in_query.size(); local
291 total_size += forms_in_query[i].length();
294 signature.reserve(total_size);
/external/chromium/chrome/browser/notifications/
H A Dballoon_collection_impl.cc89 int total_size = 0; local
90 layout_.GetMaxLinearSize(&max_balloon_size, &total_size);
93 int max_allowed_size = static_cast<int>(total_size *
238 int* total_size) const {
239 DCHECK(max_balloon_size && total_size);
242 *total_size = work_area_.height();
/external/chromium/chrome/browser/sessions/
H A Dsession_backend.cc317 const size_type total_size = content_size + sizeof(id_type); local
319 UMA_HISTOGRAM_COUNTS("TabRestore.command_size", total_size);
321 UMA_HISTOGRAM_COUNTS("SessionRestore.command_size", total_size);
322 wrote = file->Write(reinterpret_cast<const char*>(&total_size),
323 sizeof(total_size), NULL);
324 if (wrote != sizeof(total_size)) {
/external/qemu/android/
H A Dsnapshot.c156 uint32_t total_size = end_offset - start_offset; local
157 uint32_t aligned_size = ((total_size - 1) / 8 + 1) * 8;
/external/qemu/block/
H A Draw-win32.c212 int64_t total_size = 0; local
217 total_size = options->value.n / 512;
227 ftruncate(fd, total_size * 512);
H A Draw-posix.c698 int64_t total_size = 0; local
703 total_size = options->value.n / BDRV_SECTOR_SIZE;
713 if (ftruncate(fd, total_size * BDRV_SECTOR_SIZE) != 0) {
971 int64_t total_size = 0; local
976 total_size = options->value.n / BDRV_SECTOR_SIZE;
989 else if (lseek(fd, 0, SEEK_END) < total_size * BDRV_SECTOR_SIZE)
/external/protobuf/src/google/protobuf/compiler/
H A Dplugin.pb.cc371 int total_size = 0; local
376 total_size += 1 +
383 total_size += 1 * this->file_to_generate_size();
385 total_size += ::google::protobuf::internal::WireFormatLite::StringSize(
390 total_size += 1 * this->proto_file_size();
392 total_size +=
398 total_size +=
403 _cached_size_ = total_size;
405 return total_size;
712 int total_size local
989 int total_size = 0; local
[all...]
/external/qemu/audio/
H A Dwavaudio.c230 int total_size; member in struct:WAVVoiceIn
281 wav->total_size = le_read( hdr+40, 4 );
/external/v8/tools/oom_dump/
H A Doom_dump.cc213 int total_size = 0; local
215 total_size += size_per_type[i];
271 100. * size / total_size, 100. * running_size / total_size);
274 "total", 0, toM(total_size), 100., 100.);
/external/protobuf/src/google/protobuf/stubs/
H A Dstructurally_valid.cc55 const uint32 total_size; member in struct:google::protobuf::internal::__anon10117

Completed in 6161 milliseconds

12