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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/media/libstagefright/codecs/aacdec/
fft_rx4_short.cpp 27 (1) Eliminated search for max in the main loop.
36 (1) Added comment to explain max search elimination and
225 Int32 max; local
231 max = *peak_value;
234 if (max > 0x008000)
236 exp = 8 - pv_normalize(max); /* use 24 bits */
394 max = 0;
421 max |= (temp1 >> 31) ^ temp1;
444 max |= (temp1 >> 31) ^ temp1;
445 max |= (temp2 >> 31) ^ temp2
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
hp_max.cpp 88 cor_hp_max = pointer to max high-pass filtered norm. correlation (Word16)
92 cor_hp_max contains max high-pass filtered norm. correlation (Word16)
134 Word16 *cor_hp_max) // o : max high-pass filtered norm. correlation
138 Word32 max, t0, t1;
142 max = MIN_32;
154 if (L_sub (t0, max) >= 0)
156 max = t0;
181 // max/t0
182 shift1 = sub(norm_l(max), 1);
183 max16 = extract_h(L_shl(max, shift1))
249 Word32 max, t0, t1; local
    [all...]
  /system/core/nexus/
Property.h 44 virtual int get(int idx, char *buffer, size_t max) = 0;
63 virtual int get(int idx, char *buffer, size_t max) = 0;
73 char *buffer, size_t max);
75 int get(int idx, char *buffer, size_t max);
87 int get(int idx, char *buffer, size_t max);
109 int get(int idx, char *buffer, size_t max);
  /external/qemu/android/utils/
reflist.c 20 if (l->max == 1)
29 if (l->size == 0 && l->max > 1) {
31 l->max = 1;
72 if (newcount > l->max) {
73 int oldmax = l->max;
89 if (l->max == 1)
93 l->max = (uint16_t) newmax;
104 if (l->size >= l->max) {
170 if (l->max > 1) {
247 if (src->max > 1)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
IntList.java 413 int max = sz; local
415 while (max > (min + 1)) {
417 * The guessIdx calculation is equivalent to ((min + max)
418 * / 2) but won't go wonky when min and max are close to
421 int guessIdx = min + ((max - min) >> 1);
425 max = guessIdx;
431 if ((max != sz)) {
432 return (value == values[max]) ? max : (-max - 1)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
IntList.java 414 int max = sz; local
416 while (max > (min + 1)) {
418 * The guessIdx calculation is equivalent to ((min + max)
419 * / 2) but won't go wonky when min and max are close to
422 int guessIdx = min + ((max - min) >> 1);
426 max = guessIdx;
432 if ((max != sz)) {
433 return (value == values[max]) ? max : (-max - 1)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
jquery.flot.dashes.js 89 if (y1 >= y2 && y1 > axisy.max) {
90 if (y2 > axisy.max) continue;
91 x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;
92 y1 = axisy.max;
93 } else if (y2 >= y1 && y2 > axisy.max) {
94 if (y1 > axisy.max) continue;
95 x2 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;
96 y2 = axisy.max;
111 if (x1 >= x2 && x1 > axisx.max) {
112 if (x2 > axisx.max) continue
    [all...]
  /external/icu4c/layout/
IndicLayoutEngine.h 111 * @param max - the number of characters in the input context
123 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
139 * @param max - the number of characters in the input context
154 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
  /external/icu4c/test/intltest/
tzregts.h 53 UDate findTransitionBinary(const SimpleTimeZone& tz, UDate min, UDate max);
54 UDate findTransitionStepwise(const SimpleTimeZone& tz, UDate min, UDate max);
tztest.h 50 UDate min, UDate max);
56 UDate min, UDate max,
  /external/iptables/include/linux/netfilter/
xt_hashlimit.h 8 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
29 __u32 max; /* max number of entries */ member in struct:hashlimit_cfg
53 __u32 max; /* max number of entries */ member in struct:hashlimit_cfg1
  /external/kernel-headers/original/linux/
nfsacl.h 44 w += max(acl_access ? (int)acl_access->a_count : 3, 4) * 12;
46 w += max((int)acl_default->a_count, 4) * 12;
  /external/qemu/target-arm/
helper-android.c 13 void vstrcpy(target_ulong ptr, char *buf, int max)
19 for (index = 0; index < max; index += 1) {
  /external/qemu/
translate-all.c 71 static unsigned long max; local
73 if (max == 0) {
74 max = TCG_MAX_OP_SIZE;
76 #define DEF2(copy_size) max = (copy_size > max) ? copy_size : max;
80 max *= OPC_MAX_SIZE;
83 return max;
  /external/skia/include/core/
SkMath.h 78 /** Given an integer and a positive (max) integer, return the value
79 pinned against 0 and max, inclusive.
80 @param value The value we want returned pinned between [0...max]
81 @param max The positive max value
82 @return 0 if value < 0, max if value > max, else value
84 static inline int SkClampMax(int value, int max) {
85 // ensure that max is positive
86 SkASSERT(max >= 0)
    [all...]
  /external/skia/src/effects/
SkEmbossMask.cpp 28 static inline int neq_to_one(int x, int max) {
30 return x != max;
32 SkASSERT(x >= 0 && x <= max);
33 return ((unsigned)(x - max)) >> 31;
37 static inline int neq_to_mask(int x, int max) {
39 return -(x != max);
41 SkASSERT(x >= 0 && x <= max);
42 return (x - max) >> 31;
  /external/webkit/Source/WebCore/platform/graphics/
RoundedIntRect.cpp 65 m_topLeft.setWidth(max(0, m_topLeft.width() + leftWidth));
66 m_topLeft.setHeight(max(0, m_topLeft.height() + topWidth));
68 m_topRight.setWidth(max(0, m_topRight.width() + rightWidth));
69 m_topRight.setHeight(max(0, m_topRight.height() + topWidth));
71 m_bottomLeft.setWidth(max(0, m_bottomLeft.width() + leftWidth));
72 m_bottomLeft.setHeight(max(0, m_bottomLeft.height() + bottomWidth));
74 m_bottomRight.setWidth(max(0, m_bottomRight.width() + rightWidth));
75 m_bottomRight.setHeight(max(0, m_bottomRight.height() + bottomWidth));
  /external/webkit/Source/WebCore/rendering/style/
StyleGeneratedImage.cpp 49 width = max(1, width);
52 height = max(1, height);
  /frameworks/base/core/java/android/hardware/
Sensor.java 202 void setRange(float max, float res) {
203 mMaxRange = max;
  /packages/apps/Settings/src/com/android/settings/widget/
InvertedChartAxis.java 34 public boolean setBounds(long min, long max) {
35 return mWrapped.setBounds(min, max);
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ip_nat.h 44 union ip_conntrack_manip_proto min, max; member in struct:ip_nat_range
ipt_hashlimit.h 30 u_int32_t max; member in struct:hashlimit_cfg
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ip_nat.h 44 union ip_conntrack_manip_proto min, max; member in struct:ip_nat_range
ipt_hashlimit.h 30 u_int32_t max; member in struct:hashlimit_cfg
  /development/tools/emulator/system/camera/
EmulatedCameraCommon.h 54 * min / max macros
58 #define max(a,b) (((a) > (b)) ? (a) : (b)) macro

Completed in 769 milliseconds

1 2 3 4 5 67 8 91011>>