HomeSort by relevance Sort by last modified time
    Searched defs:Zero (Results 1 - 25 of 86) 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() {
127 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/chromium_org/third_party/libjingle/source/talk/base/
win32toolhelp.h 43 Zero(&current_);
70 Zero(&current_);
94 static void Zero(typename Traits::Type* buff) {
  /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;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 126 static const TropicalWeight Zero() { return TropicalWeight(kPosInfinity); }
192 static const LogWeight Zero() { return LogWeight(kPosInfinity); }
product-weight.h 39 static const ProductWeight<W1, W2> &Zero() {
40 static const ProductWeight<W1, W2> zero(W1::Zero(), W2::Zero());
41 return zero;
159 W1 w1 = W1::Zero();
163 W2 w2 = W2::Zero();
  /external/chromium_org/media/base/
audio_bus.cc 217 void AudioBus::Zero() {
267 // Zero any remaining frames.
332 Zero();

Completed in 973 milliseconds

1 2 3 4