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 - 25
of
32
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp
128
bool CheckerContext::
isNegative
(const Expr *E) {
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 {
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; }
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
(); }
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
())
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
())
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
())
KnownBits.h
96
bool
isNegative
() const { return One.isSignBitSet(); }
243
if (
isNegative
())
/src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_value.h
189
bool
isNegative
() const {
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
(); }
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
...]
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 {
FileCheckImpl.h
131
return Value == Other.Value &&
isNegative
() == Other.
isNegative
();
139
bool
isNegative
() const {
Completed in 72 milliseconds
1
2
Indexes created Tue Feb 24 01:34:59 UTC 2026