HomeSort by: relevance | last modified time | path
    Searched refs:Zero (Results 1 - 25 of 241) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
KnownBits.h 24 APInt Zero;
29 KnownBits(APInt Zero, APInt One)
30 : Zero(std::move(Zero)), One(std::move(One)) {}
33 // Default construct Zero and One.
37 KnownBits(unsigned BitWidth) : Zero(BitWidth, 0), One(BitWidth, 0) {}
41 assert(Zero.getBitWidth() == One.getBitWidth() &&
42 "Zero and One should have the same width!");
43 return Zero.getBitWidth();
47 bool hasConflict() const { return Zero.intersects(One);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
KnownBits.cpp 25 "Carry can't be zero and one at the same time");
31 APInt CarryKnownZero = ~(PossibleSumZero ^ LHS.Zero ^ RHS.Zero);
35 APInt LHSKnownUnion = LHS.Zero | LHS.One;
36 APInt RHSKnownUnion = RHS.Zero | RHS.One;
45 KnownOut.Zero = ~std::move(PossibleSumZero) & Known;
54 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue());
66 std::swap(RHS.Zero, RHS.One);
99 Result.Zero = Zero << ExtBits
    [all...]
CodeGenCoverage.cpp 97 uint64_t Zero = 0;
100 CoverageFile->os().write((const char *)&Zero, sizeof(unsigned char));
  /src/usr.bin/make/unit-tests/
directive-for-null.exp 1 make: (stdin):2: Zero byte read from file
opt-file.exp 4 make: (stdin):1: Zero byte read from file
  /src/external/gpl3/gcc/dist/contrib/
paranoia.cc 80 E5 MinSqEr O Zero V9
776 FLOAT zero = long(0);
782 if (f == zero)
783 return zero;
784 if (f < zero)
785 return zero / zero;
793 if (diff2 > zero)
831 FLOAT zero = long(0);
834 if (x <= zero)
    [all...]
  /src/external/gpl3/gcc.old/dist/contrib/
paranoia.cc 80 E5 MinSqEr O Zero V9
776 FLOAT zero = long(0);
782 if (f == zero)
783 return zero;
784 if (f < zero)
785 return zero / zero;
793 if (diff2 > zero)
831 FLOAT zero = long(0);
834 if (x <= zero)
    [all...]
  /src/lib/libm/src/
e_fmodf.c 30 static const float one = 1.0, Zero[] = {0.0, -0.0,};
49 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
82 return Zero[(u_int32_t)sx>>31];
91 return Zero[(u_int32_t)sx>>31];
s_remquof.c 24 static const float Zero[] = {0.0, -0.0,};
55 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
97 return Zero[(u_int32_t)sx>>31];
e_fmod.c 27 static const double one = 1.0, Zero[] = {0.0, -0.0,};
52 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
106 return Zero[(u_int32_t)sx>>31];
115 return Zero[(u_int32_t)sx>>31];
e_fmodl.c 60 static const long double one = 1.0, Zero[] = {0.0, -0.0,};
98 return Zero[sx]; /* |x|=|y| return x*0*/
132 return Zero[sx];
141 return Zero[sx];
s_remquo.c 26 static const double Zero[] = {0.0, -0.0,};
60 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
124 return Zero[(u_int32_t)sx>>31];
s_remquol.c 62 static const long double Zero[] = {0.0L, -0.0L};
109 return Zero[sx]; /* |x|=|y| return x*0*/
151 return Zero[sx];
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RangedConstraintManager.cpp 61 const llvm::APSInt &Zero = getBasicVals().getValue(0, DiffTy);
65 return assumeSymRel(State, Subtraction, Op, Zero);
78 const llvm::APSInt &Zero = getBasicVals().getValue(0, ExprType);
81 return assumeSymNE(State, CanonicalEquality, Zero, Zero);
84 return assumeSymEQ(State, CanonicalEquality, Zero, Zero);
132 const llvm::APSInt &Zero = BVF.getValue(0, T);
134 return assumeSymNE(State, Sym, Zero, Zero);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolutionDivision.cpp 68 *Remainder = D.Zero;
73 *Quotient = D.Zero;
74 *Remainder = D.Zero;
81 *Remainder = D.Zero;
96 *Quotient = D.Zero;
101 *Remainder = D.Zero;
206 Remainder = Zero;
219 RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] = Zero;
236 if (R != Zero)
244 Zero = SE.getZero(Denominator->getType())
    [all...]
DemandedBits.cpp 10 // contributes to a result; bits that are not demanded can be either zero or
161 // defined, so no need to special-case zero shifts here.
214 // (because we've promised that they *must* be zero).
231 // (they must be zero).
251 // (they must be zero).
260 // For bits that are known zero, the corresponding bits in the
261 // other operand are dead (unless they're both zero, in which
266 AB &= ~Known2.Zero;
268 AB &= ~(Known.Zero & ~Known2.Zero);
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Thunk.h 58 VirtualAdjustment Zero;
59 return Equals(Zero);
125 VirtualAdjustment Zero;
126 return Equals(Zero);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.asm/
s390x.inc 12 # Zero this frame's back chain pointer.
23 ### Exit with a zero status.
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.asm/
s390x.inc 12 # Zero this frame's back chain pointer.
23 ### Exit with a zero status.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
AMDGPUEmitPrintf.cpp 88 auto Zero = Builder.getInt64(0);
89 return callAppendArgs(Builder, Desc, 1, Arg0, Zero, Zero, Zero, Zero, Zero,
90 Zero, IsLast);
101 auto Zero = Builder.getInt64(0);
104 // The length is either zero for a null pointer, or the computed value for an
108 // Strictly speaking, the zero does not matter sinc
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 92 /// expression. Known.Zero contains all the bits that are known to be zero in
96 /// Known.One and Known.Zero always follow the invariant that:
97 /// Known.One & Known.Zero == 0.
99 /// Known.Zero may only be accurate for those bits set in DemandedMask. Note
100 /// also that the bitwidth of V, DemandedMask, Known.Zero and Known.One must all
162 // If either the LHS or the RHS are Zero, the result is zero.
164 SimplifyDemandedBits(I, 0, DemandedMask & ~RHSKnown.Zero, LHSKnown,
167 assert(!RHSKnown.hasConflict() && "Bits known to be one AND zero?")
    [all...]
  /src/external/gpl3/gcc/dist/libquadmath/math/
fmodq.c 23 static const __float128 one = 1.0, Zero[] = {0.0, -0.0,};
44 return Zero[(uint64_t)sx>>63]; /* |x|=|y| return x*0*/
98 return Zero[(uint64_t)sx>>63];
107 return Zero[(uint64_t)sx>>63];
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
fmodq.c 23 static const __float128 one = 1.0, Zero[] = {0.0, -0.0,};
44 return Zero[(uint64_t)sx>>63]; /* |x|=|y| return x*0*/
98 return Zero[(uint64_t)sx>>63];
107 return Zero[(uint64_t)sx>>63];
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
BoolAssignmentChecker.cpp 85 llvm::APSInt Zero = BVF.getValue(0, valTy);
89 std::tie(StIn, StOut) = CM.assumeInclusiveRangeDual(state, *NV, Zero, One);
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Pointer.cpp 86 Offset = CharUnits::Zero();
102 Offset = CharUnits::Zero();
105 Offset = CharUnits::Zero();

Completed in 58 milliseconds

1 2 3 4 5 6 7 8 910