/external/opencv/cxcore/src/ |
cxutils.cpp | 45 cvKMeans2( const CvArr* samples_arr, int cluster_count, 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; k++ [all...] |
/external/e2fsprogs/lib/blkid/ |
probe.c | 526 __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) [all...] |
/external/qemu/block/ |
vvfat.c | 335 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 [all...] |
/external/opencv/cxcore/include/ |
cxcore.h | [all...] |