HomeSort by relevance Sort by last modified time
    Searched full:max_value (Results 1226 - 1250 of 2548) sorted by null

<<41424344454647484950>>

  /external/ImageMagick/MagickCore/
matrix.c 893 max_value,
918 max_value=value;
931 if (value > max_value)
932 max_value=value;
935 if ((min_value == 0.0) && (max_value == 0.0))
938 if (min_value == max_value)
944 scale_factor=(double) QuantumRange/(max_value-min_value);
882 max_value, local
    [all...]
  /external/ImageMagick/coders/
viff.c 548 max_value;
561 max_value=value;
573 if (value > max_value)
574 max_value=value;
579 if ((min_value == 0) && (max_value == 0))
582 if (min_value == max_value)
588 scale_factor=(double) QuantumRange/(max_value-min_value);
544 max_value; local
    [all...]
txt.c 418 max_value,
446 max_value=0;
448 count=(ssize_t) sscanf(text+32,"%lu,%lu,%lu,%s",&width,&height,&max_value,
450 if ((count != 4) || (width == 0) || (height == 0) || (max_value == 0))
454 for (depth=1; (GetQuantumRange(depth)+1) < max_value; depth++) ;
413 max_value, local
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DiskLruCacheTest.java 66 createNewCacheWithSize(Integer.MAX_VALUE);
755 cache = DiskLruCache.create(fileSystem, dir, appVersion, 2, Integer.MAX_VALUE);
    [all...]
  /external/toolchain-utils/cros_utils/
tabulator.py 580 max_value = 2.0
584 value = max_value - mid_value / value
586 return self._GetColorBetweenRange(value, min_value, mid_value, max_value,
589 def _GetColorBetweenRange(self, value, min_value, mid_value, max_value,
591 assert value <= max_value
594 value = (max_value - value) / (max_value - mid_value)
    [all...]
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 370 Integer.MIN_VALUE, Integer.MAX_VALUE);
436 int topmost = Integer.MAX_VALUE;
509 Arrays.fill(mItemTops, Integer.MAX_VALUE);
533 if (mItemTops[col] == Integer.MAX_VALUE) {
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
AsynchronousFileChannel.java 406 * of size {@link Long#MAX_VALUE}. If a lock that overlaps the requested
475 * ch.{@link #lock(long,long,boolean,Object,CompletionHandler) lock}(0L, Long.MAX_VALUE, false, att, handler)
494 lock(0L, Long.MAX_VALUE, false, attachment, handler);
545 * ch.{@link #lock(long,long,boolean) lock}(0L, Long.MAX_VALUE, false)
557 return lock(0L, Long.MAX_VALUE, false);
616 * ch.{@link #tryLock(long,long,boolean) tryLock}(0L, Long.MAX_VALUE, false) </pre>
640 return tryLock(0L, Long.MAX_VALUE, false);
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/testing/
generate_examples.py 239 def create_tensor_data(dtype, shape, min_value=-100, max_value=100):
240 """Build tensor data spreading the range [min_value, max_value)."""
246 value = (max_value-min_value)*np.random.random_sample(shape)+min_value
248 value = np.random.randint(min_value, max_value+1, shape)
563 np.float32, parameters["input_shape"], min_value=-4, max_value=10)
589 np.float32, parameters["input_shape"], min_value=-3, max_value=10)
613 np.float32, parameters["input_shape"], min_value=-3, max_value=10)
779 min_value=-100, max_value=9)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DecimalQuantity_SimpleStorage.java 53 private int lOptPos = Integer.MAX_VALUE;
101 return Integer.MAX_VALUE;
335 // Negation is safe for minFrac/maxFrac because -Integer.MAX_VALUE > Integer.MIN_VALUE
352 // Negation is safe for minFrac/maxFrac because -Integer.MAX_VALUE > Integer.MIN_VALUE
497 return Integer.MAX_VALUE;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DecimalQuantity_SimpleStorage.java 50 private int lOptPos = Integer.MAX_VALUE;
98 return Integer.MAX_VALUE;
332 // Negation is safe for minFrac/maxFrac because -Integer.MAX_VALUE > Integer.MIN_VALUE
349 // Negation is safe for minFrac/maxFrac because -Integer.MAX_VALUE > Integer.MIN_VALUE
494 return Integer.MAX_VALUE;
  /external/webp/src/dsp/
enc.c 48 int max_value = 0, last_non_zero = 1; local
53 if (value > max_value) max_value = value;
57 histo->max_value = max_value;
  /libcore/ojluni/src/main/java/java/util/concurrent/
PriorityBlockingQueue.java 140 private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
603 * Always returns {@code Integer.MAX_VALUE} because
605 * @return {@code Integer.MAX_VALUE} always
608 return Integer.MAX_VALUE;
721 return drainTo(c, Integer.MAX_VALUE);
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java 106 if (s < Integer.MIN_VALUE || s > Integer.MAX_VALUE) {
162 if (a <= Long.MAX_VALUE - b) {
185 * <code> < Long.MAX_VALUE</code> is 66. If the computed value exceeds
186 * <code>Long.MAX_VALUE</code> an <code>ArithMeticException</code> is
264 * Double.MAX_VALUE is 1029. If the computed value exceeds Double.MAX_VALUE,
783 * Long.MAX_VALUE</code> is 20. If the computed value exceeds <code>Long.MAX_VALUE</code>
818 * Double.MAX_VALUE</code> is 170. If the computed value exceeds
819 * Double.MAX_VALUE, Double.POSITIVE_INFINITY is returned</li
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
ByteBufferTest.java 391 buf.get(array, 1, Integer.MAX_VALUE);
397 buf.get(array, Integer.MAX_VALUE, 1);
623 buf.put(array, 2, Integer.MAX_VALUE);
629 buf.put(array, Integer.MAX_VALUE, 1);
635 buf.put((byte[])null, 2, Integer.MAX_VALUE);
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Integer.java 64 @Native public static final int MAX_VALUE = 0x7fffffff;
502 99999999, 999999999, Integer.MAX_VALUE };
593 int limit = -Integer.MAX_VALUE;
612 // Accumulating negatively avoids surprises near MAX_VALUE
657 * numbers larger than {@code MAX_VALUE}.
710 if (len <= 5 || // Integer.MAX_VALUE in Character.MAX_RADIX is 6 digits
711 (radix == 10 && len <= 9) ) { // Integer.MAX_VALUE in base 10 is 10 digits
    [all...]
StrictMath.java 644 * equal to the value of {@code Integer.MAX_VALUE}, the result is
645 * equal to the value of {@code Integer.MAX_VALUE}.</ul>
650 * @see java.lang.Integer#MAX_VALUE
667 * equal to the value of {@code Long.MAX_VALUE}, the result is
668 * equal to the value of {@code Long.MAX_VALUE}.</ul>
674 * @see java.lang.Long#MAX_VALUE
    [all...]
Double.java 79 public static final double MAX_VALUE = 0x1.fffffffffffffP+1023; // 1.7976931348623157e+308
103 * {@code Math.getExponent(Double.MAX_VALUE)}.
267 * <tr><td>{@code Double.MAX_VALUE}</td>
413 * #MAX_VALUE} + {@link Math#ulp(double) ulp(MAX_VALUE)}/2),
576 return Math.abs(d) <= DoubleConsts.MAX_VALUE;
    [all...]
Float.java 78 public static final float MAX_VALUE = 0x1.fffffeP+127f; // 3.4028235e+38f
101 * Math.getExponent(Float.MAX_VALUE)}.
269 * <tr><td>{@code Float.MAX_VALUE}</td>
373 * #MAX_VALUE} + {@link Math#ulp(float) ulp(MAX_VALUE)}/2),
490 return Math.abs(f) <= FloatConsts.MAX_VALUE;
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 1061 NJ_UINT32 max_value, eval, current; local
1110 max_value = oldest;
1938 NJ_UINT32 max_value, eval, current; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
OlsonTimeZone.java 471 finalStartYear = Integer.MAX_VALUE;
472 finalStartMillis = Double.MAX_VALUE;
584 finalStartYear = Integer.MAX_VALUE;
585 finalStartMillis = Double.MAX_VALUE;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
OlsonTimeZone.java 469 finalStartYear = Integer.MAX_VALUE;
470 finalStartMillis = Double.MAX_VALUE;
582 finalStartYear = Integer.MAX_VALUE;
583 finalStartMillis = Double.MAX_VALUE;
865 private int finalStartYear = Integer.MAX_VALUE;
    [all...]
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
PhoneNumberMatcherTest.java 662 Long.MAX_VALUE)));
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/
AutofillManagerServiceImpl.java     [all...]
  /hardware/intel/img/psb_video/src/
vsp_VPP.c     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
CharacterTest.java 29 assertFalse(Character.isValidCodePoint(Integer.MAX_VALUE));
92 assertEquals(2, Character.charCount(Integer.MAX_VALUE));
312 Character.toChars(Integer.MAX_VALUE, new char[2], 0);
343 Character.toChars(Integer.MAX_VALUE);
533 final Character mid = new Character((char) (Character.MAX_VALUE / 2));
534 final Character max = new Character(Character.MAX_VALUE);
    [all...]

Completed in 1359 milliseconds

<<41424344454647484950>>