HomeSort by relevance Sort by last modified time
    Searched defs:Zero (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/llvm/lib/Fuzzer/test/
SimpleDictionaryTest.cpp 11 static volatile int Zero = 0;
18 if (Expected[i] + Zero == Data[i])
  /external/llvm/lib/Transforms/Scalar/
BDCE.cpp 75 // FIXME: In theory we could substitute undef here instead of zero.
78 Value *Zero = ConstantInt::get(I.getType(), 0);
80 I.replaceAllUsesWith(Zero);
  /external/v8/test/webkit/
comparison-operators.js 62 var Zero = 0;
90 doTest('Zero', '1', -1);
91 doTest('Zero', '0', 0);
92 doTest('1', 'Zero', 1);
comparison-operators-greater.js 62 var Zero = 0;
80 doTest('Zero', 'letter0', 0);
82 doTest('Zero', '"0"', 0);
100 doTest('Zero', '1', -1);
101 doTest('Zero', '0', 0);
102 doTest('1', 'Zero', 1);
142 var zero = 0; variable
149 shouldBeTrue("zero >= zero");
150 shouldBeTrue("1 >= zero");
    [all...]
comparison-operators-less.js 61 var Zero = 0;
87 doTest('Zero', 'letter0', 0);
89 doTest('Zero', '"0"', 0);
98 doTest('Zero', '1', -1);
99 doTest('Zero', '0', 0);
100 doTest('1', 'Zero', 1);
140 var zero = 0; variable
147 shouldBeTrue("zero <= zero");
148 shouldBeTrue("zero <= 1")
    [all...]
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared_no_variadics.pass.cpp 25 struct Zero
28 Zero() {++count;}
29 Zero(Zero const &) {++count;}
30 ~Zero() {--count;}
33 int Zero::count = 0;
74 std::shared_ptr<Zero> p = std::allocate_shared<Zero>(Alloc());
75 assert(Zero::count == 1);
77 assert(Zero::count == 0)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_fmod.c 26 static const double one = 1.0, Zero[] = {0.0, -0.0,};
47 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
101 return Zero[(u_int32_t)sx>>31];
110 return Zero[(u_int32_t)sx>>31];
e_fmodf.c 28 static const float one = 1.0, Zero[] = {0.0, -0.0,};
47 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
80 return Zero[(u_int32_t)sx>>31];
89 return Zero[(u_int32_t)sx>>31];
s_remquo.c 21 static const double Zero[] = {0.0, -0.0,};
55 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
119 return Zero[(u_int32_t)sx>>31];
s_remquof.c 19 static const float Zero[] = {0.0, -0.0,};
50 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
93 return Zero[(u_int32_t)sx>>31];
e_fmodl.c 52 static const long double one = 1.0, Zero[] = {0.0, -0.0,};
91 return Zero[sx]; /* |x|=|y| return x*0*/
125 return Zero[sx];
134 return Zero[sx];
s_remquol.c 52 static const long double Zero[] = {0.0L, -0.0L};
100 return Zero[sx]; /* |x|=|y| return x*0*/
143 return Zero[sx];
  /device/google/contexthub/lib/libm/
ef_fmod.c 25 static const float one = 1.0, Zero[] = {0.0, -0.0,};
27 static float one = 1.0, Zero[] = {0.0, -0.0,};
52 return Zero[(__uint32_t)sx>>31]; /* |x|=|y| return x*0*/
54 /* Note: y cannot be zero if we reach here. */
87 return Zero[(__uint32_t)sx>>31];
96 return Zero[(__uint32_t)sx>>31];
106 zero representation. */
  /external/fdlibm/
e_fmod.c 23 static const double one = 1.0, Zero[] = {0.0, -0.0,};
25 static double one = 1.0, Zero[] = {0.0, -0.0,};
53 return Zero[(unsigned)sx>>31]; /* |x|=|y| return x*0*/
107 return Zero[(unsigned)sx>>31];
116 return Zero[(unsigned)sx>>31];
  /external/compiler-rt/test/ubsan/TestCases/Float/
cast-overflow.cpp 60 unsigned Zero = NearlyMinusOne; // ok
  /external/gptfdisk/
guid.cc 34 Zero();
79 Zero();
129 void GUIDData::Zero(void) {
131 } // GUIDData::Zero()
  /external/clang/include/clang/Basic/
ABI.h 76 VirtualAdjustment Zero;
77 return Equals(Zero);
144 VirtualAdjustment Zero;
145 return Equals(Zero);
  /external/clang/lib/StaticAnalyzer/Checkers/
VLASizeChecker.cpp 11 // performs checks for declaration of VLA of undefined or zero size.
65 os << "has zero size";
116 // Check if the size is zero.
127 // From this point on, assume that the size is not zero.
138 DefinedOrUnknownSVal Zero = svalBuilder.makeZeroVal(Ty);
140 SVal LessThanZeroVal = svalBuilder.evalBinOp(state, BO_LT, sizeD, Zero, Ty);
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 107 const llvm::APSInt &zero = BVF.getValue(0, T); local
109 return assumeSymNE(State, Sym, zero, zero);
111 return assumeSymEQ(State, Sym, zero, zero);
169 const llvm::APSInt &Zero = getBasicVals().getValue(0, DiffTy);
173 return assumeSymRel(state, Subtraction, Op, Zero);
251 "Non-comparison ops should be rewritten as comparisons to zero.");
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 53 /// allocates zero-filled memory (such as calloc).
157 APInt Zero;
221 Value *Zero;
  /external/llvm/lib/Target/PowerPC/
PPCBoolRetToInt.cpp 85 Value *Zero = Constant::getNullValue(Int32Ty);
89 Q->addIncoming(Zero, P->getIncomingBlock(i));
222 // zero in the translate function.
  /external/llvm/unittests/ADT/
APIntTest.cpp 21 APInt Zero = APInt();
22 EXPECT_TRUE(!Zero);
23 EXPECT_TRUE(!Zero.zext(64));
24 EXPECT_TRUE(!Zero.sext(64));
102 APInt zero(128, 0, true);
103 EXPECT_EQ(128u, zero.countLeadingZeros());
104 EXPECT_EQ(0u, zero.countLeadingOnes());
105 EXPECT_EQ(0u, zero.getActiveBits());
106 EXPECT_EQ(128u, zero.countTrailingZeros());
107 EXPECT_EQ(0u, zero.countTrailingOnes())
    [all...]
  /external/avahi/avahi-sharp/
ServiceBrowser.cs 46 public static ServiceInfo Zero = new ServiceInfo ();
150 if (client.Handle == IntPtr.Zero || handle != IntPtr.Zero ||
157 flags, cb, IntPtr.Zero);
159 if (handle == IntPtr.Zero)
166 if (client.Handle != IntPtr.Zero && handle != IntPtr.Zero &&
171 handle = IntPtr.Zero;
  /external/clang/include/clang/AST/
CharUnits.h 52 /// Zero - Construct a CharUnits quantity of zero.
53 static CharUnits Zero() {
115 /// isZero - Test whether the quantity equals zero.
121 /// isPositive - Test whether the quantity is greater than zero.
124 /// isNegative - Test whether the quantity is less than zero.
128 /// Zero is not a power of two.
175 /// Align must be non-zero.
181 /// Given that this is a non-zero alignment value, what is the
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 146 llvm::Constant *Zero = llvm::ConstantInt::get(IntTy, 0);
147 llvm::Value *CSZero = CGF.Builder.CreateICmpEQ(CS.getInstruction(), Zero);

Completed in 528 milliseconds

1 2 3 4