OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isNegative
(Results
1 - 17
of
17
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp
128
bool CheckerContext::
isNegative
(const Expr *E) {
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_value.h
187
bool
isNegative
() const {
/src/external/apache2/llvm/dist/clang/include/clang/AST/
CharUnits.h
124
///
isNegative
- Test whether the quantity is less than zero.
125
bool
isNegative
() const { return Quantity < 0; }
/src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Boolean.h
71
constexpr static bool
isNegative
() { return false; }
72
constexpr static bool isPositive() { return !
isNegative
(); }
Integral.h
131
bool
isNegative
() const { return V < T(0); }
132
bool isPositive() const { return !
isNegative
(); }
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APSInt.h
48
bool
isNegative
() const { return isSigned() && APInt::
isNegative
(); }
53
bool isNonNegative() const { return !
isNegative
(); }
320
if (I1.
isNegative
())
324
if (I2.
isNegative
())
APInt.h
364
bool
isNegative
() const { return (*this)[BitWidth - 1]; }
369
bool isNonNegative() const { return !
isNegative
(); }
435
return !
isNegative
() && countTrailingOnesSlowCase() == BitWidth - 1;
451
return
isNegative
() && countTrailingZerosSlowCase() == BitWidth - 1;
1233
return (!isSingleWord() && getMinSignedBits() > 64) ?
isNegative
()
1303
return (!isSingleWord() && getMinSignedBits() > 64) ? !
isNegative
()
1689
return
isNegative
() ? countLeadingOnes() : countLeadingZeros();
1871
if (
isNegative
())
APFloat.h
340
bool
isNegative
() const { return sign; }
379
bool isPosZero() const { return isZero() && !
isNegative
(); }
380
bool isNegZero() const { return isZero() &&
isNegative
(); }
652
bool
isNegative
() const;
1090
if (
isNegative
())
1094
if (
isNegative
() != RHS.
isNegative
())
1217
bool
isNegative
() const { return getIEEE().
isNegative
(); }
1228
bool isPosZero() const { return isZero() && !
isNegative
(); }
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
KnownBits.h
96
bool
isNegative
() const { return One.isSignBitSet(); }
243
if (
isNegative
())
/src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_value.h
189
bool
isNegative
() const {
/src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_value.h
189
bool
isNegative
() const {
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Constants.h
187
bool
isNegative
() const { return Val.
isNegative
(); }
302
bool
isNegative
() const { return Val.
isNegative
(); }
/src/external/apache2/llvm/dist/llvm/lib/Support/
APFloat.cpp
256
bool
isNegative
;
266
isNegative
= (*p == '-');
291
if (
isNegative
)
2076
bool inputSign =
isNegative
();
2085
if (inputSign !=
isNegative
())
2460
if (isSigned && api.
isNegative
()) {
2824
bool
IsNegative
= str.front() == '-';
2825
if (
IsNegative
) {
2849
makeNaN(IsSignaling,
IsNegative
);
2875
makeNaN(IsSignaling,
IsNegative
, &Payload)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h
131
return Value == Other.Value &&
isNegative
() == Other.
isNegative
();
139
bool
isNegative
() const {
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h
1599
bool
isNegative
() const { return Value->
isNegative
(); }
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp
2634
bool
isNegative
= parseOptionalToken(AsmToken::Minus);
2646
if (Tok.getIntVal() > 255 ||
isNegative
) {
2664
if (
isNegative
)
3806
bool
isNegative
= false;
3808
isNegative
= true;
3826
else if (IntVal != 0 ||
isNegative
)
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp
856
unsigned
isNegative
: 1; // Negated OffsetReg? (~'U' bit)
1683
if (!isGPRMem() || !Memory.OffsetRegNum || Memory.
isNegative
||
1690
if (!isGPRMem() || !Memory.OffsetRegNum || Memory.
isNegative
||
1704
if (!isGPRMem() || !Memory.OffsetRegNum || Memory.
isNegative
||
1718
if (!isGPRMem() || !Memory.OffsetRegNum || Memory.
isNegative
||
2966
ARM_AM::getAM2Opc(Memory.
isNegative
? ARM_AM::sub : ARM_AM::add,
3019
ARM_AM::getAM3Opc(Memory.
isNegative
? ARM_AM::sub : ARM_AM::add, 0);
3208
ARM_AM::getAM2Opc(Memory.
isNegative
? ARM_AM::sub : ARM_AM::add,
3805
bool
isNegative
, SMLoc S, SMLoc E, SMLoc AlignmentLoc = SMLoc()) {
3813
Op->Memory.
isNegative
= isNegative
[
all
...]
Completed in 51 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026