HomeSort by relevance Sort by last modified time
    Searched refs:max (Results 126 - 150 of 2436) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu4c/layout/
HanLayoutEngine.cpp 54 le_int32 HanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/,
61 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
KhmerLayoutEngine.cpp 44 le_int32 KhmerOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
51 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
TibetanLayoutEngine.cpp 50 le_int32 TibetanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
57 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
IndicLayoutEngine.cpp 56 le_int32 IndicOpenTypeLayoutEngine::glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
63 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
68 le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, glyphStorage, success);
77 OpenTypeLayoutEngine::glyphSubstitution(count,max, rightToLeft, glyphStorage, success);
87 le_int32 IndicOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
94 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
    [all...]
  /external/icu4c/test/intltest/
tsputil.h 26 void maxMinTest(double a, double b, double exp, UBool max);
  /external/qemu/android/camera/
camera-capture.h 108 * max - Maximum number of entries that can fit into the array.
112 extern int enumerate_camera_devices(CameraInfo* cis, int max);
  /external/skia/tests/
SrcOverTest.cpp 52 unsigned max = SkMax32(dst, i); local
55 REPORTER_ASSERT(reporter, r0 <= 255 && r0 >= max);
57 REPORTER_ASSERT(reporter, r1 <= 255 && r1 >= max);
58 REPORTER_ASSERT(reporter, r2 <= 255 && r2 >= max);
  /frameworks/base/core/tests/coretests/src/android/view/
BigCacheTest.java 58 final int max = ViewConfiguration.get(getActivity()).getScaledMaximumDrawingCacheSize(); local
59 assertTrue(mTiny.getWidth() * mTiny.getHeight() * 2 < max);
66 final int max = ViewConfiguration.get(getActivity()).getScaledMaximumDrawingCacheSize();
67 assertTrue(mLarge.getWidth() * mLarge.getHeight() * 2 > max);
  /frameworks/base/media/libstagefright/codecs/aacdec/
imdct_fxp.h 111 Int32 max
long_term_prediction.cpp 51 Add max calculation on the filter implementation, this to eliminate
395 Int32 max = 0; local
496 max |= (test >> 31) ^ test;
528 max |= (test >> 31) ^ test;
559 max |= (test >> 31) ^ test;
633 shift = 16 - pv_normalize(max);
huffspec_fxp.cpp 327 Int max = 0; local
344 Int *max);
495 &max); /* unpack idx -> coefs */
565 &max); /* add pulse data */
588 if ((max < 0) || (max > 8192)) /* (8192>>ORDER) == 1024 is the inverseQuantTable size */
594 /* Get (max/SPACING) ^ (1/3), in Q Format */
595 temp = inverseQuantTable[(max >> ORDER) + 1];
605 /* Now get max ^ (4/3) in Q0 */
606 temp *= max;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScrollerHelper.java 74 public void fling(int velocity, int min, int max) {
79 min, max, // minX, maxX
85 public int startScroll(int distance, int min, int max) {
88 int newPosition = Utils.clamp(finalPosition + distance, min, max);
  /packages/apps/Settings/src/com/android/settings/widget/
ChartAxis.java 29 public boolean setBounds(long min, long max);
  /external/oprofile/libdb/
db_debug.c 69 static int check_redundant_key(odb_data_t const * data, odb_key_t max)
73 unsigned char * bitmap = malloc(max + 1);
74 memset(bitmap, '\0', max + 1);
95 odb_key_t max = 0; local
107 if (data->node_base[index].key > max)
108 max = data->node_base[index].key;
129 ret = check_redundant_key(data, max);
  /external/webkit/Source/WebCore/platform/graphics/
Color.cpp 53 return 0xFF000000 | max(0, min(r, 255)) << 16 | max(0, min(g, 255)) << 8 | max(0, min(b, 255));
58 return max(0, min(a, 255)) << 24 | max(0, min(r, 255)) << 16 | max(0, min(g, 255)) << 8 | max(0, min(b, 255));
64 return max(0, min(static_cast<int>(lroundf(255.0f * f)), 255));
260 float v = max(r, max(g, b))
    [all...]
FloatRect.cpp 36 using std::max;
66 float l = max(x(), other.x());
67 float t = max(y(), other.y());
94 float r = max(maxX(), other.maxX());
95 float b = max(maxY(), other.maxY());
112 float right = max(maxX(), other.maxX());
113 float bottom = max(maxY(), other.maxY());
130 float right = max(p0.x(), p1.x());
131 float bottom = max(p0.y(), p1.y());
137 // Helpers for 3- and 4-way max and min
    [all...]
  /external/antlr/src/org/antlr/runtime/misc/
Stats.java 99 public static int max(int[] X) { method in class:Stats
100 int max = Integer.MIN_VALUE; local
106 if ( X[i] > max ) {
107 max = X[i];
110 return max;
143 public static int max(List<Integer> X) { method in class:Stats
144 int max = Integer.MIN_VALUE; local
150 if ( X.get(i) > max ) {
151 max = X.get(i);
154 return max;
    [all...]
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
glUtils.h 66 template <class T> void minmax(T *indices, int count, int *min, int *max) {
68 *max = -1;
72 if (*max == -1 || *ptr > *max) *max = *ptr;
  /external/chromium/net/base/
backoff_entry.cc 53 exponential_backoff_release_time_ = std::max(
86 return unused_since_ms >= std::max(policy_->maximum_backoff_ms,
101 std::max(0, failure_count_ - policy_->num_errors_to_ignore);
105 return std::max(GetTimeNow(), exponential_backoff_release_time_);
122 return std::max(GetTimeNow() + base::TimeDelta::FromMilliseconds(delay_int),
  /external/guava/src/com/google/common/primitives/
SignedBytes.java 111 public static byte max(byte... array) { method in class:SignedBytes
113 byte max = array[0];
115 if (array[i] > max) {
116 max = array[i];
119 return max;
UnsignedBytes.java 113 public static byte max(byte... array) { method in class:UnsignedBytes
115 int max = array[0] & 0xFF; local
118 if (next > max) {
119 max = next;
122 return (byte) max;
  /external/webkit/Source/WebCore/platform/graphics/android/
TilesManager.cpp 160 const unsigned int max = m_textures.size(); local
164 // if we're not deallocating all textures, spare those with max drawcount
166 for (unsigned int i = 0; i < max; i++) {
169 sparedDrawCount = std::max(sparedDrawCount, owner->drawCount());
179 const unsigned int max = textures.size(); local
181 for (unsigned int i = 0; i < max; i++) {
189 dealloc, max, maxLayer);
284 const unsigned int max = availableTexturePool->size(); local
285 for (unsigned int i = 0; i < max; i++) {
348 owner, owner->x(), owner->y(), max);
    [all...]
  /external/bluetooth/bluez/test/
test-textfile.c 46 unsigned int i, j, size, max = 10; local
103 for (i = 1; i < max + 1; i++) {
125 sprintf(key, "00:00:00:00:00:%02X", max);
128 for (j = 0; j < max; j++)
137 for (j = 0; j < max; j++)
145 for (i = 1; i < max + 1; i++) {
161 sprintf(key, "00:00:00:00:00:%02X", max - 3);
176 sprintf(key, "00:00:00:00:00:%02X", max);
181 sprintf(key, "00:00:00:00:00:%02X", max + 1);
  /external/openssl/crypto/bio/
b_print.c 183 int max; local
191 max = -1;
253 if (max < 0)
254 max = 0;
255 max = 10 * max + char_to_int(ch);
258 max = va_arg(args, int);
310 value, 10, min, max, flags);
337 min, max, flags);
345 fvalue, min, max, flags)
    [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...]

Completed in 8686 milliseconds

1 2 3 4 56 7 8 91011>>