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

1 2

  /external/llvm/unittests/ADT/
APIntTest.cpp 343 bool isSigned;
361 isSigned = false;
362 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
365 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
368 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
371 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/clang/lib/CodeGen/
CGRecordLayout.h 97 bool IsSigned : 1;
101 bool IsSigned) : Size(Size), NumComponents(NumComponents),
102 IsSigned(IsSigned) {
131 bool isSigned() const { return IsSigned; }
CGExprConstant.cpp 632 bool isSigned = subExpr->getType()->isSignedIntegerOrEnumerationType();
633 return llvm::ConstantExpr::getIntegerCast(C, destType, isSigned);
637 bool isSigned = subExpr->getType()->isSignedIntegerOrEnumerationType();
638 C = llvm::ConstantExpr::getIntegerCast(C, CGM.IntPtrTy, isSigned);
    [all...]
CGExprCXX.cpp 541 bool isSigned
571 if (isSigned && count.isNegative())
616 // 1) if isSigned, we need to check whether numElements is negative;
642 } else if (isSigned) {
    [all...]
CGExprScalar.cpp     [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 184 public boolean isSigned(int column) throws java.sql.SQLException {
  /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());
259 I.print(OS, I.isSigned());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 413 bool isSigned = I.getOpcode() == Instruction::SDiv;
414 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
415 (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
InstCombineAndOrXor.cpp 186 return (CmpInst::isSigned(p1) == CmpInst::isSigned(p2)) ||
187 (CmpInst::isSigned(p1) && ICmpInst::isEquality(p2)) ||
188 (CmpInst::isSigned(p2) && ICmpInst::isEquality(p1));
335 /// (V-Lo) <u Hi-Lo. This method expects that Lo <= Hi. isSigned indicates
339 bool isSigned, bool Inside) {
340 assert(cast<ConstantInt>(ConstantExpr::getICmp((isSigned ?
349 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
350 ICmpInst::Predicate pred = (isSigned ?
367 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 260 public final boolean isSigned() {
  /bionic/linker/
linker_format.c 389 format_integer(char *buffer, size_t buffsize, uint64_t value, int base, int isSigned)
391 if (isSigned && (int64_t)value < 0) {
403 format_octal(char *buffer, size_t buffsize, uint64_t value, int isSigned)
405 format_integer(buffer, buffsize, value, 8, isSigned);
410 format_decimal(char *buffer, size_t buffsize, uint64_t value, int isSigned)
412 format_integer(buffer, buffsize, value, 10, isSigned);
553 int isSigned = (c == 'd' || c == 'i' || c == 'o');
567 if (isSigned) {
575 format_integer(buffer, sizeof buffer, value, 10, isSigned);
578 format_integer(buffer, sizeof buffer, value, 8, isSigned);
    [all...]
  /external/clang/lib/AST/
StmtDumper.cpp 434 bool isSigned = Node->getType()->isSignedIntegerType();
435 OS << " " << Node->getValue().toString(10, isSigned);
StmtPrinter.cpp 656 bool isSigned = Node->getType()->isSignedIntegerType();
657 OS << Node->getValue().toString(10, isSigned);
    [all...]
  /external/llvm/include/llvm/
InstrTypes.h 484 bool isSigned, ///< Whether to regard S as signed or not
493 bool isSigned, ///< Whether to regard S as signed or not
    [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/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp     [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 333 /// IsSigned - True if this is a sleb128, false if uleb128.
334 bool IsSigned;
340 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
347 bool isSigned() const { return IsSigned; }
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp     [all...]
LegalizeIntegerTypes.cpp     [all...]
  /sdk/emulator/qtools/
opcode.h 148 inline bool isSigned(Opcode op) { return (opcode_flags[op] & kCatSigned) != 0; }
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]

Completed in 885 milliseconds

1 2