HomeSort by relevance Sort by last modified time
    Searched refs:max (Results 251 - 275 of 3702) sorted by null

<<11121314151617181920>>

  /external/skia/legacy/src/effects/
SkEmbossMask.cpp 21 static inline int neq_to_one(int x, int max) {
23 return x != max;
25 SkASSERT(x >= 0 && x <= max);
26 return ((unsigned)(x - max)) >> 31;
30 static inline int neq_to_mask(int x, int max) {
32 return -(x != max);
34 SkASSERT(x >= 0 && x <= max);
35 return (x - max) >> 31;
  /external/skia/src/effects/
SkEmbossMask.cpp 21 static inline int neq_to_one(int x, int max) {
23 return x != max;
25 SkASSERT(x >= 0 && x <= max);
26 return ((unsigned)(x - max)) >> 31;
30 static inline int neq_to_mask(int x, int max) {
32 return -(x != max);
34 SkASSERT(x >= 0 && x <= max);
35 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/opt/photoviewer/src/com/android/ex/photo/views/
ProgressBarWrapper.java 61 public void setMax(int max) {
62 mDeterminate.setMax(max);
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_math_agree.java 201 // max reference functions
202 private float max(float v1, float v2) { method in class:UT_math_agree
205 private float[] max(float[] v1, float[] v2) { method in class:UT_math_agree
209 rv[i] = max(v1[i], v2[i]);
212 private byte max(byte v1, byte v2) { method in class:UT_math_agree
215 private byte[] max(byte[] v1, byte[] v2) { method in class:UT_math_agree
219 rv[i] = max(v1[i], v2[i]);
222 private short max(short v1, short v2) { method in class:UT_math_agree
225 private short[] max(short[] v1, short[] v2) { method in class:UT_math_agree
229 rv[i] = max(v1[i], v2[i])
232 private int max(int v1, int v2) { method in class:UT_math_agree
235 private int[] max(int[] v1, int[] v2) { method in class:UT_math_agree
242 private long max(long v1, long v2) { method in class:UT_math_agree
245 private long[] max(long[] v1, long[] v2) { method in class:UT_math_agree
463 s.set_max_rand_f1_f1(max(rand_f1_0, rand_f1_1)); method
467 s.set_max_rand_uc1_uc1(max(rand_uc1_0, rand_uc1_1)); method
471 s.set_max_rand_ss1_ss1(max(rand_ss1_0, rand_ss1_1)); method
475 s.set_max_rand_us1_us1(max(rand_us1_0, rand_us1_1)); method
479 s.set_max_rand_si1_si1(max(rand_si1_0, rand_si1_1)); method
483 s.set_max_rand_ui1_ui1(max(rand_ui1_0, rand_ui1_1)); method
487 s.set_max_rand_sl1_sl1(max(rand_sl1_0, rand_sl1_1)); method
491 s.set_max_rand_sc1_sc1(max(rand_sc1_0, rand_sc1_1)); method
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_math_agree.java 201 // max reference functions
202 private float max(float v1, float v2) { method in class:UT_math_agree
205 private float[] max(float[] v1, float[] v2) { method in class:UT_math_agree
209 rv[i] = max(v1[i], v2[i]);
212 private byte max(byte v1, byte v2) { method in class:UT_math_agree
215 private byte[] max(byte[] v1, byte[] v2) { method in class:UT_math_agree
219 rv[i] = max(v1[i], v2[i]);
222 private short max(short v1, short v2) { method in class:UT_math_agree
225 private short[] max(short[] v1, short[] v2) { method in class:UT_math_agree
229 rv[i] = max(v1[i], v2[i])
232 private int max(int v1, int v2) { method in class:UT_math_agree
235 private int[] max(int[] v1, int[] v2) { method in class:UT_math_agree
242 private long max(long v1, long v2) { method in class:UT_math_agree
245 private long[] max(long[] v1, long[] v2) { method in class:UT_math_agree
463 s.set_max_rand_f1_f1(max(rand_f1_0, rand_f1_1)); method
467 s.set_max_rand_uc1_uc1(max(rand_uc1_0, rand_uc1_1)); method
471 s.set_max_rand_ss1_ss1(max(rand_ss1_0, rand_ss1_1)); method
475 s.set_max_rand_us1_us1(max(rand_us1_0, rand_us1_1)); method
479 s.set_max_rand_si1_si1(max(rand_si1_0, rand_si1_1)); method
483 s.set_max_rand_ui1_ui1(max(rand_ui1_0, rand_ui1_1)); method
487 s.set_max_rand_sl1_sl1(max(rand_sl1_0, rand_sl1_1)); method
491 s.set_max_rand_sc1_sc1(max(rand_sc1_0, rand_sc1_1)); method
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.eng/rand.eng.sub/
values.pass.cpp 24 // static constexpr result_type max() { return m-1; }
42 /*static_*/assert((E::max() == 0xFFFFFF)/*, ""*/);
58 /*static_*/assert((E::max() == 0xFFFFFFFFFFFFull)/*, ""*/);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/allocator.traits/allocator.traits.members/
max_size.pass.cpp 48 std::numeric_limits<std::size_t>::max());
53 std::numeric_limits<std::size_t>::max());
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
shortcut_utils.h 47 shortcutScore = max(S_INT_MIN + 1, shortcutScore) - 1;
52 frequencies[outputWordIndex] = max(S_INT_MIN + 1, shortcutScore) - 1;
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ip_nat.h 45 union ip_conntrack_manip_proto min, max; member in struct:ip_nat_range
ipt_hashlimit.h 35 u_int32_t max; member in struct:hashlimit_cfg
  /bionic/libc/private/
bionic_time.h 55 extern size_t strftime_tz(char* s, size_t max, const char* format, const struct tm* tm, const struct strftime_locale* lc);
  /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
  /device/generic/goldfish/camera/
EmulatedCameraCommon.h 54 * min / max macros
58 #define max(a,b) (((a) > (b)) ? (a) : (b)) macro
  /external/icu4c/layout/
OpenTypeLayoutEngine.h 260 * @param max - the number of characters in the input context
273 virtual le_int32 characterProcessing(const LEUnicode /*chars*/[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/,
289 * @param max - the number of characters in the input context
305 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
308 virtual le_int32 glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
345 * @param max - the number of characters in the input context
359 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
ThaiLayoutEngine.cpp 55 // Input: characters (0..max provided for context)
59 le_int32 ThaiLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success)
65 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
  /external/iptables/extensions/
libipt_ah.c 36 print_spis(const char *name, uint32_t min, uint32_t max,
41 if (min != 0 || max != 0xFFFFFFFF || invert) {
43 if (min == max) {
50 printf("%u",max);
libxt_esp.c 36 print_spis(const char *name, uint32_t min, uint32_t max,
41 if (min != 0 || max != 0xFFFFFFFF || invert) {
42 if (min == max)
45 printf(" %ss:%s%u:%u", name, inv, min, max);
  /external/iptables/include/linux/netfilter/
xt_u32.h 18 __u32 max; member in struct:xt_u32_value_element
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_hashlimit.h 6 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
24 u_int32_t max; /* max number of entries */ member in struct:hashlimit_cfg
  /external/libxml2/
uri.c 1005 int max; local
1010 max = 80;
1011 ret = (xmlChar *) xmlMallocAtomic((max + 1) * sizeof(xmlChar));
1022 if (len >= max) {
1023 max *= 2;
1024 temp = (xmlChar *) xmlRealloc(ret, (max + 1) * sizeof(xmlChar));
1035 if (len >= max) {
1036 max *= 2;
1037 temp = (xmlChar *) xmlRealloc(ret, (max + 1) * sizeof(xmlChar));
1051 if (len + 3 >= max) {
    [all...]
  /external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
Util.py 39 min, max, avg, count = dict[key]
42 if value > max:
43 max = value
45 dict[key] = (min, max, avg, count + 1)
  /external/qemu/android/camera/
camera-capture.h 114 * max - Maximum number of entries that can fit into the array.
118 extern int enumerate_camera_devices(CameraInfo* cis, int max);

Completed in 768 milliseconds

<<11121314151617181920>>