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

/system/extras/kexec_tools/
H A Dkexecload.c71 total_size; local
/system/core/libdiskconfig/
H A Ddiskconfig.c276 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);
/system/extras/fatblock/
H A Dfatblock.c153 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);
/system/core/cpio/
H A Dmkbootfs.c54 static int total_size = 0; variable
93 while(total_size & 3) {
94 total_size++;
121 total_size += 6 + 8*13 + olen + 1;
125 while(total_size & 3) {
126 total_size++;
132 total_size += datasize;
142 while(total_size & 0xff) {
143 total_size++;
/system/extras/showslab/
H A Dshowslab.c33 unsigned long total_size; /* size of all objects */ member in struct:slab_stat
136 stats->total_size += p->nr_objs * p->obj_size;
151 stats->avg_obj_size = stats->total_size / stats->nr_objs;
327 stats.total_size / 1024.0,
328 100.0 * stats.active_size / stats.total_size,

Completed in 143 milliseconds