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

1 2 3

  /external/llvm/unittests/ADT/
APIntTest.cpp 385 bool isSigned;
403 isSigned = false;
404 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
407 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
410 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
413 APInt(8, 255, isSigned).toString(S, 16, isSigned, true)
    [all...]
  /libcore/luni/src/main/java/java/sql/
ParameterMetaData.java 188 public boolean isSigned(int paramIndex) throws SQLException;
ResultSetMetaData.java 269 public boolean isSigned(int column) throws SQLException;
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 184 public boolean isSigned(int column) throws java.sql.SQLException {
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCInst.cpp 151 unsigned isSigned = (F >> HexagonII::ExtentSignedPos)
156 if (isSigned) // if value is signed
166 unsigned isSigned = (F >> HexagonII::ExtentSignedPos)
171 if (isSigned) // if value is signed
  /external/llvm/include/llvm/ADT/
APSInt.h 55 bool isSigned() const { return !IsUnsigned; }
62 APInt::toString(Str, Radix, isSigned());
67 return APInt::toString(Radix, isSigned());
269 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
280 if (I1.isSigned()) {
306 I.print(OS, I.isSigned());
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 260 public final boolean isSigned() {
  /external/llvm/include/llvm/IR/
InstrTypes.h 482 bool isSigned, ///< Whether to regard S as signed or not
491 bool isSigned, ///< Whether to regard S as signed or not
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 967 static const bool isSigned = numeric_limits<IntegralType>::is_signed;
983 if (isSigned && length && *data == '-') {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 634 bool isSigned = true;
663 isSigned = false;
675 if (isSigned && Offset < 0)
  /external/smack/src/org/xbill/DNS/
Message.java 285 isSigned() {
573 if (isSigned()) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 742 bool isSigned = ShiftInst->isArithmeticShift();
783 maskVals.push_back(ConstantInt::get(scalarType, maskVal, isSigned));
784 shiftVals.push_back(ConstantInt::get(scalarType, shiftVal, isSigned));
809 newMaskConst = ConstantInt::get(aType, maskVal, isSigned);
810 shiftValConst = ConstantInt::get(aType, shiftVal, isSigned);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 715 bool isSigned = I.getOpcode() == Instruction::SDiv;
716 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
717 (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
    [all...]
InstCombineAndOrXor.cpp 268 /// (V-Lo) \<u Hi-Lo. This method expects that Lo <= Hi. isSigned indicates
272 bool isSigned, bool Inside) {
273 assert(cast<ConstantInt>(ConstantExpr::getICmp((isSigned ?
282 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
283 ICmpInst::Predicate pred = (isSigned ?
300 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
301 ICmpInst::Predicate pred = (isSigned ?
712 bool isSigned = LHS->isSigned() || RHS->isSigned();
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 742 bool isSigned = ShiftInst->isArithmeticShift();
783 maskVals.push_back(ConstantInt::get(scalarType, maskVal, isSigned));
784 shiftVals.push_back(ConstantInt::get(scalarType, shiftVal, isSigned));
809 newMaskConst = ConstantInt::get(aType, maskVal, isSigned);
810 shiftValConst = ConstantInt::get(aType, shiftVal, isSigned);
    [all...]
  /sdk/emulator/qtools/
opcode.h 148 inline bool isSigned(Opcode op) { return (opcode_flags[op] & kCatSigned) != 0; }
  /external/clang/lib/AST/
ASTDumper.cpp     [all...]
StmtPrinter.cpp 786 bool isSigned = Node->getType()->isSignedIntegerType();
787 OS << Node->getValue().toString(10, isSigned);
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 585 bool isSigned
615 if (isSigned && count.isNegative())
665 // 1) if isSigned, we need to check whether numElements is negative;
693 } else if (isSigned) {
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 457 /// IsSigned - True if this is a sleb128, false if uleb128.
458 bool IsSigned;
464 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
471 bool isSigned() const { return IsSigned; }
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]

Completed in 3898 milliseconds

1 2 3