HomeSort by relevance Sort by last modified time
    Searched refs:MaxVal (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Containers/Common/
ModuloUtil.c 8 NOTE: Changes must be less than or equal to the modulus specified by MaxVal.
23 /** Counter = (Counter + 1) % MaxVal;
25 Counter is always expected to be LESS THAN MaxVal.
26 0 <= Counter < MaxVal
29 @param[in] MaxVal Modulus of the operation.
31 @return Returns the result of incrementing Counter, modulus MaxVal.
32 If Counter >= MaxVal, returns -1.
38 UINT32 MaxVal
43 if(Counter < MaxVal) {
45 if(Temp >= (INT32)MaxVal) {
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/Containers/
ModuloUtil.h 7 the modulus specified by MaxVal.
25 /** Counter = (Counter + 1) % MaxVal;
27 Counter is always expected to be LESS THAN MaxVal.
28 0 <= Counter < MaxVal
31 @param[in] MaxVal Modulus of the operation.
33 @return Returns the result of incrementing Counter, modulus MaxVal.
34 If Counter >= MaxVal, returns -1.
40 UINT32 MaxVal
43 /** Counter = (Counter - 1) % MaxVal;
45 Counter is always expected to be LESS THAN MaxVal.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSupportString.c 32 UINTN MaxVal;
36 MaxVal = (UINTN) -1 >> 4;
66 if (RetVal > MaxVal) {
96 UINT64 MaxVal;
100 MaxVal = RShiftU64 ((UINT64) -1, 4);
130 if (RetVal > MaxVal) {
161 UINTN MaxVal;
166 MaxVal = (UINTN) -1 / 10;
181 if (RetVal > MaxVal || (RetVal == MaxVal && TempChar - '0' > (INTN) ResteVal)) {
    [all...]
  /external/ImageMagick/coders/
mat.c 185 double MaxVal,ExceptionInfo *exception)
194 if (MaxVal == 0)
195 MaxVal = 1;
204 f = (*p / MaxVal) * (QuantumRange-GetPixelRed(image,q));
222 f = (*p / MaxVal) * (QuantumRange-GetPixelBlue(image,q));
248 double MaxVal,ExceptionInfo *exception)
256 if (MaxVal == 0)
257 MaxVal = 1;
266 f = (*p / MaxVal) * (QuantumRange-GetPixelRed(image,q));
284 f = (*p / MaxVal) * (QuantumRange - GetPixelBlue(image,q))
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 307 int64_t MaxVal = (int64_t(1) << 31) - 8;
310 else if (ThisVal > MaxVal)
311 ThisVal = MaxVal;
  /external/deqp/modules/egl/
teglChooseConfigTests.cpp 368 template <int MinVal, int MaxVal> static EGLint getInt (de::Random& rnd)
370 return rnd.getInt(MinVal, MaxVal);
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 383 int64_t MaxVal, bool AllowTLS);
854 int64_t MaxVal, bool AllowTLS) {
866 if ((Value & 1) || Value < MinVal || Value > MaxVal) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 187 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
189 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp     [all...]

Completed in 401 milliseconds