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

1 2 3 4

  /external/chromium_org/net/quic/
quic_bandwidth.cc 16 QuicBandwidth QuicBandwidth::Zero() {
quic_time.cc 19 QuicTime::Delta QuicTime::Delta::Zero() {
88 QuicTime QuicTime::Zero() {
132 QuicWallTime QuicWallTime::Zero() {
  /external/chromium_org/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...]
  /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];
  /external/compiler-rt/test/ubsan/TestCases/Float/
cast-overflow.cpp 54 unsigned Zero = NearlyMinusOne; // ok
  /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/lib/tsan/rtl/
tsan_clock.cc 333 Zero();
336 void SyncClock::Zero() {
  /external/openfst/src/include/fst/
expectation-weight.h 21 // One: <One, Zero>
22 // Zero: <Zero, Zero>
64 ExpectationWeight() : PairWeight<X1, X2>(Zero()) { }
75 static const ExpectationWeight<X1, X2> &Zero() {
76 static const ExpectationWeight<X1, X2> zero(X1::Zero(), X2::Zero());
77 return zero;
    [all...]
lexicographic-weight.h 23 // (for all a,b,c != Zero(): Times(c, a) = Times(c, b) => a = b,
46 using PairWeight<W1, W2>::Zero;
75 static const LexicographicWeight<W1, W2> &Zero() {
76 static const LexicographicWeight<W1, W2> zero(PairWeight<W1, W2>::Zero());
77 return zero;
99 if (Value1() == W1::Zero() && Value2() == W2::Zero()) return true;
100 if (Value1() != W1::Zero() && Value2() != W2::Zero()) return true
    [all...]
product-weight.h 37 using PairWeight<W1, W2>::Zero;
52 static const ProductWeight<W1, W2> &Zero() {
53 static const ProductWeight<W1, W2> zero(PairWeight<W1, W2>::Zero());
54 return zero;
power-weight.h 41 using TupleWeight<W, n>::Zero;
56 static const PowerWeight<W, n> &Zero() {
57 static const PowerWeight<W, n> zero(TupleWeight<W, n>::Zero());
58 return zero;
150 W w = W::Zero();
  /external/chromium_org/third_party/webrtc/base/
win32toolhelp.h 49 Zero(&current_);
76 Zero(&current_);
100 static void Zero(typename Traits::Type* buff) {
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 108 llvm::Constant *Zero = llvm::ConstantInt::get(IntTy, 0);
109 llvm::Value *CSZero = CGF.Builder.CreateICmpEQ(CS.getInstruction(), Zero);
CGOpenMPRuntime.cpp 59 llvm::Constant *Zero = llvm::ConstantInt::get(CGM.Int32Ty, 0, true);
60 llvm::Constant *Values[] = {Zero,
62 Zero, Zero, DefaultOpenMPPSource};
  /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.
167 /// Align must be non-zero.
173 /// Given that this is a non-zero alignment value, what is the
  /external/clang/include/clang/Basic/
ABI.h 72 VirtualAdjustment Zero;
73 return Equals(Zero);
140 VirtualAdjustment Zero;
141 return Equals(Zero);
  /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);
215 "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).
166 APInt Zero;
230 Value *Zero;

Completed in 941 milliseconds

1 2 3 4