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

1 2 3 4 5

  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 18 if (IsUnsigned && Value.isSigned() && Value.isNegative())
26 if (Value.isSigned())
34 if (Value.isSigned() && Value.isNegative())
BasicValueFactory.cpp 175 if (V2.isSigned() && V2.isNegative())
193 if (V2.isSigned() && V2.isNegative())
  /external/llvm/lib/Transforms/Utils/
CmpInstAnalysis.cpp 93 return (CmpInst::isSigned(p1) == CmpInst::isSigned(p2)) ||
94 (CmpInst::isSigned(p1) && ICmpInst::isEquality(p2)) ||
95 (CmpInst::isSigned(p2) && ICmpInst::isEquality(p1));
  /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/llvm/unittests/ADT/
APIntTest.cpp 377 bool isSigned;
395 isSigned = false;
396 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
399 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
402 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
405 APInt(8, 255, isSigned).toString(S, 16, isSigned, true)
    [all...]
  /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());
PackedVector.h 22 template <typename T, unsigned BitNum, bool isSigned>
  /tools/build/gradle/src/main/groovy/com/android/build/gradle/internal/
ProductionAppVariant.groovy 64 boolean isSigned() {
TestAppVariant.groovy 65 boolean isSigned() {
ApplicationVariant.groovy 66 abstract boolean isSigned()
  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 271 * @param isSigned
277 public void setSigned(int columnIndex, boolean isSigned)
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 96 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
98 unsigned NumOps, bool isSigned, DebugLoc dl);
101 SDNode *Node, bool isSigned);
105 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
119 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
121 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
123 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
    [all...]
LegalizeTypes.cpp     [all...]
  /bionic/linker/
linker_format.c 404 format_integer(char *buffer, size_t buffsize, uint64_t value, int base, int isSigned)
406 if (isSigned && (int64_t)value < 0) {
554 int isSigned = (c == 'd' || c == 'i' || c == 'o');
568 if (isSigned) {
576 format_integer(buffer, sizeof buffer, value, 10, isSigned);
579 format_integer(buffer, sizeof buffer, value, 8, isSigned);
  /dalvik/vm/compiler/codegen/x86/libenc/
encoder.h 231 Imm_Opnd(I_32 val, bool isSigned = true):
232 Opnd(isSigned ? SignedImm : UnsignedImm), value(val), size(size_32) {
233 if (isSigned) {
251 Imm_Opnd(Opnd_Size sz, int64 val, bool isSigned = true):
252 Opnd(isSigned ? SignedImm : UnsignedImm), value(val), size(sz) {
277 Imm_Opnd(Opnd_Size sz, I_32 val, int isSigned = true):
278 Opnd(isSigned ? SignedImm : UnsignedImm), value(val), size(sz) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 272 /// (V-Lo) <u Hi-Lo. This method expects that Lo <= Hi. isSigned indicates
276 bool isSigned, bool Inside) {
277 assert(cast<ConstantInt>(ConstantExpr::getICmp((isSigned ?
286 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
287 ICmpInst::Predicate pred = (isSigned ?
304 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
305 ICmpInst::Predicate pred = (isSigned ?
722 bool isSigned = LHS->isSigned() || RHS->isSigned();
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp     [all...]
  /external/llvm/include/llvm/
InstrTypes.h 485 bool isSigned, ///< Whether to regard S as signed or not
494 bool isSigned, ///< Whether to regard S as signed or not
    [all...]
Constants.h 69 static Constant *get(Type *Ty, uint64_t V, bool isSigned = false);
73 /// to fit the type, unless isSigned is true, in which case the value will
78 bool isSigned = false);
186 bool isMaxValue(bool isSigned) const {
187 if (isSigned)
198 bool isMinValue(bool isSigned) const {
199 if (isSigned)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java     [all...]
  /external/clang/lib/CodeGen/
CGRecordLayout.h 92 bool IsSigned : 1;
96 bool IsSigned) : Size(Size), NumComponents(NumComponents),
97 IsSigned(IsSigned) {
126 bool isSigned() const { return IsSigned; }
  /sdk/emulator/qtools/
opcode.h 148 inline bool isSigned(Opcode op) { return (opcode_flags[op] & kCatSigned) != 0; }
  /external/llvm/include/llvm/Support/
ConstantFolder.h 163 bool isSigned) const {
164 return ConstantExpr::getIntegerCast(C, DestTy, isSigned);
NoFolder.h 222 bool isSigned) const {
223 return CastInst::CreateIntegerCast(C, DestTy, isSigned);

Completed in 647 milliseconds

1 2 3 4 5