HomeSort by relevance Sort by last modified time
    Searched refs:ithresh (Results 1 - 5 of 5) sorted by null

  /external/opencv/cv/src/
cvthresh.cpp 120 int iThresh, iMax;
122 v.f = thresh; iThresh = CV_TOGGLE_FLT(v.i);
136 idst[j] = ((CV_TOGGLE_FLT(temp) <= iThresh) - 1) & iMax;
147 idst[j] = ((CV_TOGGLE_FLT(temp) > iThresh) - 1) & iMax;
172 idst[j] = ((CV_TOGGLE_FLT( temp ) <= iThresh) - 1) & temp;
183 idst[j] = ((CV_TOGGLE_FLT( temp ) > iThresh) - 1) & temp;
311 int ithresh, imaxval, cn; local
391 ithresh = cvFloor(thresh);
394 imaxval = ithresh;
397 if( ithresh < 0 || ithresh >= 255
    [all...]
  /external/webp/src/dsp/
dec.c 594 int thresh, int ithresh, int hev_thresh) {
596 if (needs_filter2(p, hstride, thresh, ithresh)) {
609 int thresh, int ithresh, int hev_thresh) {
611 if (needs_filter2(p, hstride, thresh, ithresh)) {
624 int thresh, int ithresh, int hev_thresh) {
625 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh);
629 int thresh, int ithresh, int hev_thresh) {
630 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh);
635 int thresh, int ithresh, int hev_thresh) {
639 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh)
    [all...]
dec_sse2.c 677 #define COMPLEX_FL_MASK(p1, p0, q0, q1, thresh, ithresh, mask) { \
679 const __m128i it = _mm_set1_epi8(ithresh); \
688 int thresh, int ithresh, int hev_thresh) {
701 COMPLEX_FL_MASK(p1, p0, q0, q1, thresh, ithresh, mask);
714 int thresh, int ithresh, int hev_thresh) {
725 COMPLEX_FL_MASK(p1, p0, q0, q1, thresh, ithresh, mask);
734 int thresh, int ithresh, int hev_thresh) {
750 COMPLEX_FL_MASK(p1, p0, q0, q1, thresh, ithresh, mask);
762 int thresh, int ithresh, int hev_thresh) {
777 COMPLEX_FL_MASK(p1, p0, q0, q1, thresh, ithresh, mask)
    [all...]
dsp.h 124 int thresh, int ithresh, int hev_t);
126 int thresh, int ithresh, int hev_t);
  /external/webp/src/enc/
filter.c 137 int thresh, int ithresh, int hev_thresh) {
139 if (needs_filter2(p, hstride, thresh, ithresh)) {
152 int thresh, int ithresh, int hev_thresh) {
156 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh);
161 int thresh, int ithresh, int hev_thresh) {
165 FilterLoop24(p, 1, stride, 16, thresh, ithresh, hev_thresh);
170 int thresh, int ithresh, int hev_thresh) {
171 FilterLoop24(u + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh);
172 FilterLoop24(v + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh);
176 int thresh, int ithresh, int hev_thresh)
    [all...]

Completed in 63 milliseconds