Searched refs:max (Results 351 - 375 of 4319) sorted by relevance

<<11121314151617181920>>

/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInts.java102 public static int max(int... array) { method in class:UnsignedInts
104 int max = flip(array[0]);
107 if (next > max) {
108 max = next;
111 return flip(max);
/external/libxml2/include/libxml/
H A Dxmlautomata.h82 int max,
91 int max,
99 int max,
108 int max,
132 int max);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftbbox.c102 /* max :: The address of the current maximum. */
109 FT_Pos* max )
134 if ( y3 > *max ) *max = y3;
214 /* max :: The address of the current maximum. */
225 FT_Pos* max )
237 while ( q2 > *max || q3 > *max )
266 *max = q1;
271 *max
[all...]
/external/skia/src/animator/
H A DSkAnimateField.cpp106 int max = fComponents * 2; local
107 fValues.setCount(max);
108 memset(fValues.begin(), 0, max * sizeof(fValues.begin()[0]));
109 fFieldInfo->setValue(maker, &fValues, fFieldOffset, max, this, outType, from);
110 fFieldInfo->setValue(maker, &fValues, fComponents + fFieldOffset, max, this, outType, to);
/external/skia/src/opts/
H A DSkMorphology_opts_SSE2.cpp39 __m128i max = type == kDilate ? _mm_setzero_si128() : _mm_set1_epi32(0xFFFFFFFF); local
42 max = type == kDilate ? _mm_max_epu8(src_pixel, max) : _mm_min_epu8(src_pixel, max);
44 *dptr = _mm_cvtsi128_si32(max);
H A DSkMorphology_opts_neon.cpp42 uint8x8_t max = vdup_n_u8(type == kDilate ? 0 : 255); local
45 max = type == kDilate ? vmax_u8(src_pixel, max) : vmin_u8(src_pixel, max);
47 *dptr = vget_lane_u32(vreinterpret_u32_u8(max), 0);
/external/chromium_org/third_party/libxml/src/
H A Dtriostr.c194 Append at most @p max characters from @p source to @p target.
197 @param max Maximum number of characters to append.
202 contain the @p target string and the @p source string (at most @p max
210 TRIO_ARGS3((target, max, source),
212 size_t max,
222 if (max > length)
224 strncat(target, source, max - length - 1);
283 Copy at most @p max characters from @p source to @p target.
286 @param max Maximum number of characters to append.
291 contain the @p source string (at most @p max character
209 trio_append_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
297 trio_copy_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
365 trio_duplicate_max(source, max), TRIO_CONST char *source, size_t max argument
461 trio_equal_case_max(first, max, second), TRIO_CONST char *first, size_t max, TRIO_CONST char *second argument
516 trio_equal_max(first, max, second), TRIO_CONST char *first, size_t max, TRIO_CONST char *second argument
595 trio_format_date_max(target, max, format, datetime), char *target, size_t max, TRIO_CONST char *format, TRIO_CONST struct tm *datetime argument
885 trio_substring_max(string, max, substring), TRIO_CONST char *string, size_t max, TRIO_CONST char *substring argument
1787 trio_string_equal_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1806 trio_xstring_equal_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1861 trio_string_equal_case_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1880 trio_xstring_equal_case_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1899 trio_string_format_date_max(self, max, format, datetime), trio_string_t *self, size_t max, TRIO_CONST char *format, TRIO_CONST struct tm *datetime argument
[all...]
/external/libxml2/
H A Dtriostr.c194 Append at most @p max characters from @p source to @p target.
197 @param max Maximum number of characters to append.
202 contain the @p target string and the @p source string (at most @p max
210 TRIO_ARGS3((target, max, source),
212 size_t max,
222 if (max > length)
224 strncat(target, source, max - length - 1);
283 Copy at most @p max characters from @p source to @p target.
286 @param max Maximum number of characters to append.
291 contain the @p source string (at most @p max character
209 trio_append_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
297 trio_copy_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
365 trio_duplicate_max(source, max), TRIO_CONST char *source, size_t max argument
461 trio_equal_case_max(first, max, second), TRIO_CONST char *first, size_t max, TRIO_CONST char *second argument
516 trio_equal_max(first, max, second), TRIO_CONST char *first, size_t max, TRIO_CONST char *second argument
595 trio_format_date_max(target, max, format, datetime), char *target, size_t max, TRIO_CONST char *format, TRIO_CONST struct tm *datetime argument
885 trio_substring_max(string, max, substring), TRIO_CONST char *string, size_t max, TRIO_CONST char *substring argument
1787 trio_string_equal_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1806 trio_xstring_equal_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1861 trio_string_equal_case_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1880 trio_xstring_equal_case_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1899 trio_string_format_date_max(self, max, format, datetime), trio_string_t *self, size_t max, TRIO_CONST char *format, TRIO_CONST struct tm *datetime argument
[all...]
/external/zlib/src/contrib/infback9/
H A Dinftree9.c42 unsigned min, max; /* minimum and maximum code lengths */ local
116 for (max = MAXBITS; max >= 1; max--)
117 if (count[max] != 0) break;
118 if (root > max) root = max;
119 if (max == 0) return -1; /* no codes! */
131 if (left > 0 && (type == CODES || max != 1))
169 all codes of length max,
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dtime_stretch.cc13 #include <algorithm> // min, max
84 scaling = std::max(0, scaling);
113 int energy1_scale = std::max(0, 16 - WebRtcSpl_NormW32(vec1_energy));
114 int energy2_scale = std::max(0, 16 - WebRtcSpl_NormW32(vec2_energy));
135 cross_corr = std::max(0, cross_corr); // Don't use if negative.
164 scaling = std::max(0, scaling);
174 scaling = std::max(0, 17 - WebRtcSpl_NormW32(max_corr));
198 right_scale = std::max(0, right_scale);
/external/openssl/crypto/buffer/
H A Dbuffer.c79 ret->max=0;
91 memset(a->data,0,(unsigned int)a->max);
107 if (str->max >= len)
132 str->max=n;
150 if (str->max >= len)
166 ret=OPENSSL_realloc_clean(str->data,str->max,n);
175 str->max=n;
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dneterror.css109 @media (max-width: 640px),
110 (max-height: 640px) {
165 @media (max-width: 200px),
166 (max-height: 95px) {
178 max-width: 600px;
184 max-width: 600px;
194 max-width: 600px;
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DImageBitmap.cpp23 std::max(rect.width(), -rect.width()),
24 std::max(rect.height(), -rect.height()));
44 m_bitmapRect = IntRect(IntPoint(std::max(0, -cropRect.x()), std::max(0, -cropRect.y())), srcRect.size());
75 m_bitmapRect = IntRect(IntPoint(std::max(0, -cropRect.x()), std::max(0, -cropRect.y())), srcRect.size());
88 m_bitmapRect = IntRect(IntPoint(std::max(0, -cropRect.x()), std::max(0, -cropRect.y())), srcRect.size());
106 m_bitmapRect = IntRect(IntPoint(std::max(0, -cropRect.x()), std::max(
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRoundedRect.cpp65 m_topLeft.setWidth(std::max<int>(0, m_topLeft.width() + leftWidth));
66 m_topLeft.setHeight(std::max<int>(0, m_topLeft.height() + topWidth));
69 m_topRight.setWidth(std::max<int>(0, m_topRight.width() + rightWidth));
70 m_topRight.setHeight(std::max<int>(0, m_topRight.height() + topWidth));
73 m_bottomLeft.setWidth(std::max<int>(0, m_bottomLeft.width() + leftWidth));
74 m_bottomLeft.setHeight(std::max<int>(0, m_bottomLeft.height() + bottomWidth));
77 m_bottomRight.setWidth(std::max<int>(0, m_bottomRight.width() + rightWidth));
78 m_bottomRight.setHeight(std::max<int>(0, m_bottomRight.height() + bottomWidth));
155 int minX = m_rect.x() + std::max(m_radii.topLeft().width(), m_radii.bottomLeft().width());
156 int minY = m_rect.y() + std::max(m_radi
[all...]
H A DFloatRect.cpp88 float left = std::max(x(), other.x());
89 float top = std::max(y(), other.y());
121 float maxX = std::max(this->maxX(), other.maxX());
122 float maxY = std::max(this->maxY(), other.maxY());
144 float maxX = std::max(this->maxX(), p.x());
145 float maxY = std::max(this->maxY(), p.y());
173 float right = std::max(p0.x(), p1.x());
174 float bottom = std::max(p0.y(), p1.y());
180 // Helpers for 3- and 4-way max and min.
191 return std::max(st
[all...]
/external/freetype/src/base/
H A Dftbbox.c102 /* max :: The address of the current maximum. */
109 FT_Pos* max )
122 if ( y2 > *max )
123 *max = y2;
203 /* max :: The address of the current maximum. */
210 FT_Pos max )
214 while ( q2 > max || q3 > max )
243 max = q1;
248 max
[all...]
/external/chromium_org/third_party/skia/tools/timer/
H A DTimerData.cpp57 double wallMin = std::numeric_limits<double>::max();
58 double truncWallMin = std::numeric_limits<double>::max();
59 double cpuMin = std::numeric_limits<double>::max();
60 double truncCpuMin = std::numeric_limits<double>::max();
61 double gpuMin = std::numeric_limits<double>::max();
151 double wallMin = std::numeric_limits<double>::max();
152 double truncWallMin = std::numeric_limits<double>::max();
153 double cpuMin = std::numeric_limits<double>::max();
154 double truncCpuMin = std::numeric_limits<double>::max();
155 double gpuMin = std::numeric_limits<double>::max();
[all...]
/external/skia/tools/timer/
H A DTimerData.cpp57 double wallMin = std::numeric_limits<double>::max();
58 double truncWallMin = std::numeric_limits<double>::max();
59 double cpuMin = std::numeric_limits<double>::max();
60 double truncCpuMin = std::numeric_limits<double>::max();
61 double gpuMin = std::numeric_limits<double>::max();
151 double wallMin = std::numeric_limits<double>::max();
152 double truncWallMin = std::numeric_limits<double>::max();
153 double cpuMin = std::numeric_limits<double>::max();
154 double truncCpuMin = std::numeric_limits<double>::max();
155 double gpuMin = std::numeric_limits<double>::max();
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dasn1_lib.c68 static int asn1_get_length(const unsigned char **pp,int *inf,long *rl,int max);
103 long max=omax; local
105 if (!max) goto err;
112 if (--max == 0) goto err;
118 if (--max == 0) goto err;
124 if (--max == 0) goto err;
130 if (--max == 0) goto err;
134 if (!asn1_get_length(&p,&inf,plength,(int)max)) goto err;
159 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max) argument
165 if (max
[all...]
/external/openssl/crypto/asn1/
H A Dasn1_lib.c65 static int asn1_get_length(const unsigned char **pp,int *inf,long *rl,int max);
101 long max=omax; local
103 if (!max) goto err;
110 if (--max == 0) goto err;
116 if (--max == 0) goto err;
122 if (--max == 0) goto err;
128 if (--max == 0) goto err;
132 if (!asn1_get_length(&p,&inf,plength,(int)max)) goto err;
157 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max) argument
163 if (max
[all...]
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.cpp240 inline T getRandom (deRandom& rnd, T min, T max);
243 inline GLValue::Float getRandom (deRandom& rnd, GLValue::Float min, GLValue::Float max)
245 if (max < min)
248 return GLValue::Float::create(min + deRandom_getFloat(&rnd) * (max.to<float>() - min.to<float>()));
252 inline GLValue::Short getRandom (deRandom& rnd, GLValue::Short min, GLValue::Short max)
254 if (max < min)
257 return GLValue::Short::create((min == max ? min : min + (deRandom_getUint32(&rnd) % (max.to<int>() - min.to<int>()))));
261 inline GLValue::Ushort getRandom (deRandom& rnd, GLValue::Ushort min, GLValue::Ushort max)
263 if (max < mi
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DInputDialogContainer.java79 double min, double max, double step) {
81 // |dialogValue|, |min|, |max| mean different things depending on the |dialogType|.
109 0, 0, 0, 0, 0, min, max, step);
114 0, 0, 0, min, max, step);
125 0, min, max, step);
128 0, 0, 0, 0, 0, min, max, step);
132 showPickerDialog(dialogType, year, 0, 0, 0, 0, 0, 0, week, min, max, step);
138 final double min, final double max, final double step,
149 showPickerDialog(dialogType, dialogValue, min, max, step);
197 double min, double max, doubl
78 showPickerDialog(final int dialogType, double dialogValue, double min, double max, double step) argument
136 showSuggestionDialog(final int dialogType, final double dialogValue, final double min, final double max, final double step, DateTimeSuggestion[] suggestions) argument
196 showDialog(final int type, final double value, double min, double max, double step, DateTimeSuggestion[] suggestions) argument
209 showPickerDialog(final int dialogType, int year, int month, int monthDay, int hourOfDay, int minute, int second, int millis, int week, double min, double max, double step) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dparameter_block_test.cc176 std::numeric_limits<double>::max());
178 std::numeric_limits<double>::max());
180 -std::numeric_limits<double>::max());
182 -std::numeric_limits<double>::max());
193 -std::numeric_limits<double>::max());
196 std::numeric_limits<double>::max());
/external/chromium_org/base/metrics/
H A Dhistogram_samples.cc21 HistogramBase::Sample* max,
51 HistogramBase::Sample* max,
55 *max = max_;
107 HistogramBase::Sample max; local
112 it->Get(&min, &max, &count);
114 !pickle->WriteInt(max) ||
50 Get(HistogramBase::Sample* min, HistogramBase::Sample* max, HistogramBase::Count* count) const argument
H A Dsample_vector.cc59 HistogramBase::Sample max;
65 iter->Get(&min, &max, &count);
67 max == bucket_ranges_->range(index + 1)) {
136 HistogramBase::Sample* max,
141 if (max != NULL)
142 *max = bucket_ranges_->range(index_ + 1);
135 Get(HistogramBase::Sample* min, HistogramBase::Sample* max, HistogramBase::Count* count) const argument

Completed in 655 milliseconds

<<11121314151617181920>>