Searched defs:thresh (Results 1 - 25 of 70) sorted by relevance

123

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_noise_estimate.h32 int thresh; member in struct:noise_estimate
H A Dvp9_rd.h175 static INLINE int rd_less_than_thresh(int64_t best_rd, int thresh, argument
177 return best_rd < ((int64_t)thresh * (*thresh_fact) >> 5) || thresh == INT_MAX;
/external/tensorflow/tensorflow/core/kernels/
H A Dcompare_and_bitpack_op_gpu.cu.cc44 const T thresh = ldg(threshold); local
48 ((((ldg(block) > thresh) << 7)) | (((ldg(block + 1) > thresh) << 6)) |
49 (((ldg(block + 2) > thresh) << 5)) |
50 (((ldg(block + 3) > thresh) << 4)) |
51 (((ldg(block + 4) > thresh) << 3)) |
52 (((ldg(block + 5) > thresh) << 2)) |
53 (((ldg(block + 6) > thresh) << 1)) | (((ldg(block + 7) > thresh))));
84 const float thresh local
101 const double thresh = ldg(threshold); local
[all...]
H A Dcompare_and_bitpack_op.cc91 const T& thresh, int64 start,
96 *out = ((((block[0] > thresh) << 7)) | (((block[1] > thresh) << 6)) |
97 (((block[2] > thresh) << 5)) | (((block[3] > thresh) << 4)) |
98 (((block[4] > thresh) << 3)) | (((block[5] > thresh) << 2)) |
99 (((block[6] > thresh) << 1)) | (((block[7] > thresh))));
111 typename TTypes<uint8>::Matrix output, bool /*thresh*/, int6
89 Compute(typename TTypes<T>::ConstMatrix input, typename TTypes<uint8>::Matrix output, const T& thresh, int64 start, int64 limit) argument
147 const T thresh = threshold(); local
[all...]
H A Dsparse_add_op.cc88 OP_REQUIRES_OK(ctx, ctx->input("thresh", &thresh_t));
94 const Treal thresh = thresh_t->scalar<Treal>()(); variable
118 if (thresh <= std::abs(s)) {
/external/aac/libAACenc/src/
H A Dgrp_data.cpp186 FIXP_DBL thresh = sfbThreshold->Short[wnd][sfb]; local
188 thresh = nrgAddSaturate(thresh, sfbThreshold->Short[wnd + j][sfb]);
190 sfbThreshold->Long[i++] = thresh;
/external/libmpeg2/common/x86/
H A Dideint_cac_ssse3.c171 __m128i min, max, diff, thresh; local
185 thresh = _mm_set1_epi16((RSUM_CSUM_THRESH >> 2) - 1);
187 mask = _mm_cmpgt_epi16(diff, thresh);
/external/libvpx/libvpx/vp8/common/mips/mmi/
H A Dloopfilter_filters_mmi.c33 const unsigned char *limit, const unsigned char *thresh, int count) {
106 "gsldlc1 %[ftmp10], 0x07(%[thresh]) \n\t"
107 "gsldrc1 %[ftmp10], 0x00(%[thresh]) \n\t"
193 [thresh]"r"(thresh),
208 const unsigned char *thresh, int count) {
328 "gsldlc1 %[ftmp8], 0x07(%[thresh]) \n\t"
329 "gsldrc1 %[ftmp8], 0x00(%[thresh]) \n\t"
455 [thresh]"r"(thresh),
31 vp8_loop_filter_horizontal_edge_mmi( unsigned char *src_ptr, int src_pixel_step, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count) argument
204 vp8_loop_filter_vertical_edge_mmi(unsigned char *src_ptr, int src_pixel_step, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count) argument
484 vp8_mbloop_filter_horizontal_edge_mmi( unsigned char *src_ptr, int src_pixel_step, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count) argument
677 vp8_mbloop_filter_vertical_edge_mmi( unsigned char *src_ptr, int src_pixel_step, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count) argument
[all...]
/external/libvpx/libvpx/vpx_dsp/mips/
H A Dloopfilter_masks_dspr2.h31 uint32_t thresh, uint32_t *hev,
54 * hev |= (abs(p1 - p0) > thresh)
59 "cmpgu.lt.qb %[c], %[thresh], %[r_k] \n\t"
65 * hev |= (abs(q1 - q0) > thresh)
70 "cmpgu.lt.qb %[c], %[thresh], %[r_k] \n\t"
93 [thresh] "r"(thresh));
129 uint32_t limit, uint32_t flimit, uint32_t thresh, uint32_t p1, uint32_t p0,
155 * hev |= (abs(p1 - p0) > thresh)
156 * flat |= (abs(p1 - p0) > thresh)
27 filter_hev_mask_dspr2(uint32_t limit, uint32_t flimit, uint32_t p1, uint32_t p0, uint32_t p3, uint32_t p2, uint32_t q0, uint32_t q1, uint32_t q2, uint32_t q3, uint32_t thresh, uint32_t *hev, uint32_t *mask) argument
128 filter_hev_mask_flatmask4_dspr2( uint32_t limit, uint32_t flimit, uint32_t thresh, uint32_t p1, uint32_t p0, uint32_t p3, uint32_t p2, uint32_t q0, uint32_t q1, uint32_t q2, uint32_t q3, uint32_t *hev, uint32_t *mask, uint32_t *flat) argument
[all...]
H A Dloopfilter_filters_dspr2.c24 const uint8_t *thresh) {
35 uthresh = *thresh;
109 const uint8_t *thresh) {
120 uthresh = *thresh;
322 const uint8_t *thresh) {
323 vpx_lpf_vertical_16_dspr2(s, p, blimit, limit, thresh);
324 vpx_lpf_vertical_16_dspr2(s + 8 * p, p, blimit, limit, thresh);
22 vpx_lpf_horizontal_4_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh) argument
107 vpx_lpf_vertical_4_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh) argument
320 vpx_lpf_vertical_16_dual_dspr2(uint8_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh) argument
H A Dloopfilter_mb_dspr2.c24 const uint8_t *thresh) {
38 uthresh = *thresh;
291 const uint8_t *thresh) {
305 uthresh = *thresh;
22 vpx_lpf_horizontal_8_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh) argument
289 vpx_lpf_vertical_8_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh) argument
H A Dloopfilter_4_msa.c19 v16u8 mask, hev, flat, thresh, b_limit, limit; local
25 thresh = (v16u8)__msa_fill_b(*thresh_ptr);
29 LPF_MASK_HEV(p3, p2, p1, p0, q0, q1, q2, q3, limit, b_limit, thresh, hev,
76 v16u8 mask, hev, flat, limit, thresh, b_limit; local
82 thresh = (v16u8)__msa_fill_b(*thresh_ptr);
88 LPF_MASK_HEV(p3, p2, p1, p0, q0, q1, q2, q3, limit, b_limit, thresh, hev,
/external/tcpdump/
H A Dprint-dvmrp.c258 register u_char thresh; local
266 thresh = *bp++;
273 ipaddr_string(ndo, bp), metric, thresh));
289 register u_char metric, thresh, flags; local
301 thresh = *bp++;
308 metric, thresh));
/external/google-benchmark/src/
H A Dstring_util.cc30 void ToExponentAndMantissa(double val, double thresh, int precision, argument
43 std::max(thresh, 1.0 / std::pow(10.0, precision));
/external/libcxx/utils/google-benchmark/src/
H A Dstring_util.cc30 void ToExponentAndMantissa(double val, double thresh, int precision, argument
43 std::max(thresh, 1.0 / std::pow(10.0, precision));
/external/libvpx/libvpx/vp8/common/
H A Dloopfilter_filters.c38 static signed char vp8_hevmask(uc thresh, uc p1, uc p0, uc q0, uc q1) { argument
40 hev |= (abs(p1 - p0) > thresh) * -1;
41 hev |= (abs(q1 - q0) > thresh) * -1;
93 const unsigned char *thresh,
106 hev = vp8_hevmask(thresh[0], s[-2 * p], s[-1 * p], s[0 * p], s[1 * p]);
117 const unsigned char *thresh,
130 hev = vp8_hevmask(thresh[0], s[-2], s[-1], s[0], s[1]);
194 const unsigned char *thresh,
207 hev = vp8_hevmask(thresh[0], s[-2 * p], s[-1 * p], s[0 * p], s[1 * p]);
219 const unsigned char *thresh,
90 loop_filter_horizontal_edge_c(unsigned char *s, int p, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count) argument
114 loop_filter_vertical_edge_c(unsigned char *s, int p, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count) argument
191 mbloop_filter_horizontal_edge_c(unsigned char *s, int p, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count) argument
216 mbloop_filter_vertical_edge_c(unsigned char *s, int p, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count) argument
[all...]
/external/opencv/cv/src/
H A Dcvthresh.cpp46 CvSize roi, uchar thresh, uchar maxval, int type )
54 for( i = 0; i <= thresh; i++ )
60 for( i = 0; i <= thresh; i++ )
66 for( i = 0; i <= thresh; i++ )
69 tab[i] = thresh;
72 for( i = 0; i <= thresh; i++ )
78 for( i = 0; i <= thresh; i++ )
114 CvSize roi, float thresh, float maxval, int type )
122 v.f = thresh; iThresh = CV_TOGGLE_FLT(v.i);
159 if( temp > thresh )
45 icvThresh_8u_C1R( const uchar* src, int src_step, uchar* dst, int dst_step, CvSize roi, uchar thresh, uchar maxval, int type ) argument
113 icvThresh_32f_C1R( const float *src, int src_step, float *dst, int dst_step, CvSize roi, float thresh, float maxval, int type ) argument
297 cvThreshold( const void* srcarr, void* dstarr, double thresh, double maxval, int type ) argument
[all...]
/external/libvpx/libvpx/test/
H A Dfdct8x8_test.cc464 void CompareInvReference(IdctFunc ref_txfm, int thresh) { argument
481 coeff[scan[j]] = rnd(thresh) * (1 - 2 * (i % 2));
/external/speex/libspeex/
H A Dsb_celp.c467 float thresh; local
470 thresh = mode->vbr_thresh[modeid][v1];
472 thresh = (st->vbr_quality-v1) * mode->vbr_thresh[modeid][v1+1] +
474 if (st->relative_quality >= thresh && st->sampling_rate*st->submodes[modeid]->bits_per_frame/st->full_frame_size <= st->vbr_max_high)
/external/webp/src/dsp/
H A Ddec_mips32.c69 static WEBP_INLINE int hev(const uint8_t* p, int step, int thresh) { argument
71 return (abs_mips32(p1 - p0) > thresh) || (abs_mips32(q1 - q0) > thresh);
94 int thresh, int ithresh, int hev_thresh) {
95 const int thresh2 = 2 * thresh + 1;
110 int thresh, int ithresh, int hev_thresh) {
111 const int thresh2 = 2 * thresh + 1;
126 int thresh, int ithresh, int hev_thresh) {
127 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh);
131 int thresh, in
92 FilterLoop26(uint8_t* p, int hstride, int vstride, int size, int thresh, int ithresh, int hev_thresh) argument
108 FilterLoop24(uint8_t* p, int hstride, int vstride, int size, int thresh, int ithresh, int hev_thresh) argument
125 VFilter16(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
130 HFilter16(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
136 VFilter8(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
142 HFilter8(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
148 VFilter8i(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
154 HFilter8i(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
161 VFilter16i(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
170 HFilter16i(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
182 SimpleVFilter16(uint8_t* p, int stride, int thresh) argument
192 SimpleHFilter16(uint8_t* p, int stride, int thresh) argument
202 SimpleVFilter16i(uint8_t* p, int stride, int thresh) argument
210 SimpleHFilter16i(uint8_t* p, int stride, int thresh) argument
[all...]
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU.h178 void setPivotThreshold(const RealScalar& thresh) argument
180 m_diagpivotthresh = thresh;
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
H A DSpecialFunctionsImpl.h1167 const Scalar thresh = local
1220 if (numext::abs(ans - r) < numext::abs(r) * thresh) {
/external/kernel-headers/original/uapi/drm/
H A Dtegra_drm.h59 __u32 thresh; member in struct:drm_tegra_syncpt_wait
117 __u32 thresh; member in struct:drm_tegra_waitchk
/external/libdrm/include/drm/
H A Dtegra_drm.h49 __u32 thresh; member in struct:drm_tegra_syncpt_wait
107 __u32 thresh; member in struct:drm_tegra_waitchk
/external/libnl/lib/route/
H A Dneightbl.c613 void rtnl_neightbl_set_gc_tresh1(struct rtnl_neightbl *ntbl, int thresh) argument
615 ntbl->nt_gc_thresh1 = thresh;
619 void rtnl_neightbl_set_gc_tresh2(struct rtnl_neightbl *ntbl, int thresh) argument
621 ntbl->nt_gc_thresh2 = thresh;
625 void rtnl_neightbl_set_gc_tresh3(struct rtnl_neightbl *ntbl, int thresh) argument
627 ntbl->nt_gc_thresh3 = thresh;

Completed in 3558 milliseconds

123