HomeSort by relevance Sort by last modified time
    Searched full:thres (Results 1 - 17 of 17) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
deringing_chroma.cpp 35 int thres; local
64 thres = (max_blk + min_blk + 1) >> 1;
79 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
86 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
95 *ptr3 = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres)
    [all...]
deringing_luma.cpp 34 int thres[4], range[4], max_range_blk, max_thres_blk; local
65 thres[blks] = (max_blk + min_blk + 1) >> 1;
71 max_thres_blk = thres[blks];
87 thres[blks] = max_thres_blk;
94 thr = thres[blks];
119 thres[blks] = (max_blk + min_blk + 1) >> 1;
125 max_thres_blk = thres[blks];
141 thres[blks] = max_thres_blk;
148 thr = thres[blks];
177 thres[blks] = (max_blk + min_blk + 1) >> 1
    [all...]
chvr_filter.cpp 45 int max_diff, thres, v0, h0, min_blk, max_blk; local
451 thres = (max_blk + min_blk + 1) >> 1;
458 DeringAdaptiveSmoothMMX(ptr, width, thres, max_diff);
467 AdaptiveSmooth_NoMMX(rec, v0, h0, v0 + 1, h0 + 1, thres, width, max_diff);
535 thres = (max_blk + min_blk + 1) >> 1;
546 AdaptiveSmooth_NoMMX(rec, v0, h0, v0 - 3, h0 - 3, thres, width, max_diff);
mp4dec_lib.h 288 void DeringAdaptiveSmoothMMX(uint8 *img, int incr, int thres, int mxdf);
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue3250.go 50 thres = 1
74 if v != sig || n > thres {
92 if r.n <= thres {
93 t.Fatalf("expected more than %d", thres)
  /prebuilts/go/linux-x86/misc/cgo/test/
issue3250.go 50 thres = 1
74 if v != sig || n > thres {
92 if r.n <= thres {
93 t.Fatalf("expected more than %d", thres)
  /external/libxcam/modules/ocl/
cl_newtonemapping_handler.cpp 95 int thres = (int)(1500 * 1500 / (y_avg[block_id] * y_avg[block_id] + 1) * 600); local
96 int y_max0 = (y_max[block_id] > thres) ? thres : y_max[block_id];
97 int y_max1 = (y_max[block_id] - thres) > 0 ? (y_max[block_id] - thres) : 0;
107 if(y_max[block_id] < thres)
116 if(y_max[block_id] < thres)
  /external/opencv/cvaux/src/
cvbgfg_acmmm2003.cpp 223 int i, j, b, x, y, thres; local
266 for (thres=PIXELRANGE-2; thres>=0 ; thres--)
268 // fprintf(stderr, "Iter %d\n", thres);
272 // fprintf(stderr, "Iter %d entering loop\n", thres);
273 for (j=thres ; j<PIXELRANGE ; j++) {
279 // fprintf(stderr, "Iter %d finishing loop\n", thres);
282 // fprintf(stderr, "Iter %d sum=%g sqsum=%g count=%d sigma = %g\n", thres, sum, sqsum, count, sigma);
283 // fprintf(stderr, "Writing to %x\n", &(relativeVariance[thres]));
    [all...]
  /external/autotest/client/cros/image_comparison/
rgb_image_comparer.py 79 logging.debug("Color counts above thres.: %d", len(above_thres_tuples))
  /bionic/libc/kernel/uapi/linux/
omap3isp.h 257 __u8 thres; member in struct:omap3isp_prev_hmed
275 __u8 thres; member in struct:omap3isp_prev_csup
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
Inliner.cpp 198 int thres = InlineThreshold; local
205 thres = OptSizeThreshold;
209 if (HintThreshold > thres && Callee && !Callee->isDeclaration() &&
211 thres = HintThreshold;
213 return thres;
240 << ", thres=" << AdjThreshold
310 << ", thres=" << AdjThreshold
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 795 LLVMValueRef thres; local
801 thres = bld.zero;
803 thres = lp_build_const_vec(gallivm, src_type, dst_min);
805 tmp[i] = lp_build_max(&bld, tmp[i], thres);
810 thres = bld.one;
812 thres = lp_build_const_vec(gallivm, src_type, dst_max);
814 tmp[i] = lp_build_min(&bld, tmp[i], thres);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SpillPlacement.cpp 158 const float Thres = 1e-4f;
160 if (Sum < -Thres)
162 else if (Sum > Thres)
  /external/kernel-headers/original/uapi/linux/
omap3isp.h 452 * @thres: Horizontal median filter threshold.
457 __u8 thres; member in struct:omap3isp_prev_hmed
489 * @thres: Threshold.
494 __u8 thres; member in struct:omap3isp_prev_csup
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
omap3isp.h 449 * @thres: Horizontal median filter threshold.
454 __u8 thres; member in struct:omap3isp_prev_hmed
486 * @thres: Threshold.
491 __u8 thres; member in struct:omap3isp_prev_csup
  /external/aac/libSBRenc/src/
tran_det.cpp 591 FIXP_DBL thres = thresholds[i]; local
637 delta -= thres;
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 325 << ", thres=" << (IC.getCostDelta() + IC.getCost())
347 << ", thres=" << (IC.getCostDelta() + IC.getCost())

Completed in 1913 milliseconds