HomeSort by relevance Sort by last modified time
    Searched defs:total_size (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/webp/src/utils/
utils.c 24 const uint64_t total_size = nmemb * size; local
27 if (total_size != (size_t)total_size) return 0;
  /external/marisa-trie/lib/marisa/
tail.h 49 std::size_t total_size() const { function in class:marisa::Tail
50 return buf_.total_size();
progress.h 22 void test_total_size(std::size_t total_size) {
23 MARISA_THROW_IF(total_size_ > (MARISA_UINT32_MAX - total_size),
25 total_size_ += total_size;
34 std::size_t total_size() const { function in class:marisa::Progress
bitvector.h 75 std::size_t total_size() const { function in class:marisa::BitVector
76 return blocks_.total_size() + sizeof(size_) + ranks_.total_size()
77 + select0s_.total_size() + select1s_.total_size();
intvector.h 77 std::size_t total_size() const { function in class:marisa::IntVector
78 return units_.total_size() + sizeof(num_bits_per_int_)
trie.cc 137 std::size_t Trie::total_size() const { function in class:marisa::Trie
138 return louds_.total_size() + labels_.total_size()
139 + terminal_flags_.total_size() + link_flags_.total_size()
140 + links_.total_size() + (has_trie() ? trie_->total_size() : 0)
141 + tail_.total_size() + sizeof(num_first_branches_) + sizeof(num_keys_);
vector.h 96 std::size_t total_size() const { function in class:marisa::Vector
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
tail.h 50 std::size_t total_size() const { function in class:marisa_alpha::Tail
51 return buf_.total_size();
progress.h 22 void test_total_size(std::size_t total_size) {
23 MARISA_ALPHA_THROW_IF(total_size_ > (MARISA_ALPHA_UINT32_MAX - total_size),
25 total_size_ += total_size;
34 std::size_t total_size() const { function in class:marisa_alpha::Progress
bitvector.h 75 std::size_t total_size() const { function in class:marisa_alpha::BitVector
76 return blocks_.total_size() + sizeof(size_) + ranks_.total_size()
77 + select0s_.total_size() + select1s_.total_size();
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_)
trie.cc 137 std::size_t Trie::total_size() const { function in class:marisa_alpha::Trie
138 return louds_.total_size() + labels_.total_size()
139 + terminal_flags_.total_size() + link_flags_.total_size()
140 + links_.total_size() + (has_trie() ? trie_->total_size() : 0)
141 + tail_.total_size() + sizeof(num_first_branches_) + sizeof(num_keys_);
vector.h 96 std::size_t total_size() const { function in class:marisa_alpha::Vector
  /external/chromium/chrome/browser/chromeos/cros/
burn_library.h 20 total_size(status.total_size) {
28 int64 total_size; member in struct:ImageBurnStatus
  /external/chromium/chrome/browser/download/
download_item_model.cc 113 int64 total_size = download_->total_bytes(); local
121 base::FormatNumber(total_size));
135 base::FormatNumber(total_size));
  /external/blktrace/btt/
mmap.c 37 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/v8/src/
preparse-data.cc 94 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/e2fsprogs/lib/ext2fs/
imager.c 284 int c, total_size; local
310 total_size = size * fs->group_desc_count;
332 size = total_size % fs->blocksize;
  /external/libpng/
pngmem.c 176 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/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;
  /external/qemu/distrib/libpng-1.2.19/
pngmem.c 163 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/qemu/
elf_ops.h 186 int size, i, total_size; local
232 total_size = 0;
251 total_size += mem_size;
266 return total_size;
  /hardware/invensense/libsensors_iio/software/core/mllite/
storage_manager.c 41 size_t total_size; /**< Size in bytes to store non volatile data */ member in struct:data_storage_t
53 ds.total_size = sizeof(struct data_header_t);
85 ds.total_size += size + sizeof(struct data_header_t);
97 *size = ds.total_size;
178 if (sz >= ds.total_size) {
195 ds.total_size - sizeof(struct data_header_t));
197 hd->size = ds.total_size;
  /system/extras/fatblock/
fatblock.c 153 offset_t total_size; local
173 ret = fs_import(&fs, 32768, 1048576LL * mb, &total_size);
177 INFO("fatblock: filesystem imported (%llu bytes)\n", total_size);
179 ret = ublock_init(&ub, &ops, total_size);
  /external/oprofile/libopagent/
jitdump.h 58 /* 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

Completed in 361 milliseconds

1 2 3