HomeSort by relevance Sort by last modified time
    Searched refs:hist (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 70 QWebHistory* hist; member in class:tst_QWebHistory
92 hist = page->history();
106 QCOMPARE(hist->currentItem().title(), QString("page5"));
114 QCOMPARE(hist->count(), histsize);
124 hist->back();
128 hist->back();
138 while (hist->canGoBack()) {
139 hist->back();
145 hist->forward();
149 hist->forward()
208 save << *hist; local
216 load >> *hist; local
248 save << *hist; local
250 load >> *hist; local
278 save << *hist; local
283 load >> *hist; local
    [all...]
  /external/opencv/cv/src/
cvcalccontrasthistogram.cpp 46 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->dims[0] * hist->mdims[0]
    [all...]
cvhistogram.cpp 47 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, ranges, uniform ))
2313 CvHistogram* hist = 0; local
2461 const CvHistogram * hist = (const CvHistogram *) struct_ptr; local
    [all...]
cvthresh.cpp 197 icvGetThreshVal_Otsu( const CvHistogram* hist )
214 if( !CV_IS_HIST(hist) || CV_IS_SPARSE_HIST(hist) || hist->mat.dims != 1 )
218 count = hist->mat.dim[0].size;
219 h = (float*)cvPtr1D( hist->bins, 0 );
221 if( !CV_HIST_HAS_RANGES(hist) || CV_IS_UNIFORM_HIST(hist) )
223 if( CV_HIST_HAS_RANGES(hist) )
225 low = hist->thresh[0][0]
299 CvHistogram* hist = 0; local
    [all...]
cvpgh.cpp 320 /* convert hist to floats */
334 cvCalcPGH( const CvSeq * contour, CvHistogram * hist )
343 if( !CV_IS_HIST(hist))
346 if( CV_IS_SPARSE_HIST( hist ))
349 dims = cvGetDims( hist->bins, size );
357 IPPI_CALL( icvCalcPGH( contour, ((CvMatND*)(hist->bins))->data.fl, size[0], size[1] ));
cvmotempl.cpp 288 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 );
  /system/core/sh/
myhistedit.h 37 extern History *hist;
histedit.c 68 History *hist; /* history cookie */ variable
91 if (!hist) {
96 hist = history_init();
99 if (hist != NULL)
132 if (hist)
133 el_set(el, EL_HIST, history, hist);
160 if (hist) {
161 history_end(hist);
162 hist = NULL;
175 if (hist != NULL)
    [all...]
input.c 350 if (parsefile->fd == 0 && hist && something) {
353 history(hist, &he, whichprompt == 1? H_ENTER : H_APPEND,
  /sdk/emulator/qtools/
hist_trace.cpp 8 int hist[kMaxHistEntries]; variable
43 hist[bb_diff] += 1;
51 if (hist[ii] == 0)
53 per = 100.0 * hist[ii] / total;
54 sum += hist[ii];
56 printf(" %4d: %6d %6.2f %6.2f\n", ii - kMaxHistEntries2, hist[ii], per, sum_per);
  /external/srec/srec/clib/
specnorm.c 48 else spec->hist[spec_val - spec->low_entry] += UNIT_SIZE;
105 count += spec->hist[ii];
111 cumval += spec->hist[ii];
116 count += spec->hist[jj];
117 accum += spec->hist[jj] * (jj - ii);
141 count += spec->hist[jj];
142 accum += spec->hist[jj] * ii;
149 totcount += spec->hist[jj];
235 spec->hist = (long *) CALLOC_CLR(high_entry - low_entry + 1,
236 sizeof(int), "clib.spec.hist");
    [all...]
  /external/blktrace/btt/
unplug_hist.c 30 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/oprofile/pp/
opgprof.cpp 186 u16 * hist = (u16*)xcalloc(histsize, sizeof(u16)); local
208 if (hist[pos] + count > (u16)-1) {
209 hist[pos] = (u16)-1;
211 << hist[pos] + count - ((u16)-1) << endl;
213 hist[pos] += (u16)count;
218 op_write_file(fp, hist, histsize * sizeof(u16));
225 free(hist);
  /external/srec/srec/include/
specnorm.h 55 long *hist; member in struct:__anon11381
  /external/opencv/cv/include/
cvcompat.h 124 #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)->bins, (idx))
    [all...]
cv.h 839 CVAPI(void) cvReleaseHist( CvHistogram** hist ); variable
842 CVAPI(void) cvClearHist( CvHistogram* hist ); variable
    [all...]
  /external/jdiff/src/jdiff/
HTMLStatistics.java 195 int[] hist = new int[101]; local
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 = new int[101] local
    [all...]
  /external/netperf/
Android.mk 21 L_COMMON_SRC := hist.h netlib.c netsh.c nettest_bsd.c nettest_dlpi.c \
  /external/opencv/cxcore/include/
cxtypes.h 806 it turns to CV_HIST_UNIFORM_FLAG of hist->type */
819 #define CV_IS_HIST( hist ) \
820 ((hist) != NULL && \
821 (((CvHistogram*)(hist))->type & CV_MAGIC_MASK) == CV_HIST_MAGIC_VAL && \
822 (hist)->bins != NULL)
824 #define CV_IS_UNIFORM_HIST( hist ) \
825 (((hist)->type & CV_HIST_UNIFORM_FLAG) != 0)
827 #define CV_IS_SPARSE_HIST( hist ) \
828 CV_IS_SPARSE_MAT((hist)->bins)
830 #define CV_HIST_HAS_RANGES( hist ) \
    [all...]
  /external/libpng/
pngset.c 182 png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist)
186 png_debug1(1, "in %s storage function", "hIST");
195 "Invalid palette size, hIST allocation skipped.");
205 png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
207 if (png_ptr->hist == NULL)
209 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
214 png_ptr->hist[i] = hist[i];
215 info_ptr->hist = png_ptr->hist;
    [all...]
pngget.c 562 png_get_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p *hist)
564 png_debug1(1, "in %s retrieval function", "hIST");
567 && hist != NULL)
569 *hist = info_ptr->hist;
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageSummary.java 170 Parcel hist = Parcel.obtain(); local
171 mStats.writeToParcelWithoutUids(hist, 0);
172 byte[] histData = hist.marshall();
367 BatteryHistoryPreference hist = new BatteryHistoryPreference(getActivity(), mStats); local
368 hist.setOrder(-1);
369 mAppListGroup.addPreference(hist);
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngset.c 218 png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist)
222 png_debug1(1, "in %s storage function\n", "hIST");
229 "Invalid palette size, hIST allocation skipped.");
238 png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
240 if (png_ptr->hist == NULL)
242 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
247 png_ptr->hist[i] = hist[i];
248 info_ptr->hist = png_ptr->hist;
    [all...]
pngget.c 525 png_get_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p *hist)
528 && hist != NULL)
530 png_debug1(1, "in %s retrieval function\n", "hIST");
531 *hist = info_ptr->hist;
png.c 530 /* free any hIST entry */
537 png_free(png_ptr, info_ptr->hist);
538 info_ptr->hist = NULL;

Completed in 1188 milliseconds

1 2