Searched refs:hist (Results 1 - 25 of 41) sorted by path

12

/external/blktrace/btt/doc/
H A Dbtt.tex552 \newpage\section{\label{sec:hist}Histogram Data Files}
826 [ -u <output name> | --unplug-hist=<output name> ]
997 \subsection{\label{sec:o-u}\texttt{--unplug-hist}/\texttt{-u}}
/external/blktrace/btt/
H A Dunplug_hist.c30 int hist[NBKTS * sizeof(int)]; member in struct:hist_bkt
41 memset(hbp->hist, 0, NBKTS * sizeof(int));
60 hbp->hist[idx]++;
78 fprintf(fp, "%d %d\n", i, hbp->hist[i]);
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/jdiff/src/jdiff/
H A DHTMLStatistics.java195 int[] hist = new int[101];
197 hist[i] = 0;
204 hist[bucket]++;
228 total += hist[i];
231 if (hist[i] != 0) {
234 h_.writeText(" <TD>" + (hist[i]/total) + "</TD>");
235 h_.writeText(" <TD><img alt=\"|\" src=\"../black.gif\" height=20 width=" + (hist[i]*300/total) + "></TD>");
242 if (hist[i] != 0) {
243 h_.writeText(i + "," + (hist[i]/total));
282 int[] hist
[all...]
/external/libpng/
H A Dpng.c554 png_free(png_ptr, info_ptr->hist);
555 info_ptr->hist = NULL;
H A Dpng.h843 * pcal_purpose, pcal_units, pcal_params, hist, iccp_name, iccp_profile,
986 png_uint_16p hist PNG_DEPSTRUCT;
1481 png_uint_16p hist PNG_DEPSTRUCT; /* histogram */
2462 png_infop info_ptr, png_uint_16p *hist));
2467 png_infop info_ptr, png_uint_16p hist));
3392 PNG_EXTERN void png_write_hIST PNGARG((png_structp png_ptr, png_uint_16p hist,
H A Dpngget.c562 png_get_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p *hist) argument
567 && hist != NULL)
569 *hist = info_ptr->hist;
H A Dpngread.c1439 png_free(png_ptr, png_ptr->hist);
1443 png_free(png_ptr, png_ptr->hist);
H A Dpngset.c182 png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist) argument
205 png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
207 if (png_ptr->hist == NULL)
214 png_ptr->hist[i] = hist[i];
215 info_ptr->hist = png_ptr->hist;
H A Dpngtest.c1007 png_uint_16p hist; local
1009 if (png_get_hIST(read_ptr, read_info_ptr, &hist))
1010 png_set_hIST(write_ptr, write_info_ptr, hist);
H A Dpngwrite.c177 png_write_hIST(png_ptr, info_ptr->hist, info_ptr->num_palette);
H A Dpngwutil.c1187 png_write_hIST(png_structp png_ptr, png_uint_16p hist, int num_hist) argument
1209 png_save_uint_16(buf, hist[i]);
/external/libvorbis/vq/
H A Dbookutil.c338 void build_tree_from_lengths(int vals, long *hist, long *lengths){ argument
342 memcpy(histsave,hist,vals*sizeof(long));
356 if(least==-1 || hist[j]<=least){
357 least=hist[j];
362 if((least==-1 || hist[j]<=least) && membership[j]!=first){
363 least=hist[j];
372 least=hist[first]+hist[second];
376 hist[j]=least;
407 void build_tree_from_lengths0(int vals, long *hist, lon argument
[all...]
H A Dbookutil.h39 extern void build_tree_from_lengths(int vals, long *hist, long *lengths);
40 extern void build_tree_from_lengths0(int vals, long *hist, long *lengths);
H A Dhuffbuild.c130 long *hist=_ogg_calloc(vals,sizeof(long)); local
133 for(j=loval;j<vals;j++)hist[j]=guard;
141 hist[val]++;
149 build_tree_from_lengths0(vals,hist,lengths);
/external/linux-tools-perf/
H A DAndroid.mk55 util/hist.c \
H A DMakefile280 LIB_H += util/hist.h
340 LIB_OBJS += $(OUTPUT)util/hist.o
/external/mksh/src/
H A Dedit.c4902 int hist; local
4912 if ((hist = findhist(start, fwd, pat, anchored)) < 0) {
4923 histnum(hist);
4929 return (hist);
/external/netperf/
H A DAndroid.mk21 L_COMMON_SRC := hist.h netlib.c netsh.c nettest_bsd.c nettest_dlpi.c \
/external/opencv/cv/include/
H A Dcv.h779 CVAPI(void) cvCalcPGH( const CvSeq* contour, CvHistogram* hist );
829 CVAPI(void) cvSetHistBinRanges( CvHistogram* hist, float** ranges,
834 int dims, int* sizes, CvHistogram* hist,
839 CVAPI(void) cvReleaseHist( CvHistogram** hist ); variable
842 CVAPI(void) cvClearHist( CvHistogram* hist ); variable
845 CVAPI(void) cvGetMinMaxHistValue( const CvHistogram* hist,
853 CVAPI(void) cvNormalizeHist( CvHistogram* hist, double factor );
857 CVAPI(void) cvThreshHist( CvHistogram* hist, double threshold );
880 CVAPI(void) cvCalcArrHist( CvArr** arr, CvHistogram* hist,
884 CV_INLINE void cvCalcHist( IplImage** image, CvHistogram* hist, argument
[all...]
H A Dcvcompat.h124 #define cvCalcHistMask(img, mask, hist, doNotClear) cvCalcHist(img, hist, doNotClear, mask)
479 #define cvQueryHistValue_1D( hist, idx0 ) \
480 ((float)cvGetReal1D( (hist)->bins, (idx0)))
481 #define cvQueryHistValue_2D( hist, idx0, idx1 ) \
482 ((float)cvGetReal2D( (hist)->bins, (idx0), (idx1)))
483 #define cvQueryHistValue_3D( hist, idx0, idx1, idx2 ) \
484 ((float)cvGetReal3D( (hist)->bins, (idx0), (idx1), (idx2)))
485 #define cvQueryHistValue_nD( hist, idx ) \
486 ((float)cvGetRealND( (hist)
[all...]
/external/opencv/cv/src/
H A Dcvcalccontrasthistogram.cpp46 CvHistogram* hist, int dont_clear ))
50 CvHistogram* hist, int dont_clear ))
63 CvHistogram* hist, int dont_clear )
68 if( !hist || !img )
71 dims = hist->c_dims;
75 if( hist->type != CV_HIST_ARRAY )
82 for( i = 0; i < hist->c_dims; i++ )
84 if( !hist->thresh[i] )
86 assert( hist->chdims[i] );
89 j = hist
[all...]
H A Dcvcalibinit.cpp1202 int hist[5] = {0,0,0,0,0}; local
1262 hist[n]++;
1277 if( !first || hist[0] != 0 || hist[1] != 0 || hist[2] != 4 ||
1278 hist[3] != (pattern_size.width + pattern_size.height)*2 - 8 )
H A Dcvhistogram.cpp47 CvHistogram *hist = 0; local
58 CV_CALL( hist = (CvHistogram *)cvAlloc( sizeof( CvHistogram )));
60 hist->type = CV_HIST_MAGIC_VAL;
61 hist->thresh2 = 0;
62 hist->bins = 0;
65 CV_CALL( hist->bins = cvInitMatNDHeader( &hist->mat, dims, sizes,
67 CV_CALL( cvCreateData( hist->bins ));
71 CV_CALL( hist->bins = cvCreateSparseMat( dims, sizes, CV_HIST_DEFAULT_TYPE ));
79 CV_CALL( cvSetHistBinRanges( hist, range
92 cvMakeHistHeaderForArray( int dims, int *sizes, CvHistogram *hist, float *data, float **ranges, int uniform ) argument
188 cvThreshHist( CvHistogram* hist, double thresh ) argument
224 cvNormalizeHist( CvHistogram* hist, double factor ) argument
273 cvGetMinMaxHistValue( const CvHistogram* hist, float *value_min, float* value_max, int* idx_min, int* idx_max ) argument
721 cvSetHistBinRanges( CvHistogram* hist, float** ranges, int uniform ) argument
794 icvCalcHistLookupTables8u( const CvHistogram* hist, int dims, int* size, int* tab ) argument
1402 cvCalcArrHist( CvArr** img, CvHistogram* hist, int do_not_clear, const CvArr* mask ) argument
2141 cvCalcArrBackProjectPatch( CvArr** arr, CvArr* dst, CvSize patch_size, CvHistogram* hist, int method, double norm_factor ) argument
2261 cvCalcProbDensity( const CvHistogram* hist, const CvHistogram* hist_mask, CvHistogram* hist_dens, double scale ) argument
2313 CvHistogram* hist = 0; local
2461 const CvHistogram * hist = (const CvHistogram *) struct_ptr; local
[all...]
H A Dcvmotempl.cpp288 CvHistogram* hist = 0; local
328 CV_CALL( hist = cvCreateHist( 1, &hist_size, CV_HIST_ARRAY, &ranges ));
330 cvCalcArrHist( &_orient, hist, 0, mask );
333 cvGetMinMaxHistValue( hist, 0, 0, 0, &base_orient );
408 cvReleaseHist( &hist );

Completed in 442 milliseconds

12