HomeSort by relevance Sort by last modified time
    Searched defs:max (Results 176 - 200 of 1518) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/freetype/src/base/
ftdebug.c 133 int max = FT_Trace_Get_Count(); local
136 if ( idx < max )
  /external/freetype/src/psnames/
pstables.h 4080 int count, min, max; local
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
SignedBytes.java 120 public static byte max(byte... array) { method in class:SignedBytes
122 byte max = array[0];
124 if (array[i] > max) {
125 max = array[i];
128 return max;
  /external/junit/src/org/junit/experimental/max/
MaxCore.java 1 package org.junit.experimental.max;
  /external/libsepol/src/
private.h 43 #undef max macro
44 #define max(a,b) ((a) >= (b) ? (a) : (b)) macro
  /external/libvorbis/lib/
os.h 78 #ifndef max
79 # define max(x,y) ((x)<(y)?(y):(x)) macro
  /external/opencv/cvaux/src/
_cvvectrack.h 51 #undef max macro
54 #define max(a,b) ((a)<(b) ? (b) : (a)) macro
76 /* Simakov: modify __max to max */
77 return (max(abs(p1.x - p2.x), abs(p1.y - p2.y)) < err);
  /external/openssh/
kexgexc.c 58 int min, max, nbits; local
68 max = DH_GRP_MAX;
74 max = DH_GRP_MAX;
78 packet_put_int(max);
81 min, nbits, max);
84 fprintf(stderr, "\nmin = %d, nbits = %d, max = %d\n",
85 min, nbits, max);
100 if (BN_num_bits(p) < min || BN_num_bits(p) > max)
102 min, BN_num_bits(p), max);
169 min = max = -1
    [all...]
  /external/openssl/crypto/bn/
bn_add.c 107 int max,min,dif; local
116 max = a->top;
118 dif = max - min;
120 if (bn_wexpand(r,max+1) == NULL)
123 r->top=max;
168 int max,min,dif; local
178 max = a->top;
180 dif = max - min;
188 if (bn_wexpand(r,max) == NULL) return(0);
237 memcpy(rp,ap,sizeof(*rp)*(max-i))
265 int max; local
    [all...]
bn_sqr.c 67 int max,al; local
88 max = 2 * al; /* Non-zero (from above) */
89 if (bn_wexpand(rr,max) == NULL) goto err;
131 if (bn_wexpand(tmp,max) == NULL) goto err;
136 if (bn_wexpand(tmp,max) == NULL) goto err;
143 * the square of 'a' will max-1 words. */
145 rr->top = max - 1;
147 rr->top = max;
160 int i,j,max; local
164 max=n*2
    [all...]
  /external/oprofile/libutil/
op_fileio.c 131 size_t max = 512; local
133 buf = xmalloc(max);
152 if (((size_t)(cp - buf)) == max) {
153 buf = xrealloc(buf, max + 128);
154 cp = buf + max;
155 max += 128;
  /external/tinyalsa/
tinymix.c 129 int min, max; local
171 max = mixer_ctl_get_range_max(ctl);
172 printf(" (range %d->%d)", min, max);
  /frameworks/native/libs/ui/
Rect.cpp 26 static inline int32_t max(int32_t a, int32_t b) { function in namespace:android
83 result->left = max(left, with.left);
84 result->top = max(top, with.top);
  /frameworks/native/services/sensorservice/
SensorFusion.cpp 86 template <typename T> inline T max(T a, T b) { return a>b ? a : b; } function in namespace:android
  /hardware/libhardware/include/hardware/
consumerir.h 31 int max; member in struct:consumerir_freq_range
  /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
  /cts/libs/commonutil/src/com/android/cts/util/
Stat.java 28 * Collection of statistical propertirs like average, max, min, and stddev
36 public StatResult(double average, double min, double max, double stddev, int dataCount) {
39 mMax = max;
46 * Calculate statistics properties likes average, min, max, and stddev for the given array
51 double max = data[0]; local
56 if (data[i] > max) {
57 max = data[i];
67 return new StatResult(average, min, max, stddev, data.length);
71 * Calculate statistics properties likes average, min, max, and stddev for the given array
90 double max = median local
149 double max = data[0]; local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
InterferenceGraph.java 55 ensureCapacity(Math.max(regV, regW) + 1);
  /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
  /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-http/src/org/apache/http/conn/params/
ConnPerRouteBean.java 73 public void setDefaultMaxPerRoute(int max) {
74 if (max < 1) {
78 this.defaultMax = max;
81 public void setMaxForRoute(final HttpRoute route, int max) {
86 if (max < 1) {
90 this.maxPerHostMap.put(route, Integer.valueOf(max));
98 Integer max = this.maxPerHostMap.get(route); local
99 if (max != null) {
100 return max.intValue();
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthOutputStream.java 109 long max = this.contentLength - this.total; local
110 if (len > max) {
111 len = (int) max;

Completed in 526 milliseconds

1 2 3 4 5 6 78 91011>>