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

  /bionic/libm/src/
e_fmod.c 27 static const double one = 1.0, Zero[] = {0.0, -0.0,};
48 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
102 return Zero[(u_int32_t)sx>>31];
111 return Zero[(u_int32_t)sx>>31];
e_fmodf.c 29 static const float one = 1.0, Zero[] = {0.0, -0.0,};
48 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
81 return Zero[(u_int32_t)sx>>31];
90 return Zero[(u_int32_t)sx>>31];
s_remquo.c 19 static const double Zero[] = {0.0, -0.0,};
53 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
116 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*/
92 return Zero[(u_int32_t)sx>>31];
  /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/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();
string-weight.h 83 static const StringWeight<L, S> &Zero() {
84 static const StringWeight<L, S> zero(kStringInfinity);
85 return zero;
339 w = StringWeight<L, S>::Zero();
359 // equality is required (for non-Zero() input. This restriction
364 if (w1 == StringWeight<L, S>::Zero())
366 if (w2 == StringWeight<L, S>::Zero())
381 if (w1 == StringWeight<L, STRING_LEFT>::Zero())
383 if (w2 == StringWeight<L, STRING_LEFT>::Zero())
400 if (w1 == StringWeight<L, STRING_RIGHT>::Zero())
    [all...]
  /external/libvpx/vp8/decoder/
decodemv.c 292 const MV Zero = { 0, 0};
388 *mv = Zero;
445 *mv = Zero;
502 mi->bmi[j].mv.as_mv = Zero;
  /external/webkit/JavaScriptCore/assembler/
MacroAssemblerARM.h 58 Zero = ARMAssembler::EQ,
427 ASSERT((cond == Zero) || (cond == NonZero));
434 ASSERT((cond == Zero) || (cond == NonZero));
472 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
479 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
496 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
508 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
521 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
528 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
535 ASSERT((cond == Signed) || (cond == Zero) || (cond == NonZero))
    [all...]
MacroAssemblerX86Common.h 58 Zero = X86Assembler::ConditionE,
485 // If the result is zero, it might have been -0.0, and the double comparison won't catch this!
486 failureCases.append(branchTest32(Zero, dest));
537 // Note: on 64-bit the Imm32 value is zero extended into the register, it
549 // useful to have separate move32 & movePtr, with move32 zero extending?
619 // jz and jnz test whether the first operand is equal to zero, and take
683 ASSERT((cond == Zero) || (cond == NonZero));
690 ASSERT((cond == Zero) || (cond == NonZero));
703 ASSERT((cond == Zero) || (cond == NonZero));
713 ASSERT((cond == Zero) || (cond == NonZero))
    [all...]
MacroAssemblerARMv7.h 93 Zero = ARMv7Assembler::ConditionEQ,
681 // jz and jnz test whether the first operand is equal to zero, and take
798 ASSERT((cond == Zero) || (cond == NonZero));
805 ASSERT((cond == Zero) || (cond == NonZero));
812 ASSERT((cond == Zero) || (cond == NonZero));
820 ASSERT((cond == Zero) || (cond == NonZero));
850 // * jz operations branch if the result is zero.
856 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
863 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
893 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero))
    [all...]
  /external/webkit/WebCore/inspector/front-end/
KeyboardShortcut.js 60 Zero: 48,

Completed in 56 milliseconds