HomeSort by relevance Sort by last modified time
    Searched defs:cluster_size (Results 1 - 10 of 10) sorted by null

  /system/extras/fatblock/
fs.h 24 uint16_t cluster_size; member in struct:fs
48 int fs_init(struct fs *fs, uint16_t cluster_size, offset_t data_size, offset_t *total_size_out);
  /external/qemu/block/
qcow2.h 84 int cluster_size; member in struct:BDRVQcowState
123 int cluster_size; member in struct:QCowCreateState
150 return (size + (s->cluster_size - 1)) >> s->cluster_bits;
qcow.c 59 int cluster_size; member in struct:BDRVQcowState
120 s->cluster_size = 1 << s->cluster_bits;
145 s->cluster_cache = qemu_malloc(s->cluster_size);
148 s->cluster_data = qemu_malloc(s->cluster_size);
248 * cluster_size
272 l2_offset = (l2_offset + s->cluster_size - 1) & ~(s->cluster_size - 1);
332 cluster_offset = (cluster_offset + s->cluster_size - 1) &
333 ~(s->cluster_size - 1);
335 if (bdrv_pwrite(bs->file, cluster_offset, s->cluster_cache, s->cluster_size) !
    [all...]
qcow2.c 89 if (offset > s->cluster_size)
173 s->cluster_size = 1 << s->cluster_bits;
208 s->cluster_cache = qemu_malloc(s->cluster_size);
210 s->cluster_data = qemu_malloc(QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size
223 ext_end = s->cluster_size;
610 s->cluster_size);
709 if (header_size > s->cluster_size) {
847 int flags, size_t cluster_size, int prealloc)
886 s->cluster_bits = get_bits_from_size(cluster_size);
896 s->cluster_size = 1 << s->cluster_bits
1049 size_t cluster_size = 65536; local
    [all...]
vvfat.c 328 unsigned int cluster_size; member in struct:BDRVVVFATState
808 * 0x20 / s->cluster_size;
851 s->cluster_size=s->sectors_per_cluster*0x200;
852 s->cluster_buffer=qemu_malloc(s->cluster_size);
917 mapping->end = cluster + 1 + (mapping->end-1)/s->cluster_size;
    [all...]
  /external/qemu/hw/
scsi-disk.c 69 int cluster_size; member in struct:SCSIDeviceState
669 p[6] = s->cluster_size * 2;
754 nb_sectors /= s->cluster_size;
769 outbuf[6] = s->cluster_size * 2;
784 r->sector = lba * s->cluster_size;
785 r->sector_count = len * s->cluster_size;
793 r->sector = lba * s->cluster_size;
794 r->sector_count = len * s->cluster_size;
810 nb_sectors /= s->cluster_size;
863 nb_sectors /= s->cluster_size;
    [all...]
  /external/opencv/ml/src/
mlem.cpp 548 int cluster_size = right - left; local
551 if( cluster_size <= 0 )
558 CV_CALL( cvCalcCovarMatrix( vec, cluster_size, covs[i],
560 weights->data.db[i] = (double)cluster_size/(double)nsamples;
    [all...]
  /external/qemu/
block.h 14 int cluster_size; member in struct:BlockDriverInfo
  /external/kernel-headers/original/linux/
msdos_fs.h 233 unsigned short cluster_bits; /* log2(cluster_size) */
234 unsigned int cluster_size; /* cluster size */ member in struct:msdos_sb_info
  /external/libvpx/libwebm/
mkvparser.cpp 1075 long long cluster_size = -1; //size of cluster payload local
1210 cluster_size = size;
1277 if (cluster_size >= 0)
1278 pos += cluster_size;
1302 if (cluster_size < 0)
1305 pos += cluster_size;
1336 if (cluster_size >= 0)
1338 pos += cluster_size;
3627 long long cluster_size = -1; local
    [all...]

Completed in 829 milliseconds