OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MaxValue
(Results
1 - 9
of
9
) sorted by relevancy
/src/sys/external/bsd/acpica/dist/compiler/
dtfield.c
293
UINT64
MaxValue
;
353
MaxValue
= ((UINT64) (-1)) >> (64 - (ByteLength * 8));
357
if (Value >
MaxValue
)
/src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantRange.cpp
211
APInt
MaxValue
= APInt::getSignedMaxValue(BitWidth);
214
return ConstantRange(-
MaxValue
, MinValue);
218
Lower = APIntOps::RoundingSDiv(
MaxValue
, V, APInt::Rounding::UP);
222
Upper = APIntOps::RoundingSDiv(
MaxValue
, V, APInt::Rounding::DOWN);
735
// Analyze wrapped sets in their two parts: [0, Upper) \/ [Lower,
MaxValue
]
736
// We use the non-wrapped set code to analyze the [Lower,
MaxValue
) part, and
737
// then we do the union with [
MaxValue
, Upper)
739
// If Upper is greater than or equal to
MaxValue
(DstTy), it covers the whole
748
// Union covers the
MaxValue
case, so return if the remaining range is just
749
//
MaxValue
(DstTy)
[
all
...]
Attributes.cpp
81
static uint64_t packVScaleRangeArgs(unsigned MinValue, unsigned
MaxValue
) {
82
return uint64_t(MinValue) << 32 |
MaxValue
;
86
unsigned
MaxValue
= Value & std::numeric_limits<unsigned>::max();
89
return std::make_pair(MinValue,
MaxValue
);
212
unsigned
MaxValue
) {
213
return get(Context, VScaleRange, packVScaleRangeArgs(MinValue,
MaxValue
));
581
unsigned MinValue,
MaxValue
;
582
std::tie(MinValue,
MaxValue
) = getVScaleRangeArgs();
587
Result += utostr(
MaxValue
);
1545
unsigned
MaxValue
) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkResult.h
107
double max() const { return
MaxValue
; }
115
double
MaxValue
= std::numeric_limits<double>::min();
/src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp
1359
unsigned MinValue,
MaxValue
;
1361
if (parseVScaleRangeArguments(MinValue,
MaxValue
))
1363
B.addVScaleRangeAttr(MinValue,
MaxValue
);
2400
unsigned &
MaxValue
) {
2411
if (parseUInt32(
MaxValue
))
2414
MaxValue
= MinValue;
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCInstrInfo.cpp
568
int
MaxValue
= HexagonMCInstrInfo::getMaxValue(MCII, MCI);
569
return (MinValue > Value || Value >
MaxValue
);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp
2193
const APInt *MinValue, *
MaxValue
;
2194
if (match(&MinMax1, m_SMin(m_Instruction(MinMax2), m_APInt(
MaxValue
)))) {
2199
if (!match(MinMax2, m_SMin(m_BinOp(AddSub), m_APInt(
MaxValue
))))
2206
if (!(*
MaxValue
+ 1).isPowerOf2() || -*MinValue != *
MaxValue
+ 1)
2209
unsigned NewBitWidth = (*
MaxValue
+ 1).logBase2() + 1;
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp
2095
int
MaxValue
= getMaxValue(MI);
2098
return (ImmValue < MinValue || ImmValue >
MaxValue
);
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp
11837
unsigned
MaxValue
=
11839
Known.Zero.setHighBits(countLeadingZeros(
MaxValue
));
Completed in 52 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026