HomeSort by relevance Sort by last modified time
    Searched refs:MAX (Results 151 - 175 of 494) sorted by null

1 2 3 4 5 67 8 91011>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_extend.c 67 const int eb_y = MAX(ALIGN_POWER_OF_TWO(src->y_width, 6) - src->y_width,
69 const int er_y = MAX(ALIGN_POWER_OF_TWO(src->y_height, 6) - src->y_height,
vp9_mcomp.c 37 col_min = MAX(col_min, (MV_LOW >> 3) + 1);
38 row_min = MAX(row_min, (MV_LOW >> 3) + 1);
58 size = MAX(16, size);
293 const int minc = MAX(x->mv_col_min * 8, ref_mv->col - MV_MAX);
295 const int minr = MAX(x->mv_row_min * 8, ref_mv->row - MV_MAX);
392 const int minc = MAX(x->mv_col_min * 8, ref_mv->col - MV_MAX);
394 const int minr = MAX(x->mv_row_min * 8, ref_mv->row - MV_MAX);
492 #define MAX_PATTERN_CANDIDATES 8 // max number of canddiates per scale
    [all...]
  /packages/apps/Gallery2/jni/filters/
wbalance.c 148 int max = MAX(wr, MAX(wg, wb)); local
149 float avg = (min+max)/2.f;
  /external/chromium_org/third_party/sqlite/src/src/
test_onefile.c 251 #define MAX(x,y) ((x)>(y)?(x):(y))
300 pTmp->nSize = MAX(pTmp->nSize, iOfst+iAmt);
456 pReal->nDatabase = MAX(pReal->nDatabase, iAmt+iOfst);
478 pReal->nJournal = MAX(pReal->nJournal, iAmt+iOfst);
824 fs_vfs.base.szOsFile = MAX(sizeof(tmp_file), sizeof(fs_file));
  /external/libpng/contrib/gregbook/
rpng2-x.c 124 #define MAX(a,b) (a>b?a:b)
126 #define CLIP(a,min,max) MAX(min,MIN((a),max))
128 #define CLIP8P(c) MAX(0,(MIN((c),255))) /* 8-bit pos. integer (uch) */
305 long loop_interval = -1; /* seconds (100,000 max) */
1058 int k, hmax, max; local
1842 int k, hmax, max; local
    [all...]
  /external/opencv/ml/src/
mlsvm.cpp 453 // cache size = max(num_of_samples^2*sizeof(Qfloat)*0.25, 64Kb)
455 cache_size = MAX( cache_line_size*sample_count/4, CV_SVM_MIN_CACHE_SIZE );
655 double delta = (-G[i]-G[j])/MAX(fabs(denom),FLT_EPSILON);
685 double delta = (G[i]-G[j])/MAX(fabs(denom),FLT_EPSILON);
750 double Gmax1 = -DBL_MAX; // max { -grad(f)_i * d | y_i*d = +1 }
753 double Gmax2 = -DBL_MAX; // max { -grad(f)_i * d | y_i*d = -1 }
812 lb = MAX(lb,yG);
819 lb = MAX(lb,yG);
839 double Gmax1 = -DBL_MAX; // max { -grad(f)_i * d | y_i = +1, d = +1 }
842 double Gmax2 = -DBL_MAX; // max { -grad(f)_i * d | y_i = +1, d = -1
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11modes.c 38 #define MAX(a, b) (a > b ? a : b)
957 real_w = MAX(real_w, screen_w);
960 real_h = MAX(real_h, screen_h);
1017 real_w = MAX(window_w, MAX(real_w, screen_w));
1018 real_h = MAX(window_h, MAX(real_h, screen_h));
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 24 #ifndef MAX
25 #define MAX(a, b) ((a) < (b) ? (b) : (a))
348 newAlloc = MAX(4, 2 * m_tex.allocTextures);
  /external/bluetooth/bluedroid/test/bluedroidtest/
bluedroidtest.c 55 #ifndef MAX
56 #define MAX(x, y) ((x) > (y) ? (x) : (y))
447 console_cmd_maxlen = MAX(console_cmd_maxlen, (int)strlen(console_cmd_list[i].name));
663 int max = 0; local
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 665 * Clamp X to [MIN, MAX].
668 #define CLAMP( X, MIN, MAX ) ( (X)<(MIN) ? (MIN) : ((X)>(MAX) ? (MAX) : (X)) )
  /external/chromium_org/third_party/skia/experimental/Intersection/
NearestPoint.cpp 176 lb = MAX(0, k - m);
330 max_distance_above = MAX(max_distance_above, distance[i]);
367 right_intercept = MAX(intercept_1, intercept_2);
  /external/libxml2/
timsort.h 41 #ifndef MAX
42 #define MAX(x,y) (((x) > (y) ? (x) : (y)))
81 const int shift = MAX(top_bit, 6) - 6;
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 686 * Clamp X to [MIN, MAX].
689 #define CLAMP( X, MIN, MAX ) ( (X)<(MIN) ? (MIN) : ((X)>(MAX) ? (MAX) : (X)) )
  /external/opencv/cv/src/
cvsnakes.cpp 232 maxEcont = MAX( maxEcont, energy );
270 maxEcurv = MAX( maxEcurv, energy );
333 maxEimg = MAX( maxEimg, energy );
cvlinefit.cpp 208 n = (float)MAX(n, eps);
277 w[i] = (float)(1. / MAX(t, eps));
420 t = MAX(t,-1.);
570 t = MAX(t,-1.);
  /external/pixman/demos/
scale.c 73 m1 = MAX (a, b);
74 m2 = MAX (c, d);
75 return MAX (m1, m2);
  /external/skia/experimental/Intersection/
NearestPoint.cpp 176 lb = MAX(0, k - m);
330 max_distance_above = MAX(max_distance_above, distance[i]);
367 right_intercept = MAX(intercept_1, intercept_2);
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 23 #ifndef MAX
24 #define MAX(a, b) ((a) < (b) ? (b) : (a))
345 newAlloc = MAX(4, 2 * m_tex.allocTextures);
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 37 col_min = MAX(col_min, (MV_LOW >> 3) + 1);
38 row_min = MAX(row_min, (MV_LOW >> 3) + 1);
58 size = MAX(16, size);
293 const int minc = MAX(x->mv_col_min * 8, ref_mv->col - MV_MAX);
295 const int minr = MAX(x->mv_row_min * 8, ref_mv->row - MV_MAX);
392 const int minc = MAX(x->mv_col_min * 8, ref_mv->col - MV_MAX);
394 const int minr = MAX(x->mv_row_min * 8, ref_mv->row - MV_MAX);
492 #define MAX_PATTERN_CANDIDATES 8 // max number of canddiates per scale
    [all...]
vp9_picklpf.c 74 const int filt_low = MAX(filt_mid - filter_step, min_filter_level);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_picklpf.c 79 const int filt_low = MAX(filt_mid - filter_step, min_filter_level);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_opcode_tmp.h 56 OP12(MAX)
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
ResizableDialog.java 58 setShellStyle(getShellStyle() | SWT.RESIZE | SWT.MAX);
76 int width = Math.min(displayBounds.width, Math.max(oldBounds.width, defaultSize.x));
77 int height = Math.min(displayBounds.height, Math.max(oldBounds.height, defaultSize.y));
  /external/elfutils/0.153/libdw/
dwarf_getpubnames.c 80 allocated = MAX (10, 2 * allocated);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_opcode_tmp.h 56 OP12(MAX)

Completed in 715 milliseconds

1 2 3 4 5 67 8 91011>>