HomeSort by relevance Sort by last modified time
    Searched refs:MIN (Results 1 - 25 of 395) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/
negvdi2.c 24 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvsi2.c 24 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvti2.c 26 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
27 if (a == MIN)
mulodi4.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
mulosi4.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
muloti4.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
31 if (a == MIN)
37 if (b == MIN)
56 if (abs_a > MIN / -abs_b)
mulvdi3.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvsi3.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvti3.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
  /external/dhcpcd/
config.h 16 #ifndef MIN
17 #define MIN(a,b) ((a) <= (b) ? (a) : (b))
  /external/dropbear/libtommath/
bn_mp_mul.c 26 if (MIN (a->used, b->used) >= TOOM_MUL_CUTOFF) {
32 if (MIN (a->used, b->used) >= KARATSUBA_MUL_CUTOFF) {
47 MIN(a->used, b->used) <=
bn_mp_get_int.c 29 i = MIN(a->used,(int)((sizeof(unsigned long)*CHAR_BIT+DIGIT_BIT-1)/DIGIT_BIT))-1;
bn_fast_s_mp_mul_digs.c 48 pa = MIN(digs, a->used + b->used);
58 ty = MIN(b->used-1, ix);
68 iy = MIN(a->used-tx, ty+1);
bn_fast_s_mp_sqr.c 21 * So basically you set up iy like before then you min it with
53 ty = MIN(a->used-1, ix);
63 iy = MIN(a->used-tx, ty+1);
69 iy = MIN(iy, (ty-tx+1)>>1);
bn_fast_s_mp_mul_high_digs.c 49 ty = MIN(b->used-1, ix);
59 iy = MIN(a->used-tx, ty+1);
bn_s_mp_mul_digs.c 32 MIN (a->used, b->used) <
49 pb = MIN (b->used, digs - ix);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
stream.h 31 #define MIN(a,b) ((a) < (b)? (a) : (b))
  /packages/apps/Gallery2/jni/filters/
bwfilter.c 29 float min = MIN(sg,sb); local
30 min = MIN(sr,min);
33 float avg = (min+max)/2;
45 min = MIN(g,b);
46 min = MIN(r,min)
    [all...]
filters.h 33 #define MIN(a, b) (a < b ? a : b)
44 #define CLAMP(c) (MAX(0, MIN(255, c)))
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-dfa.rb 12 MIN = [7, 8].freeze
27 dfa.min.should == DFASubclass::MIN
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.h 21 MIN
  /external/libpng/contrib/gregbook/
readpng.h 63 # define MIN(a,b) ((a) < (b)? (a) : (b))
  /external/elfutils/bionic-fixup/
AndroidFixup.h 31 #ifndef MIN
32 #define MIN(x,y) ((x) < (y) ? (x) : (y))
  /external/srec/srec/include/
all_defs.h 95 #ifndef MIN
96 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
  /packages/inputmethods/LatinIME/native/jni/src/
suggest_utils.h 32 static const float MIN = 0.3f;
39 : (B * (R2 - x) + C * (x - R1)) / (R2 - R1), MIN);
62 return min(C, x);

Completed in 3238 milliseconds

1 2 3 4 5 6 7 8 91011>>