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

1 2 3 4 5 67 8 91011>>

  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationTest.java 50 int min = Math.min(metrics.widthPixels, metrics.heightPixels); local
51 double aspectRatio = (double) max / min;
  /external/chromium/chrome/browser/ui/views/infobars/
link_infobar.cc 36 std::min(label_1_size.width(), available_width), label_1_size.height());
41 std::min(link_size.width(), available_width), link_size.height());
46 std::min(label_2_size.width(), available_width), label_2_size.height());
  /external/chromium/chrome/browser/ui/webui/
theme_source_unittest.cc 69 size_t min = 0; local
71 EXPECT_GT(theme_source()->result_data_size_, min);
75 EXPECT_GT(theme_source()->result_data_size_, min);
  /external/oauth/core/src/main/java/net/oauth/
SimpleOAuthValidator.java 91 long min = now - timestampWindow; local
93 if (timestamp < min || max < timestamp) {
95 problem.setParameter("oauth_acceptable_timestamps", min + "-" + max);
  /external/webkit/Source/WebCore/rendering/
RenderInputSpeech.cpp 53 int speechButtonSize = lroundf(std::min(std::max(minSpeechButtonSize, defaultSpeechButtonSize * fontScale), maxSpeechButtonSize));
72 int buttonSize = std::min(inputContentBox.width(), std::min(inputContentBox.height(), rect.height()));
  /external/webkit/Source/WebCore/wml/
WMLElement.cpp 36 using std::min;
79 setTabIndexExplicitly(max(static_cast<int>(std::numeric_limits<short>::min()), min(tabindex, static_cast<int>(std::numeric_limits<short>::max()))));
  /frameworks/base/libs/ui/
Rect.cpp 21 static inline int32_t min(int32_t a, int32_t b) { function in namespace:android
90 result->right = min(right, with.right);
91 result->bottom = min(bottom, with.bottom);
  /frameworks/base/media/libstagefright/codecs/aacdec/
ps_decode_bs_utils.cpp 249 Int32 min,
254 if (i > min)
260 return min;
  /packages/apps/Exchange/src/com/android/exchange/utility/
FileLogger.java 74 int min = d.getMinutes(); local
82 if (min < 10)
84 sb.append(min);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeEffect.java 197 mEdgeAlpha = mEdgeAlphaStart = Math.max(PULL_EDGE_BEGIN, Math.min(distance, MAX_ALPHA));
199 HELD_EDGE_SCALE_Y, Math.min(distance * PULL_DISTANCE_EDGE_FACTOR, 1.f));
201 mGlowAlpha = mGlowAlphaStart = Math.min(MAX_ALPHA,
214 mGlowScaleY = mGlowScaleYStart = Math.min(MAX_GLOW_HEIGHT, Math.max(
279 mEdgeAlphaFinish = Math.max(0, Math.min(velocity * VELOCITY_EDGE_FACTOR, 1));
282 HELD_EDGE_SCALE_Y, Math.min(velocity * VELOCITY_EDGE_FACTOR, 1.f));
288 mGlowScaleYFinish = Math.min(0.025f + (velocity * (velocity / 100) * 0.00015f), 1.75f);
291 mGlowAlphaStart, Math.min(velocity * VELOCITY_GLOW_FACTOR * .00001f, MAX_ALPHA));
313 mGlow.setAlpha((int) (Math.max(0, Math.min(mGlowAlpha, 1)) * 255));
315 int glowBottom = (int) Math.min(
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
mixer_abst.h 82 int (*get_range)(snd_mixer_elem_t *elem, int dir, long *min, long *max);
83 int (*set_range)(snd_mixer_elem_t *elem, int dir, long min, long max);
84 int (*get_dB_range)(snd_mixer_elem_t *elem, int dir, long *min, long *max);
  /dalvik/vm/mterp/x86-atom/
binopD.S 42 cmpl $$0x80000000,%eax # handle min int special case divide error
56 movl $$0x80000000, (rFP, rINST, 4) # vAA<- min int
  /external/chromium/base/
rand_util_unittest.cc 13 const int kIntMin = std::numeric_limits<int>::min();
  /external/chromium/net/disk_cache/
histogram_macros.h 23 #define CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
28 name, min, max, bucket_count, \
42 #define CACHE_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
47 name, min, max, bucket_count, \
  /external/icu4c/test/intltest/
calcasts.h 35 int32_t min; member in struct:CalendarCaseTest::TestCase
  /external/iptables/include/net/netfilter/
nf_nat.h 42 union nf_conntrack_man_proto min, max; member in struct:nf_nat_range
  /external/llvm/lib/Support/
circular_raw_ostream.cpp 27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
  /external/stlport/src/
codecvt.cpp 34 { return (int)(min) ( __STATIC_CAST(size_t, (end - from)), mx); }
90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
132 { return (int)(min) ((size_t) (end - from), mx); }
  /external/webkit/Source/WebCore/platform/graphics/
FloatQuad.cpp 35 using std::min;
41 return min(min(a, b), min(c, d));
  /external/webkit/Source/WebKit/android/WebCoreSupport/
V8Counters.h 45 int min,
  /external/wpa_supplicant/
os_win32.c 55 int os_mktime(int year, int month, int day, int hour, int min, int sec,
63 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
72 tm.tm_min = min;
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_time.c 50 time_ptr->min = tm_t->tm_min;
  /ndk/sources/cxx-stl/stlport/src/
codecvt.cpp 34 { return (int)(min) ( __STATIC_CAST(size_t, (end - from)), mx); }
90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
132 { return (int)(min) ((size_t) (end - from), mx); }
  /external/e2fsprogs/lib/ext2fs/
res_gdt.c 29 unsigned int *min = three; local
35 ret = *min;
36 *min += 1;
40 if (*five < *min) {
41 min = five;
44 if (*seven < *min) {
45 min = seven;
49 ret = *min;
50 *min *= mult;
  /external/openssl/crypto/x509v3/
v3_addr.c 79 ASN1_SIMPLE(IPAddressRange, min, ASN1_BIT_STRING),
230 if (!i2r_address(out, afi, 0x00, aor->u.addressRange->min))
333 addr_expand(addr_a, a->u.addressRange->min, length, 0x00);
344 addr_expand(addr_b, b->u.addressRange->min, length, 0x00);
379 static int range_should_be_prefix(const unsigned char *min,
386 for (i = 0; i < length && min[i] == max[i]; i++)
388 for (j = length - 1; j >= 0 && min[j] == 0x00 && max[j] == 0xFF; j--)
394 mask = min[i] ^ max[i];
405 if ((min[i] & mask) != 0 || (max[i] & mask) != mask)
450 unsigned char *min,
    [all...]

Completed in 581 milliseconds

1 2 3 4 5 67 8 91011>>