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

1 2

  /external/webrtc/webrtc/modules/video_processing/include/
video_processing.h 32 uint32_t hist[256]; // Frame histogram. member in struct:webrtc::VideoProcessing::FrameStats
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicHistogram.java 100 ScriptIntrinsicHistogram hist = local
102 hist.setOutput(mAout);
103 hist.forEach(mAin, makeClipper(x1, y1, x2, y2));
111 hist.destroy();
226 ScriptIntrinsicHistogram hist = local
228 hist.setOutput(mAout);
229 hist.setDotCoefficients(dotVals[0], dotVals[1], dotVals[2], dotVals[3]);
230 hist.forEach_Dot(mAin, makeClipper(x1, y1, x2, y2));
238 hist.destroy();
  /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]);
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 47 ScriptIntrinsicHistogram hist = ScriptIntrinsicHistogram.create(rs, Element.U8_4(rs)); local
53 hist.setOutput(sums);
54 hist.forEach(input);
  /external/libvorbis/vq/
huffbuild.c 130 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/libedit/examples/
tc1.c 137 History *hist; local
146 hist = history_init(); /* Init the builtin history */
148 history(hist, &ev, H_SETSIZE, 100);
160 el_set(el, EL_HIST, history, hist);
222 if (history(hist, &ev, H_SET, lastevent) == -1)
224 history(hist, &ev, H_ADD , buf);
226 history(hist, &ev, H_ENTER, buf);
231 history(hist, &ev, continuation ? H_APPEND : H_ENTER, buf);
254 for (rv = history(hist, &ev, H_LAST); rv != -1;
255 rv = history(hist, &ev, H_PREV)
    [all...]
wtc1.c 114 HistoryW *hist; local
127 hist = history_winit(); /* Init built-in history */
128 history_w(hist, &ev, H_SETSIZE, 100); /* Remember 100 events */
129 history_w(hist, &ev, H_LOAD, hfile);
139 el_wset(el, EL_HIST, history_w, hist); /* FIXME - history_w? */
193 history_w(hist, &ev, continuation ? H_APPEND : H_ENTER, line);
214 for(rc = history_w(hist, &ev, H_LAST);
216 rc = history_w(hist, &ev, H_PREV))
222 history_w(hist, &ev, H_CLEAR);
228 history_w(hist, &ev, H_LOAD
    [all...]
  /external/libmojo/base/android/
record_histogram.cc 41 Histogram* hist = static_cast<Histogram*>(histogram); local
42 params_str += StringPrintf("/%d/%d/%d", hist->declared_min(),
43 hist->declared_max(), hist->bucket_count());
  /external/libvpx/libvpx/
rate_hist.c 40 struct rate_hist *hist = calloc(1, sizeof(*hist)); local
42 if (hist == NULL || cfg == NULL || fps == NULL || fps->num == 0 ||
44 destroy_rate_histogram(hist);
51 hist->samples = cfg->rc_buf_sz * 5 / 4 * fps->num / fps->den / 1000;
54 if (hist->samples == 0) hist->samples = 1;
56 hist->frames = 0;
57 hist->total = 0;
59 hist->pts = calloc(hist->samples, sizeof(*hist->pts))
    [all...]
  /external/ltp/testcases/realtime/func/async_handler/
async_handler.c 119 stats_container_t hist; local
123 stats_container_init(&hist, HIST_BUCKETS);
162 stats_hist(&hist, &dat);
166 stats_container_save("hist",
168 "Latency (us)", "Samples", &hist, "steps");
async_handler_tsc.c 134 stats_container_t hist; local
138 stats_container_init(&hist, HIST_BUCKETS);
182 stats_hist(&hist, &dat);
186 stats_container_save("hist",
188 "Latency (us)", "Samples", &hist, "steps");
  /external/ltp/testcases/realtime/func/gtod_latency/
gtod_latency.c 79 "hist"
93 printf("Usage: ./gtod_latency {-[so|scatter-output] -[ho|hist-output]"
94 " -[st|scatter-title] -[ht|hist-title] -[sxl|scatter-xlabel]"
95 " -[syl|scatter-ylabel] -[hxl|hist-xlabel] -[hyl|hist-ylabel]"
131 if (!strcmp(flag, "ho") || !strcmp(flag, "hist-output")) {
149 if (!strcmp(flag, "ht") || !strcmp(flag, "hist-title")) {
176 if (!strcmp(flag, "hxl") || !strcmp(flag, "hist-xlabel")) {
185 if (!strcmp(flag, "hyl") || !strcmp(flag, "hist-ylabel")) {
234 stats_container_t hist; local
    [all...]
  /external/ltp/testcases/realtime/func/hrtimer-prio/
hrtimer-prio.c 180 stats_container_t hist; local
186 if (stats_container_init(&hist, HIST_BUCKETS)) {
187 printf("Cannot init stat containers for hist\n");
209 stats_hist(&hist, &dat);
213 stats_container_save("hist", "High Resolution Timer Latency Histogram",
214 "Latency (us)", "Samples", &hist, "steps");
  /external/ltp/testcases/realtime/func/periodic_cpu_load/
periodic_cpu_load_single.c 89 stats_container_t hist; local
101 stats_container_init(&hist, HIST_BUCKETS);
109 if (asprintf(&hist_filename, "%s-hist", filename_prefix) == -1) {
147 "Runtime (us)", "Samples", &hist, "steps");
  /external/ltp/testcases/realtime/func/pthread_kill_latency/
pthread_kill_latency.c 120 stats_container_t hist; local
125 stats_container_init(&hist, HIST_BUCKETS);
204 stats_hist(&hist, &dat);
207 stats_container_save("hist", "pthread_kill Latency Histogram",
208 "Latency (us)", "Samples", &hist, "steps");
  /external/ltp/testcases/realtime/func/sched_latency/
sched_latency.c 75 stats_container_t hist; variable
215 stats_hist(&hist, &dat);
219 stats_container_save("hist", "Periodic Scheduling Latency Histogram",
220 "Latency (us)", "Samples", &hist, "steps");
277 if (stats_container_init(&hist, HIST_BUCKETS)) {
284 stats_container_free(&hist);
300 stats_container_free(&hist);
  /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/libpng/
pnginfo.h 36 * pcal_purpose, pcal_units, pcal_params, hist, iccp_name, iccp_profile,
189 /* The hIST chunk contains the relative frequency or importance of the
195 png_uint_16p hist; member in struct:png_info_def
  /external/opencv/cv/src/
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...]
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 );
  /external/pdfium/third_party/libpng16/
pnginfo.h 36 * pcal_purpose, pcal_units, pcal_params, hist, iccp_name, iccp_profile,
189 /* The hIST chunk contains the relative frequency or importance of the
195 png_uint_16p hist; member in struct:png_info_def
  /external/skia/third_party/libpng/
pnginfo.h 36 * pcal_purpose, pcal_units, pcal_params, hist, iccp_name, iccp_profile,
189 /* The hIST chunk contains the relative frequency or importance of the
195 png_uint_16p hist; member in struct:png_info_def
  /toolchain/binutils/binutils-2.25/gprof/
symtab.h 73 hist;
72 hist; member in struct:sym
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
simpleKenny.c 101 unsigned int hist[600]; local
116 memset(hist, 0, sizeof(hist));
167 printf("cannot open hist file %s", histFileName);
375 hist[stream_len]++;
493 fprintf(histFile, "%6d ", hist[n]);
  /cts/hostsidetests/incident/src/com/android/server/cts/
NetstatsIncidentTest.java 347 final NetworkStatsHistoryProto hist = stats.getHistory(); local
349 assertPositive("duration", hist.getBucketDurationMs());
352 final long minInterval = hist.getBucketDurationMs() - (60 * 60 * 1000);
355 for (NetworkStatsHistoryBucketProto bucket : hist.getBucketsList()) {

Completed in 2774 milliseconds

1 2