HomeSort by relevance Sort by last modified time
    Searched full:maxvalue (Results 51 - 75 of 366) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckHiiLib/
VarCheckHiiGen.c 185 DEBUG ((EFI_D_INFO, " MaxValue - 0x%02x\n", IfrOneOf->data.u8.MaxValue));
190 DEBUG ((EFI_D_INFO, " MaxValue - 0x%04x\n", IfrOneOf->data.u16.MaxValue));
195 DEBUG ((EFI_D_INFO, " MaxValue - 0x%08x\n", IfrOneOf->data.u32.MaxValue));
200 DEBUG ((EFI_D_INFO, " MaxValue - 0x%016lx\n", IfrOneOf->data.u64.MaxValue));
215 DEBUG ((EFI_D_INFO, " MaxValue - 0x%02x\n", IfrNumeric->data.u8.MaxValue));
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
Preconditions.java 144 public static void checkValueArg(int valueArg, int maxValue) {
145 if (valueArg > maxValue) {
146 if (maxValue == 0) {
153 valueArg, maxValue));
  /packages/services/Car/service/src/com/android/car/
CarAudioDeviceInfo.java 65 mMaxGain = audioGain.maxValue();
227 Preconditions.checkArgument(audioGain.maxValue() >= audioGain.minValue());
229 && (audioGain.defaultValue() <= audioGain.maxValue()));
231 ((audioGain.maxValue() - audioGain.minValue()) % audioGain.stepValue()) == 0);
  /external/skia/src/core/
SkAntiRun.h 46 * middleCount pixels with value += maxValue
54 U8CPU maxValue, int offsetX) {
88 alpha[0] = SkToU8(CatchOverflow(alpha[0] + maxValue));
  /external/skia/src/effects/
SkColorMatrix.cpp 20 SkScalar maxValue = row[4] / 255;
24 maxValue += row[i];
28 return (maxValue > 1) || (minValue < 0);
  /external/skqp/src/core/
SkAntiRun.h 46 * middleCount pixels with value += maxValue
54 U8CPU maxValue, int offsetX) {
88 alpha[0] = SkToU8(CatchOverflow(alpha[0] + maxValue));
  /external/skqp/src/effects/
SkColorMatrix.cpp 20 SkScalar maxValue = row[4] / 255;
24 maxValue += row[i];
28 return (maxValue > 1) || (minValue < 0);
  /external/swiftshader/third_party/subzero/src/
IceSwitchLowering.cpp 64 const uint64_t MaxValue = CaseClusters.back().High;
67 const uint64_t Range = MaxValue - MinValue;
91 CaseClusters.emplace_back(MinValue, MaxValue, JumpTable);
  /frameworks/base/media/java/android/media/
AudioGain.java 73 int minValue, int maxValue, int defaultValue, int stepValue,
79 mMaxValue = maxValue;
111 public int maxValue() {
  /external/llvm/utils/lit/lit/
util.py 120 maxValue = max([v for _,v in items])
123 power = int(math.ceil(math.log(maxValue, 10)))
126 N = int(math.ceil(maxValue / barH))
134 bin = min(int(N * v/maxValue), N-1)
145 pDigits = int(math.ceil(math.log(maxValue, 10)))
  /external/python/cpython2/Lib/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 51 def __init__(self, kind, value, maxvalue, *, ctx):
59 kind, value, maxvalue, self._make_name(),
108 return (h, sl.kind, sl.maxvalue, sl.name)
153 return '<%s(value=%s, maxvalue=%s)>' % \
154 (self.__class__.__name__, value, self._semlock.maxvalue)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
GlitchAndCallbackHeatMapView.java 278 private static void drawHeatMap(Canvas canvas, int[] bucketedValues, int maxValue,
293 float logMax = (float) Math.log(maxValue + 1);
308 private static void drawColorLegend(Canvas canvas, int maxValue, ColorInterpolator colorInter,
323 int tickSpacing = (maxValue + NUM_LEGEND_LABELS - 1) / NUM_LEGEND_LABELS;
324 for (int i = 0; i < maxValue; i += tickSpacing) {
325 float yPos = legendArea.bottom - (((float) i / maxValue) * legendArea.height());
331 canvas.drawText(Integer.toString(maxValue), legendArea.right + INNER_MARGIN,
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSBaseCompute.java 176 int size, long seed, double minValue, double maxValue) {
182 RSUtils.genRandomDoubles(seed, minValue, maxValue, inArray, false);
186 RSUtils.genRandomFloats(seed, (float) minValue, (float) maxValue, inArray, false);
190 RSUtils.genRandomFloat16s(seed, minValue, maxValue, inArray, false);
278 double maxValue = Float16Utils.convertFloat16ToDouble(maxArray[i]);
279 if (minValue > maxValue) {
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java 206 int maxValue = (int) Math.floor(max * step);
208 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
209 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
210 for (int i = minValue; i <= maxValue; ++i) {
211 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
214 entries[maxValue - i] = builder.append(i).toString();
  /frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
FlingAnimation.java 118 * @param maxValue maximum value of the property to be animated
122 public FlingAnimation setMaxValue(float maxValue) {
123 super.setMaxValue(maxValue);
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
Card.java 470 public Builder setProgressMaxValue(int maxValue) {
475 mCard.mCardProgress.maxValue = maxValue;
596 progressBar.setMax(mCard.mCardProgress.maxValue);
641 private int maxValue = 100;
651 progressClone.maxValue = maxValue;
677 maxValue = max;
680 bar.setMax(maxValue);
  /developers/build/templates/CardStream/_MODULE_/src/template/java/_PACKAGE_/cardstream/
Card.java.ftl 470 public Builder setProgressMaxValue(int maxValue) {
475 mCard.mCardProgress.maxValue = maxValue;
596 progressBar.setMax(mCard.mCardProgress.maxValue);
641 private int maxValue = 100;
651 progressClone.maxValue = maxValue;
677 maxValue = max;
680 bar.setMax(maxValue);
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
Card.java 470 public Builder setProgressMaxValue(int maxValue) {
475 mCard.mCardProgress.maxValue = maxValue;
596 progressBar.setMax(mCard.mCardProgress.maxValue);
641 private int maxValue = 100;
651 progressClone.maxValue = maxValue;
677 maxValue = max;
680 bar.setMax(maxValue);
  /external/dng_sdk/source/
dng_utils.cpp 434 uint32 maxValue,
440 DoZeroBytes (hist, (maxValue + 1) * (uint32) sizeof (uint32));
479 if (maxValue == 0x0FFFF && step2 == 1)
503 if (x <= maxValue)
  /external/parameter-framework/upstream/parameter/
IntegerParameterType.cpp 401 type minValue, type maxValue,
405 if (value < minValue || value > maxValue) {
418 stream << maxValue;
422 stream << minValue << ", " << maxValue;

Completed in 1863 milliseconds

1 23 4 5 6 7 8 91011>>