OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsZero
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark.cc
309
bool
IsZero
(double n) {
/src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark.cc
235
!
IsZero
(b.min_time) ? b.min_time : FLAGS_benchmark_min_time;
460
bool
IsZero
(double n) {
/src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_shadow.h
133
bool
IsZero
() const { return x_ == 0; }
/src/external/apache2/llvm/dist/llvm/include/llvm/MCA/
Instruction.h
252
bool
IsZero
;
260
IsZero
(false), IndependentFromDef(false) {}
282
bool isReadZero() const { return
IsZero
; }
283
void setReadZero() {
IsZero
= true; }
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.h
229
bool
IsZero
() const {
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp
991
auto
IsZero
= [] (const SDValue &V) -> bool {
996
auto IsSelect0 = [
IsZero
] (const SDValue &Op) -> bool {
999
return
IsZero
(Op.getOperand(1)) ||
IsZero
(Op.getOperand(2));
1013
if (
IsZero
(SY)) {
1017
} else if (
IsZero
(SX)) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp
192
bool IsAPow2 = (ACst && !ACst->
isZero
() && ACst->getValue().isPowerOf2());
193
bool IsBPow2 = (BCst && !BCst->
isZero
() && BCst->getValue().isPowerOf2());
195
if (CCst && CCst->
isZero
()) {
488
if (ECst->
isZero
()) {
704
(Pred0 == ICmpInst::ICMP_SGE && RangeStart->
isZero
())))
797
// Fold (
iszero
(A & K1) |
iszero
(A & K2)) -> (A & (K1 | K2)) != (K1 | K2)
798
// Fold (!
iszero
(A & K1) & !
iszero
(A & K2)) -> (A & (K1 | K2)) == (K1 | K2)
1210
// Fold (!
iszero
(A & K1) & !iszero(A & K2)) -> (A & (K1 | K2)) == (K1 | K2
[
all
...]
InstCombineCompares.cpp
126
!cast<ConstantInt>(GEP->getOperand(1))->
isZero
() ||
216
bool IsTrueForElt = !cast<ConstantInt>(C)->
isZero
();
401
if (CI->
isZero
()) continue;
431
if (CI->
isZero
()) continue;
661
if (isa<ConstantInt>(Op) && cast<ConstantInt>(Op)->
isZero
())
3136
bool
IsZero
= C.isNullValue();
3137
if (
IsZero
|| C == BitWidth)
3139
IsZero
? Constant::getNullValue(Ty) : Constant::getAllOnesValue(Ty));
3294
else if (CI && !CI->
isZero
())
5098
if (Op1Known.
isZero
()) {
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
MicrosoftCXXABI.cpp
245
if (ML.VBase || !ML.VFPtrOffset.
isZero
())
1427
if (Adjustment.
isZero
())
1473
if (!StaticOffset.
isZero
()) {
1539
if (!Adjustment.
isZero
()) {
1701
if (!Offset.
isZero
())
1707
if (Info.FullOffsetInMDC.
isZero
())
2939
llvm::Value *
IsZero
= Builder.CreateICmp(Eq, L0, Zero, "memptr.cmp.
iszero
");
2940
Res = Builder.CreateBinOp(Or, Res,
IsZero
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp
4485
auto
IsZero
= MIRBuilder.buildICmp(ICmpInst::ICMP_EQ, CondTy, Amt, Zero);
4503
HalfTy,
IsZero
, InH, MIRBuilder.buildSelect(HalfTy, IsShort, HiS, HiL));
4530
HalfTy,
IsZero
, InL, MIRBuilder.buildSelect(HalfTy, IsShort, LoS, LoL));
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp
4974
bool
IsZero
= isNullOrNullSplat(LR);
4978
bool AndEqZero = IsAnd && CC1 == ISD::SETEQ &&
IsZero
;
4982
bool OrNeZero = !IsAnd && CC1 == ISD::SETNE &&
IsZero
;
4984
bool OrLtZero = !IsAnd && CC1 == ISD::SETLT &&
IsZero
;
4999
bool AndLtZero = IsAnd && CC1 == ISD::SETLT &&
IsZero
;
13453
if (N1C && N1C->
isZero
())
13659
if (N1CFP && N1CFP->
isZero
()) {
13673
if (N0CFP && N0CFP->
isZero
()) {
13889
if (N0CFP && N0CFP->
isZero
())
13891
if (N1CFP && N1CFP->
isZero
())
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
2218
return (CINT && CINT->isNullValue()) || (CFP && CFP->
isZero
());
7137
if (RHSVal && RHSVal->
isZero
()) {
7142
CTVal && CTVal->
isZero
() && TVal.getValueType() == LHS.getValueType())
7145
CFVal && CFVal->
isZero
() &&
10424
bool
IsZero
= IsCnst && (CnstBits == 0);
10432
if (
IsZero
)
10439
if (
IsZero
)
10443
if (
IsZero
)
10447
if (
IsZero
)
10451
if (
IsZero
)
[
all
...]
Completed in 73 milliseconds
Indexes created Wed Mar 25 00:23:37 UTC 2026