Searched defs:cluster_count (Results 1 - 3 of 3) sorted by relevance

/external/opencv/cxcore/src/
H A Dcxutils.cpp45 cvKMeans2( const CvArr* samples_arr, int cluster_count, argument
71 if( cluster_count < 1 )
88 if( cluster_count > sample_count )
89 cluster_count = sample_count;
94 CV_CALL( centers = cvCreateMat( cluster_count, dims, CV_64FC1 ));
95 CV_CALL( old_centers = cvCreateMat( cluster_count, dims, CV_64FC1 ));
96 CV_CALL( counters = cvCreateMat( 1, cluster_count, CV_32SC1 ));
100 labels->data.i[i] = cvRandInt(&rng) % cluster_count;
102 counters->cols = cluster_count; // cut down counters
138 for( k = 0; k < cluster_count;
[all...]
/external/e2fsprogs/lib/blkid/
H A Dprobe.c526 __u32 sect_count, fat_size, dir_size, cluster_count, fat_length; local
552 cluster_count = sect_count - (reserved + fat_size + dir_size);
555 cluster_count /= ms->ms_cluster_size;
557 if (cluster_count > FAT32_MAX)
/external/qemu/block/
H A Dvvfat.c335 uint32_t cluster_count; /* total number of clusters of this partition */ member in struct:BDRVVVFATState
879 s->cluster_count=sector2cluster(s, s->sector_count);
930 if(cluster > s->cluster_count) {
1072 s->sector_count = s->faked_sectors + s->sectors_per_cluster*s->cluster_count;
1789 int cluster_count = 0; local
1828 cluster_count = check_directory_consistency(s,
1830 if (cluster_count == 0) {
1836 cluster_count = get_cluster_count_for_direntry(s, direntries + i, path2);
1837 if (cluster_count !=
1844 abort(); /* cluster_count
[all...]

Completed in 128 milliseconds