Searched refs:histsize (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebKit/qt/tests/qwebhistory/
H A Dtst_qwebhistory.cpp72 int histsize; member in class:tst_QWebHistory
93 histsize = 5;
114 QCOMPARE(hist->count(), histsize);
122 for (int i = histsize;i > 1;i--) {
143 for (int i = 1;i < histsize;i++) {
150 QCOMPARE(page->mainFrame()->toPlainText(), QString("page") + QString::number(histsize));
158 for (int i = 1;i < histsize;i++) {
164 QVERIFY(!hist->itemAt(histsize).isValid());
190 QCOMPARE(histsize, items.count());
193 for (int i = 1;i <= histsize;
[all...]
/external/oprofile/pp/
H A Dopgprof.cpp158 // round-up high_pc to ensure a correct histsize calculus
164 size_t histsize = (high_pc - low_pc) / multiplier; local
166 // FIXME: must we skip the flat profile write if histsize == 0 ?
179 op_write_u32(fp, histsize);
186 u16 * hist = (u16*)xcalloc(histsize, sizeof(u16));
202 if (pos >= histsize) {
218 op_write_file(fp, hist, histsize * sizeof(u16));
/external/opencv/cv/src/
H A Dcvhistogram.cpp876 int dims, histsize[CV_MAX_DIM]; local
880 dims = cvGetDims( hist->bins, histsize );
883 status = icvCalcHistLookupTables8u( hist, dims, histsize, tab );
894 total *= histsize[i];
1129 int dims, histsize[CV_MAX_DIM]; local
1133 dims = cvGetDims( hist->bins, histsize );
1140 double t = histsize[i]/((double)hist->thresh[i][1] - hist->thresh[i][0]);
1158 int sz = histsize[0];
1210 int sz0 = histsize[0], sz1 = histsize[
1559 int dims, histsize[CV_MAX_DIM]; local
1820 int dims, histsize[CV_MAX_DIM]; local
[all...]
/external/mksh/src/
H A Dhistrap.c536 if (n > 0 && n != histsize) {
547 histsize = n;
595 histsize = HISTORYSIZE;
596 history = alloc2(histsize, sizeof(char *), APERM);
662 if (++hp >= history + histsize) {
665 for (hp = history; hp < history + histsize - 1; hp++)
760 if (lines > histsize) {
828 * Shrink the history file to histsize lines
839 nbase = hist_skip_back(nbase, &nbytes, histsize);
H A Dvar.c1111 i = histsize;
H A Dsh.h1464 EXTERN int histsize; /* history size */ variable

Completed in 179 milliseconds