Home
last modified time | relevance | path

Searched refs:total_count (Results 1 – 7 of 7) sorted by relevance

/external/tesseract/ccstruct/
Dstatistc.cpp106 total_count = 0; in clear()
151 total_count += count; //keep count of total in add()
203 if (total_count > 0) in mean()
205 return (float) sum / total_count + rangemin; in mean()
236 if (total_count > 0) { in sd()
237 variance = sum / ((float) total_count); in sd()
238 variance = sqsum / ((float) total_count) - variance * variance; in sd()
265 target = frac * total_count; in ile()
268 if (target > total_count) in ile()
269 target = (float) total_count; in ile()
[all …]
Dstatistc.h31 inT32 total_count; //no of samples variable
87 return total_count; //total of all piles in get_total()
/external/oprofile/libdb/
Ddb_stat.c21 count_type total_count; /**< cumulated samples count */ member
53 result->total_count += data->node_base[index].value; in odb_hash_stat()
78 printf("total count: %llu\n", stat->total_count); in odb_hash_display_stat()
/external/tesseract/textord/
Dtopitch.cpp1413 inT32 total_count; //total blobs in compute_pitch_sd() local
1425 total_count = 0; in compute_pitch_sd()
1524 total_count += (seg_list.length () - 1) * scale_factor; in compute_pitch_sd()
1529 return total_count > 0 ? sqrt (sqsum / total_count) : space_size * 10; in compute_pitch_sd()
1660 double total_count; //total cuts in print_pitch_sd() local
1667 total_count = 0; in print_pitch_sd()
1711 total_count += (seg_list.length () - 1) * scale_factor; in print_pitch_sd()
1716 word_sync = total_count > 0 ? sqrt (sqsum / total_count) : space_size * 10; in print_pitch_sd()
Dwordseg.cpp373 inT32 total_count; //total gaps in row_words2() local
400 total_count = 0; in row_words2()
411 total_count++; //count possibles in row_words2()
417 if (valid_count < total_count * textord_words_minlarge) { in row_words2()
Dcolpartition.cpp1285 int total_count = 0; in SmoothSpacings() local
1291 ++total_count; in SmoothSpacings()
1295 if (total_count > 0) { in SmoothSpacings()
1297 int top_spacing = static_cast<int>(total_top / total_count + 0.5); in SmoothSpacings()
1298 int bottom_spacing = static_cast<int>(total_bottom / total_count + 0.5); in SmoothSpacings()
/external/freetype/src/base/
Dftdbgmem.c859 FT_Long total_count = ft_atol( p ); in ft_mem_debug_init() local
862 if ( total_count > 0 ) in ft_mem_debug_init()
865 table->alloc_count_max = (FT_ULong)total_count; in ft_mem_debug_init()