HomeSort by relevance Sort by last modified time
    Searched refs:isSigned (Results 26 - 50 of 103) sorted by null

12 3 4 5

  /external/llvm/include/llvm/Support/
TargetFolder.h 174 bool isSigned) const {
177 return Fold(ConstantExpr::getIntegerCast(C, DestTy, isSigned));
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
APInt.cpp 76 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) {
79 if (isSigned && int64_t(val) < 0)
858 double APInt::roundToDouble(bool isSigned) const {
863 if (isSigned) {
871 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
886 if (!isSigned || !isNeg)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 163 bool SelectIToFP(const Instruction *I, bool isSigned);
164 bool SelectFPToI(const Instruction *I, bool isSigned);
165 bool SelectDiv(const Instruction *I, bool isSigned);
166 bool SelectRem(const Instruction *I, bool isSigned);
    [all...]
ARMBaseRegisterInfo.cpp     [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 180 void initSlowCase(unsigned numBits, uint64_t val, bool isSigned);
221 /// If isSigned is true then val is treated as if it were a signed value
227 /// @param isSigned how to treat signedness of val
229 APInt(unsigned numBits, uint64_t val, bool isSigned = false)
235 initSlowCase(numBits, val, isSigned);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 359 bool isSigned, bool Inside);
367 Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
InstCombineCasts.cpp 155 bool isSigned) {
157 C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
180 Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned);
181 Value *RHS = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
200 Value *True = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
201 Value *False = EvaluateInDifferentType(I->getOperand(2), Ty, isSigned);
209 Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
    [all...]
InstCombineCompares.cpp 46 bool IsSigned) {
47 if (!IsSigned)
58 Constant *In2, bool IsSigned = false) {
67 IsSigned))
75 IsSigned);
80 bool IsSigned) {
81 if (!IsSigned)
93 Constant *In2, bool IsSigned = false) {
102 IsSigned))
110 IsSigned);
    [all...]
InstCombineMulDivRem.cpp 409 bool isSigned = I.getOpcode() == Instruction::SDiv;
410 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
411 (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetMetaDataTest.java 656 assertFalse(rsmd.isSigned(1));
658 fail("ResultSetMetaDataTest.isSigned" + e1.getMessage());
665 rsmd.isSigned(0);
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 184 public boolean isSigned(int column) throws java.sql.SQLException {
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 260 public final boolean isSigned() {
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 492 /// computable, return CouldNotCompute. isSigned specifies whether the
495 const Loop *L, bool isSigned);
571 const SCEV *getConstant(Type *Ty, uint64_t V, bool isSigned = false);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 352 assert(BaseIdxI.isSigned());
SimpleSValBuilder.cpp 290 if (RHS.isSigned() && !SymbolType->isSignedIntegerOrEnumerationType())
408 if (LHSValue.isAllOnesValue() && LHSValue.isSigned())
864 if (x->isSigned())
    [all...]
SValBuilder.cpp 83 if (I.getBitWidth() == ArrayIndexWidth && I.isSigned())
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 155 /// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL).
157 StringRef ValSuffix, bool isSigned,
159 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
161 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 161 SDValue LibCallify(RTLIB::Libcall LC, SDNode *N, bool isSigned);
163 const SDValue *Ops, unsigned NumOps, bool isSigned,
167 SDNode *Node, bool isSigned);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/clang/lib/Lex/
PPExpressions.cpp 563 if (LHS.Val.isSigned())
575 if (Res.isSigned())
  /external/llvm/lib/MC/
MCAssembler.cpp 728 if (LF.isSigned())
927 OS << " Value:" << LF->getValue() << " Signed:" << LF->isSigned();
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 799 static const bool isSigned = numeric_limits<IntegralType>::is_signed;
815 if (isSigned && length && *data == '-') {
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 580 bool isSigned
610 if (isSigned && count.isNegative())
660 // 1) if isSigned, we need to check whether numElements is negative;
688 } else if (isSigned) {
    [all...]

Completed in 878 milliseconds

12 3 4 5