/development/ndk/platforms/android-21/include/linux/netfilter/ |
xt_hashlimit.h | 42 __u32 max; member in struct:hashlimit_cfg 65 __u32 max; member in struct:hashlimit_cfg1
|
xt_u32.h | 37 __u32 max; member in struct:xt_u32_value_element
|
/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/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/ |
TextCardView.java | 52 Math.max(bitmap.getWidth(), bitmap.getHeight()) / 2.0f);
|
/device/google/dragon/audio/hal/dsp/ |
drc_math.h | 28 #ifndef max 29 #define max(a, b) ({ __typeof__(a) _a = (a); \ macro 91 i = max(min(i, 100), -100); 95 * max error ~= 7.897e-8 144 * max err ~= 6.088e-8 168 * max err ~= 5.901e-7
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
DFA.cs | 64 protected char[] max; field in class:Antlr.Runtime.DFA 119 if (c >= min[s] && c <= max[s]) { 160 Console.Error.WriteLine("max[" + s + "]=" + max[s]);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
DFA.cs | 59 protected char[] max; field in class:Antlr.Runtime.DFA 141 if ( c >= min[s] && c <= max[s] ) 188 Console.Error.WriteLine( "max[" + s + "]=" + max[s] );
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
Max.java | 40 public class Max extends AbstractStorelessUnivariateStatistic implements Serializable { 52 * Create a Max instance 54 public Max() { 60 * Copy constructor, creates a new {@code Max} identical 63 * @param original the {@code Max} instance to copy 65 public Max(Max original) { 128 double max = Double.NaN; local 130 max = values[begin]; 133 max = (max > values[i]) ? max : values[i] [all...] |
/external/apache-http/src/org/apache/http/conn/params/ |
ConnPerRouteBean.java | 78 public void setDefaultMaxPerRoute(int max) { 79 if (max < 1) { 83 this.defaultMax = max; 86 public void setMaxForRoute(final HttpRoute route, int max) { 91 if (max < 1) { 95 this.maxPerHostMap.put(route, Integer.valueOf(max)); 103 Integer max = this.maxPerHostMap.get(route); local 104 if (max != null) { 105 return max.intValue();
|
/external/apache-http/src/org/apache/http/impl/io/ |
ContentLengthOutputStream.java | 114 long max = this.contentLength - this.total; local 115 if (len > max) { 116 len = (int) max;
|
/external/blktrace/ |
stats.h | 30 __u64 max; member in struct:minmax 39 mm->max = 0; 51 if (value > mm->max) 52 mm->max = value; 62 if (src->max > dst->max) 63 dst->max = src->max; 72 mm->max = cpu_to_be64(mm->max); [all...] |
/external/boringssl/src/crypto/asn1/ |
a_utctm.c | 105 static const int max[8]={99,12,31,23,59,59,12,59}; local 133 if ((n < min[i]) || (n > max[i])) goto err; 173 if ((n < min[i]) || (n > max[i])) goto err;
|
/external/boringssl/src/crypto/bn/ |
add.c | 105 int max, min, dif; local 114 max = a->top; 116 dif = max - min; 118 if (bn_wexpand(r, max + 1) == NULL) { 122 r->top = max; 205 int max; local 241 max = (a->top > b->top) ? a->top : b->top; 242 if (bn_wexpand(r, max) == NULL) { 262 int max, min, dif; local 266 max = a->top [all...] |
/external/clang/test/SemaCXX/ |
i-c-e-cxx.cpp | 43 unsigned max = 80 / x; local
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_test_utils.h | 21 // MSVS headers define max/min as macros, so std::max/min gets crazy. 22 # undef max macro
|
/external/curl/lib/ |
strerror.c | 296 return "The max connection limit is reached"; 625 size_t max; local 632 max = sizeof(conn->syserr_buf)-1; 644 wcstombs(buf, wbuf, max); 649 strncpy(buf, strerror(err), max); 651 if(!get_winsock_error(err, buf, max) && 653 LANG_NEUTRAL, buf, (DWORD)max, NULL)) 654 snprintf(buf, max, "Unknown error %d (%#x)", err, err); 666 if(0 != strerror_r(err, buf, max)) { 668 snprintf(buf, max, "Unknown error %d", err) [all...] |
/external/dbus/tools/ |
dbus-print-message.c | 107 unsigned int max = DEFAULT_SIZE; local 123 if (len == max) 125 max *= 2; 126 bytes = realloc (bytes, max + 1);
|
/external/deqp/framework/delibs/decpp/ |
deDefs.hpp | 42 template<typename T> inline T max (T x, T y) { return x >= y ? x : y; } function in namespace:de
|
/external/deqp/modules/gles2/functional/ |
es2fImplementationLimitTests.cpp | 66 float max; member in struct:deqp::gles2::Functional::LimitQuery::FloatRange 67 FloatRange (float min_, float max_) : min(min_), max(max_) {} 70 std::ostream& operator<< (std::ostream& str, const FloatRange& range) { return str << range.min << ", " << range.max; } 137 return reported.min <= min.min && min.max <= reported.max;
|
/external/deqp/modules/gles31/functional/ |
es31fPrimitiveBoundingBoxTests.cpp | 63 tcu::Vec4 max; member in struct:deqp::gles31::Functional::__anon10568::BoundingBox 67 * concatenating 4-component min and max vectors. 79 return max[ndx-4]; 90 tcu::Vec3 max; member in struct:deqp::gles31::Functional::__anon10568::ProjectedBBox 95 const float wMin = de::max(0.0f, bbox.min.w()); // clamp to w=0 as extension requires 96 const float wMax = de::max(0.0f, bbox.max.w()); 101 retVal.max = tcu::max(bbox.max.swizzle(0, 1, 2) / wMin [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
InterferenceGraph.java | 65 ensureCapacity(Math.max(regV, regW) + 1);
|
/external/e2fsprogs/e2fsck/ |
region.c | 30 region_addr_t max; member in struct:region_struct 34 region_t region_create(region_addr_t min, region_addr_t max) 43 region->max = max; 65 if ((start < region->min) || (end > region->max)) 161 fprintf(f, "Printing region (min=%d. max=%d)\n\t", region->min, 162 region->max);
|
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
AlignedBox.h | 61 m_min.setConstant( (std::numeric_limits<Scalar>::max)()); 62 m_max.setConstant(-(std::numeric_limits<Scalar>::max)()); 70 inline const VectorType& (max)() const { return m_max; } function in class:Eigen::AlignedBox 72 inline VectorType& (max)() { return m_max; } function in class:Eigen::AlignedBox 80 { return (m_min.cwise()<=(b.min)()).all() && ((b.max)().cwise()<=m_max).all(); } 84 { m_min = (m_min.cwise().min)(p); m_max = (m_max.cwise().max)(p); return *this; } 88 { m_min = (m_min.cwise().min)(b.m_min); m_max = (m_max.cwise().max)(b.m_max); return *this; } 92 { m_min = (m_min.cwise().max)(b.m_min); m_max = (m_max.cwise().min)(b.m_max); return *this; } 129 m_max = (other.max)().template cast<Scalar>();
|
/external/eigen/test/ |
cwiseop.cpp | 22 #ifdef max 23 #undef max macro 147 // check max 148 VERIFY_IS_APPROX( m1.cwise().max(m2), m2.cwise().max(m1) ); 149 VERIFY_IS_APPROX( m1.cwise().max(m1-mones), m1 ); 150 VERIFY_IS_APPROX( m1.cwise().max(m1+mones), m1+mones ); 163 VERIFY( (m1.cwise().max(m2).cwise() >= m2).all() ); 165 VERIFY( (m1.cwise().max(m2).cwise() > (m1-mones)).all() );
|