HomeSort by relevance Sort by last modified time
    Searched refs:MIN (Results 26 - 50 of 554) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/sys/
param.h 44 /* Macros for min/max. */
45 #define MIN(a,b) (((a)<(b))?(a):(b))
  /external/srec/srec/include/
all_defs.h 95 #ifndef MIN
96 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
  /packages/apps/Gallery2/jni/filters/
filters.h 33 #define MIN(a, b) (a < b ? a : b)
44 #define CLAMP(c) (MAX(0, MIN(255, c)))
  /external/chromium_org/tools/site_compare/
command_line.py 745 MIN = "test --reqint 123 param1 --req1 "
751 (MIN, 0), # success!
754 (MIN+"param2", 0), # another positional parameter is okay
755 (MIN+"param2 param3", 0), # and so are three
756 (MIN+"param2 param3 param4", 1), # but four are just too many
757 (MIN+"--int", 1), # where's the value?
758 (MIN+"--int 456", 0), # this is fine
759 (MIN+"--int456", 0), # as is this
760 (MIN+"--int:456", 0), # and this
761 (MIN+"--int=456", 0), # and thi
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.h 21 MIN
  /external/chromium_org/third_party/sqlite/src/src/
memjournal.c 36 #ifndef MIN
37 # define MIN(x,y) ((x)<(y)?(x):(y))
102 int nCopy = MIN(nRead, (JOURNAL_CHUNKSIZE - iChunkOffset));
136 int iSpace = MIN(nWrite, JOURNAL_CHUNKSIZE - iChunkOffset);
  /external/opencv/cv/src/
cvcalccontrasthistogram.cpp 117 int v1_r = MIN( data0[x], data0[x + 1] );
125 array[val0] += MIN( t - v1_r, v2_r - t );
131 int v1_d = MIN( data0[x], data0[x + step] );
139 array[val0] += MIN( t - v1_d, v2_d - t );
236 int v1_r = MIN( data0[x], data0[x + 1] );
245 array[val0] += MIN( t - v1_r, v2_r - t );
255 int v1_d = MIN( data0[x], data0[x + step] );
263 array[val0] += MIN( t - v1_d, v2_d - t );
cvstereobm.cpp 136 const uchar* bottom = sptr + srcstep*MIN(y+wsz2,size.height-1);
139 const uchar* next = sptr + srcstep*MIN(y+1,size.height-1);
183 int dy0 = MIN(_dy0, wsz2+1), dy1 = MIN(_dy1, wsz2+1);
187 int rofs = -MIN(ndisp - 1 + mindisp, 0);
224 lptr = lptr0 + MIN(MAX(x, -lofs), width-lofs-1) - dy0*sstep;
225 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep;
256 lptr_sub = lptr0 + MIN(MAX(x0, -lofs), width-1-lofs) - dy0*sstep;
257 lptr = lptr0 + MIN(MAX(x1, -lofs), width-1-lofs) - dy0*sstep;
258 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep
    [all...]
cvsnakes.cpp 204 int left = MIN( pt[i].x, win.width >> 1 );
205 int right = MIN( roi.width - 1 - pt[i].x, win.width >> 1 );
206 int upper = MIN( pt[i].y, win.height >> 1 );
207 int bottom = MIN( roi.height - 1 - pt[i].y, win.height >> 1 );
233 minEcont = MIN( minEcont, energy );
271 minEcurv = MIN( minEcurv, energy );
301 int bottomshift = MIN( 1, roi.height - (y + 1)*WTILE_SIZE );
302 int rightshift = MIN( 1, roi.width - (x + 1)*WTILE_SIZE );
334 minEimg = MIN( minEimg, energy );
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
stream.c 41 len = MIN(Frame_Maxsize - stream->frame_storelen, stream->set_len);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
CameraPairwiseTest.java 63 public enum Exposure { MIN, MAX, NONE };
140 * Flash: On / Exposure: Min / WB: Fluorescent
145 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.FLUORESCENT, SceneMode.AUTO,
190 * Flash: Auto / Exposure: Min / WB: Auto
195 genericPairwiseTestCase(Flash.AUTO, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION,
200 * Flash: On / Exposure: Min / WB: Auto
205 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION,
210 * Flash: Off / Exposure: Min / WB: Auto
215 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance.AUTO, SceneMode.NIGHT,
220 * Flash: Off / Exposure: Min / WB: Dayligh
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_aq_complexity.c 68 const int xmis = MIN(cm->mi_cols - mi_col, bw);
69 const int ymis = MIN(cm->mi_rows - mi_row, bh);
  /external/libexif/libexif/
exif-utils.h 179 #undef MIN
180 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_complexity.c 68 const int xmis = MIN(cm->mi_cols - mi_col, bw);
69 const int ymis = MIN(cm->mi_rows - mi_row, bh);
  /external/srec/srec/ca/
utt_data.c 51 setRECframePtr(hUtt->data.gen_utt.frame, -MIN(hUtt->data.gen_utt.frame->holdOffPeriod, getFrameGap(hUtt->data.gen_utt.frame)), 1);
58 setRECframePtr(hUtt->data.gen_utt.frame, MIN(hUtt->data.gen_utt.start_windback, getBlockGap(hUtt->data.gen_utt.frame)), 1);
  /frameworks/rs/cpp/
Sampler.cpp 52 sp<Sampler> Sampler::create(sp<RS> rs, RsSamplerValue min, RsSamplerValue mag, RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy) {
54 void* id = RS::dispatch->SamplerCreate(rs->getContext(), min, mag, wrapS, wrapT, RS_SAMPLER_WRAP, anisotropy);
58 #define CREATE_SAMPLER(N, MIN, MAG, WRAPS, WRAPT) sp<const Sampler> Sampler::N(sp<RS> rs) { \
60 rs->mSamplers.N = (create(rs, MIN, MAG, WRAPS, WRAPT, 0.f)); \
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_aq_complexity.c 69 const int xmis = MIN(cm->mi_cols - mi_col, bw);
70 const int ymis = MIN(cm->mi_rows - mi_row, bh);
  /hardware/invensense/60xx/libsensors_iio/software/core/driver/include/
mlmath.h 86 #ifndef MIN
87 #define MIN(x,y) (((x)<(y))?(x):(y))
  /hardware/invensense/60xx/mlsdk/platform/include/
mlmath.h 98 #ifndef MIN
99 #define MIN(x,y) (((x)<(y))?(x):(y))
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mlmath.h 86 #ifndef MIN
87 #define MIN(x,y) (((x)<(y))?(x):(y))
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlmath.h 86 #ifndef MIN
87 #define MIN(x,y) (((x)<(y))?(x):(y))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_float.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_float.py     [all...]
  /external/speex/libspeex/
pseudofloat.h 63 #define MIN(a,b) ((a)<(b)?(a):(b))
106 r.m = ((a).m>>1) + ((b).m>>MIN(15,(a).e-(b).e+1));
111 r.m = ((b).m>>1) + ((a).m>>MIN(15,(b).e-(a).e+1));
141 r.m = ((a).m>>1) - ((b).m>>MIN(15,(a).e-(b).e+1));
146 r.m = ((a).m>>MIN(15,(b).e-(a).e+1)) - ((b).m>>1);
174 return ((a).m>>1) < ((b).m>>MIN(15,(a).e-(b).e+1));
176 return ((b).m>>1) > ((a).m>>MIN(15,(b).e-(a).e+1));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterVignetteRepresentation.java 42 private static int MIN = -100;
46 private BasicParameterInt mParamVignette = new BasicParameterInt(MODE_VIGNETTE, 50, MIN, MAX);
47 private BasicParameterInt mParamExposure = new BasicParameterInt(MODE_EXPOSURE, 0, MIN, MAX);
48 private BasicParameterInt mParamSaturation = new BasicParameterInt(MODE_SATURATION, 0, MIN, MAX);
49 private BasicParameterInt mParamContrast = new BasicParameterInt(MODE_CONTRAST, 0, MIN, MAX);

Completed in 1492 milliseconds

12 3 4 5 6 7 8 91011>>