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

1 2 3 4 5

  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 21 Value.isSigned() && Value.isNegative())
26 if (Value.isSigned() && !IsUnsigned)
36 if (Value.isSigned())
45 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/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/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...]
  /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, typename BitVectorTy, bool isSigned>
  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 271 * @param isSigned
277 public void setSigned(int columnIndex, boolean 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/CodeGen/SelectionDAG/
LegalizeDAG.cpp 101 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
103 unsigned NumOps, bool isSigned, SDLoc dl);
106 SDNode *Node, bool isSigned);
111 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
126 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
128 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
130 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
    [all...]
LegalizeTypes.cpp     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
  /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...]
Constants.h 70 static Constant *get(Type *Ty, uint64_t V, bool isSigned = false);
74 /// to fit the type, unless isSigned is true, in which case the value will
79 bool isSigned = false);
185 bool isMaxValue(bool isSigned) const {
186 if (isSigned)
197 bool isMinValue(bool isSigned) const {
198 if (isSigned)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java     [all...]
  /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);
TargetFolder.h 174 bool isSigned) const {
177 return Fold(ConstantExpr::getIntegerCast(C, DestTy, isSigned));
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 165 bool SelectIToFP(const Instruction *I, bool isSigned);
166 bool SelectFPToI(const Instruction *I, bool isSigned);
167 bool SelectDiv(const Instruction *I, bool isSigned);
168 bool SelectRem(const Instruction *I, bool isSigned);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
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/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java     [all...]

Completed in 5236 milliseconds

1 2 3 4 5