HomeSort by relevance Sort by last modified time
    Searched refs:min (Results 126 - 150 of 2019) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebKit2/
config.h 113 /* We want to use std::min and std::max. */
117 #ifndef min
118 #define min min macro
  /external/webkit/Tools/DumpRenderTree/
config.h 91 // We want to use std::min and std::max
94 #undef min macro
95 #define min min macro
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 192 mEdgeAlpha = mEdgeAlphaStart = Math.max(PULL_EDGE_BEGIN, Math.min(distance, MAX_ALPHA));
194 HELD_EDGE_SCALE_Y, Math.min(distance * PULL_DISTANCE_EDGE_FACTOR, 1.f));
196 mGlowAlpha = mGlowAlphaStart = Math.min(MAX_ALPHA,
209 mGlowScaleY = mGlowScaleYStart = Math.min(MAX_GLOW_HEIGHT, Math.max(
274 mEdgeAlphaFinish = Math.max(0, Math.min(velocity * VELOCITY_EDGE_FACTOR, 1));
277 HELD_EDGE_SCALE_Y, Math.min(velocity * VELOCITY_EDGE_FACTOR, 1.f));
283 mGlowScaleYFinish = Math.min(0.025f + (velocity * (velocity / 100) * 0.00015f), 1.75f);
286 mGlowAlphaStart, Math.min(velocity * VELOCITY_GLOW_FACTOR * .00001f, MAX_ALPHA));
308 mGlow.setAlpha((int) (Math.max(0, Math.min(mGlowAlpha, 1)) * 255));
310 int glowBottom = (int) Math.min(
    [all...]
  /frameworks/base/media/libdrm/mobile1/include/parser/
parser_rel.h 43 #define YMD_HMS_2_INT(year, mon, day, date, hour, min, sec, time) do{\
45 time = hour * 10000 + min * 100 + sec;\
55 int32_t time; /**< hour * 10000 + min *100 + sec */
97 * \param min minute of the time
103 int32_t drm_checkDate(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec);
  /ndk/tests/device/test-gnustl-full/unit/
limits_test.cpp 77 CHECK_COND(lim::min() < lim::max());
78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) ||
98 _Tp tmp = lim::min();
99 CHECK_COND( --tmp > lim::min() );
132 CHECK_COND(lim::min() > 0);
133 CHECK_COND(lim::min() < 0.001);
144 CHECK_COND(lim::denorm_min() == lim::min());
145 _Tp tmp = lim::min();
147 if (tmp > 0 && tmp < lim::min()) {
    [all...]
  /ndk/tests/device/test-stlport/unit/
limits_test.cpp 77 CHECK_COND(lim::min() < lim::max());
78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) ||
98 _Tp tmp = lim::min();
99 CHECK_COND( --tmp > lim::min() );
132 CHECK_COND(lim::min() > 0);
133 CHECK_COND(lim::min() < 0.001);
144 CHECK_COND(lim::denorm_min() == lim::min());
145 _Tp tmp = lim::min();
147 if (tmp > 0 && tmp < lim::min()) {
    [all...]
  /external/freetype/src/psnames/
psmodule.c 400 PS_UniMap *min, *max, *mid, *result = NULL; local
405 min = table->maps;
406 max = min + table->num_maps - 1;
408 while ( min <= max )
413 mid = min + ( ( max - min ) >> 1 );
426 if ( min == max )
430 min = mid + 1;
451 FT_UInt min = 0; local
458 while ( min < max
    [all...]
  /external/iptables/extensions/
libip6t_ah.c 54 print_spis(const char *name, uint32_t min, uint32_t max,
59 if (min != 0 || max != 0xFFFFFFFF || invert) {
60 if (min == max)
61 printf("%s:%s%u", name, inv, min);
63 printf("%ss:%s%u:%u", name, inv, min, max);
libipt_MASQUERADE.c 54 mr->range[0].min.tcp.port
65 mr->range[0].min.tcp.port = htons(port);
112 printf("%hu", ntohs(r->min.tcp.port));
113 if (r->max.tcp.port != r->min.tcp.port)
128 printf(" --to-ports %hu", ntohs(r->min.tcp.port));
129 if (r->max.tcp.port != r->min.tcp.port)
libipt_REDIRECT.c 54 mr->range[0].min.tcp.port
66 mr->range[0].min.tcp.port = htons(port);
115 printf("%hu", ntohs(r->min.tcp.port));
116 if (r->max.tcp.port != r->min.tcp.port)
130 printf("%hu", ntohs(r->min.tcp.port));
131 if (r->max.tcp.port != r->min.tcp.port)
  /external/libxml2/include/libxml/
xmlautomata.h 81 int min,
90 int min,
98 int min,
107 int min,
131 int min,
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/scrollbar/
scrollbar.edc 23 min: 0 0; /* if > 0, this is the minimum size that will be allocated.
84 min: 10 0;
116 min: 1 30;
135 min: 5 5;
155 min: 5 5;
200 min: 0 0; /* if > 0, this is the minimum size that will be allocated.
262 min: 0 10;
293 min: 30 1;
313 min: 5 5;
333 min: 5 5
    [all...]
  /frameworks/base/libs/hwui/
GammaFontRenderer.cpp 99 int min = -1; local
107 min = i;
112 if (count <= 1 || min < 0) return;
114 delete mRenderers[min];
115 mRenderers[min] = NULL;
  /external/webkit/Source/WebCore/platform/graphics/
IntRect.cpp 33 using std::min;
61 int r = min(maxX(), other.maxX());
62 int b = min(maxY(), other.maxY());
88 int l = min(x(), other.x());
89 int t = min(y(), other.y());
109 int left = min(x(), other.x());
110 int top = min(y(), other.y());
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
calcStepSize.m 12 currentMuMax = aecmStruct.MU_MIN + (aecmStruct.MU_MAX-aecmStruct.MU_MIN)*min(t,T)/T;
25 currentMuMax = muMin + (muMax-muMin)*min(t,T)/T;
52 muVar = 2^min(-3,5/50*aecmStruct.muStruct.countInInterval-3);
53 muOff = 2^max(offBoost,min(0,offBoost*(aecmStruct.muStruct.countOutLowInterval-aecmStruct.muStruct.minOutLowInterval)/(aecmStruct.muStruct.maxOutLowInterval-aecmStruct.muStruct.minOutLowInterval)));
63 muDT = min(1,max(muLow,1-(1-muLow)*(dE-aecmStruct.ENERGY_DEV_OFFSET)/aecmStruct.ENERGY_DEV_TOL));
84 %mdEVec = max(dEVec)-min(dEVec);
102 mu = min(mu,0.25);
  /external/pcre/
pcre_exec.c 57 #undef min macro
95 /* Min and max values for the common repeats; for the maxima, 0 => infinity */
561 #define min frame->Xmin macro
615 int min;
5549 #undef min macro
    [all...]
  /external/openssl/crypto/x509v3/
v3_asid.c 79 ASN1_SIMPLE(ASRange, min, ASN1_INTEGER),
131 if ((s = i2s_ASN1_INTEGER(NULL, aor->u.range->min)) == NULL)
176 a->u.range->min != NULL && a->u.range->max != NULL));
180 b->u.range->min != NULL && b->u.range->max != NULL));
186 int r = ASN1_INTEGER_cmp(a->u.range->min, b->u.range->min);
191 return ASN1_INTEGER_cmp(a->u.id, b->u.range->min);
193 return ASN1_INTEGER_cmp(a->u.range->min, b->u.id);
230 ASN1_INTEGER *min,
262 aor->u.id = min;
    [all...]
  /external/freetype/src/base/
ftbbox.c 98 /* min :: The address of the current minimum. */
106 FT_Pos* min,
131 if ( y1 < *min ) *min = y1;
210 /* min :: The address of the current minimum. */
222 FT_Pos* min,
277 if ( y1 < *min ) *min = y1;
294 FT_Pos* min,
326 if ( y < *min ) *min = y
    [all...]
  /external/webkit/PerformanceTests/Parser/resources/
runner.js 43 var min = values.length ? values[0] : 0;
45 if (min > values[i])
46 min = values[i];
48 return min;
66 log("min " + computeMin(times));
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.30-1.js 24 ECMA Section: 15.9.5.30 Date.prototype.setHours(hour [, min [, sec [, ms ]]] )
26 If min is not specified, this behaves as if min were specified with the
33 3. If min is not specified, compute MinFromTime(t); otherwise, call
34 ToNumber(min).
51 writeHeaderToLog( SECTION + " Date.prototype.setHours( hour [, min, sec, ms] )");
119 function addNewTestCase( time, hours, min, sec, ms, DateString) {
120 var UTCDate = UTCDateFromTime( SetHours( time, hours, min, sec, ms ));
121 var LocalDate = LocalDateFromTime( SetHours( time, hours, min, sec, ms ));
125 if ( min == void 0 )
    [all...]
  /external/zlib/
inftrees.c 42 unsigned min, max; /* minimum and maximum code lengths */ local
126 for (min = 1; min < max; min++)
127 if (count[min] != 0) break;
128 if (root < min) root = min;
202 len = min; /* starting code length */
235 min = fill; /* save offset to next table */
266 next += min; /* here min is 1 << curr *
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_metrics_module.cc 73 int min,
81 min,
87 min,
107 int min; local
112 EXTENSION_FUNCTION_VALIDATE(metric_type->GetInteger("min", &min));
118 return RecordValue(name, histogram_type, min, max, buckets, sample);
  /external/e2fsprogs/e2fsck/
region.c 29 region_addr_t min; member in struct:region_struct
34 region_t region_create(region_addr_t min, region_addr_t max)
42 region->min = min;
65 if ((start < region->min) || (end > region->max))
161 fprintf(f, "Printing region (min=%d. max=%d)\n\t", region->min,
  /external/icu4c/test/intltest/
tzbdtest.cpp 80 UDate min = d; local
81 UDate max = min + SIX_MONTHS;
82 while ((max - min) > INTERVAL) {
83 UDate mid = (min + max) / 2;
86 min = mid;
92 logln("Date Before: " + showDate(min));
94 UDate mindelta = expectedBoundary - min;
120 UDate min = d; local
121 UDate max = min + SIX_MONTHS;
132 while ((max - min) > INTERVAL)
167 int32_t y, m, day, h, min, sec; local
385 UDate min = d; local
    [all...]
  /external/tcpdump/
print-chdlc.c 149 u_int sec,min,hrs,days; local
186 min = sec / 60; sec -= min * 60;
187 hrs = min / 60; min -= hrs * 60;
189 printf(", link uptime=%ud%uh%um%us",days,hrs,min,sec);

Completed in 457 milliseconds

1 2 3 4 56 7 8 91011>>