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

1 2 3

  /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/llvm/unittests/VMCore/
ConstantsTest.cpp 21 Constant* Zero = ConstantInt::get(Int1, 0);
28 EXPECT_EQ(Zero, ConstantExpr::getAdd(One, One));
32 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One));
36 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, NegOne));
40 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One));
44 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne));
48 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One));
56 EXPECT_EQ(One, ConstantExpr::getShl(One, Zero));
88 EXPECT_EQ(Zero, ConstantExpr::getSRem(NegOne, One));
92 EXPECT_EQ(Zero, ConstantExpr::getURem(NegOne, One))
    [all...]
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 109 llvm::Constant *Zero = llvm::ConstantInt::get(IntTy, 0);
110 llvm::Value *CSZero = CGF.Builder.CreateICmpEQ(CS.getInstruction(), Zero);
CGDecl.cpp 504 // zero-initialized. If the variable might be accessed in its
505 // initializer, zero-initialize before running the initializer, then
524 llvm::Value *zero = llvm::ConstantPointerNull::get(ty); local
528 EmitARCInitWeak(tempLV.getAddress(), zero);
532 EmitStoreOfScalar(zero, tempLV);
618 /// non-zero parts of the specified initializer with equal or fewer than
622 // Zero and Undef never requires any extra stores.
651 // Zero doesn't require any stores.
689 // If a non-zero global is <= 32 bytes, always use a memcpy. If it is large,
774 // to this variable. Set it to zero to indicate that NRVO was no
1297 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, arrayDepth+1); local
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
OptimalEdgeProfiling.cpp 123 Constant *Zero = ConstantInt::get(Int32, 0);
146 // (IncrementCounterInBlock()) and set the counter initially to zero, if
154 Initializer[i++] = (Zero);
177 Initializer[i++] = (Zero);
205 Initializer[i++] = (Zero);
  /external/clang/include/clang/AST/
CharUnits.h 53 /// Zero - Construct a CharUnits quantity of zero.
54 static CharUnits Zero() {
116 /// isZero - Test whether the quantity equals zero.
122 /// isPositive - Test whether the quantity is greater than zero.
125 /// isNegative - Test whether the quantity is less than zero.
129 /// Zero is not a power of two.
168 /// Align. Align must be non-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();
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/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerSH4.cpp 44 const Condition MacroAssemblerSH4::Zero = SH4Assembler::EQ;
MacroAssemblerX86Common.h 57 Zero = X86Assembler::ConditionE,
652 // If the result is zero, it might have been -0.0, and the double comparison won't catch this!
653 failureCases.append(branchTest32(Zero, dest));
711 // Note: on 64-bit the TrustedImm32 value is zero extended into the register, it
723 // useful to have separate move32 & movePtr, with move32 zero extending?
793 // jz and jnz test whether the first operand is equal to zero, and take
863 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
870 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
883 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
893 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed))
    [all...]
  /external/libvpx/vp8/decoder/
decodemv.c 286 const MV Zero = { 0, 0};
383 *mv = Zero;
440 *mv = Zero;
497 mi->bmi[j].mv.as_mv = Zero;
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 304 SDValue Zero = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
305 Mips::ZERO, MVT::i32);
306 return CurDAG->getMachineNode(Mips::BuildPairF64, dl, MVT::f64, Zero,
307 Zero);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 73 // If alloca'ing a zero byte object, replace the alloca with a null pointer.
75 // and return a unique pointer, even for a zero byte allocation.
280 Constant *Zero = Constant::getNullValue(Type::getInt32Ty(SI.getContext()));
281 NewGEPIndices.push_back(Zero);
287 NewGEPIndices.push_back(Zero);
290 NewGEPIndices.push_back(Zero);
InstCombineSimplifyDemanded.cpp 87 /// to be zero in the expression. These are provided to potentially allow the
158 // If either the LHS or the RHS are Zero, the result is zero.
174 // If all of the demanded bits in the inputs are known zeros, return zero.
188 // If all of the demanded bits are known zero on one side, return the
225 // If either the LHS or the RHS are Zero, the result is zero.
231 assert(!(RHSKnownZero & RHSKnownOne) && "Bits known to be one AND zero?");
232 assert(!(LHSKnownZero & LHSKnownOne) && "Bits known to be one AND zero?");
243 // If all of the demanded bits in the inputs are known zeros, return zero
    [all...]
  /external/llvm/lib/CodeGen/
RenderMachineFunction.h 261 typedef enum { Zero, Low, High } PressureState;
SjLjEHPrepare.cpp 514 Value *Zero = ConstantInt::get(Int32Ty, 0);
516 Idxs[0] = Zero;
530 Idxs[1] = Zero;
564 // branch to a dispatch block for non-zero returns. If we return normally,
596 Idxs[0] = Zero;
650 // check the return value of the setjmp. non-zero goes to dispatcher.
652 ICmpInst::ICMP_EQ, DispatchVal, Zero,
731 Value *Zero = ConstantInt::get(Int32Ty, 0);
735 Idxs[0] = Zero;
746 Idxs[1] = Zero;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 461 SDValue Zero = DAG.getConstantFP(-0.0, Op.getValueType());
463 Zero, Op.getOperand(0));
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 169 /// zero extension from a 12-bit value. If so, this returns true and the
247 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
248 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
252 if (Zero.getNode()->getNodeId() == -1 ||
253 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
254 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
255 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
302 // Check to see if the LHS & C is zero.
723 // Zero out even subreg
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 125 Constant *Zero = Constant::getNullValue(DstEltTy);
131 Constant *Elt = Zero;
138 // Zero extend the element to the right size.
244 // If this element is zero or undefined, we can just return since *CurPtr is
245 // zero initialized.
482 // is all undef or zero, we know what it loads.
673 // The element size is 0. This may be [0 x Ty]*, so just use a zero
678 // The element size is non-zero divide the offset by the element
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 769 // If we are doing an AND and testing against zero, then the CMP
833 SDValue Zero = DAG.getConstant(0, VT);
    [all...]

Completed in 1513 milliseconds

1 2 3