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

1 2 3 4 5 6 7

  /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/chromium_org/third_party/angle/src/libGLESv2/renderer/
copyvertex.h 118 template <bool isSigned, bool normalized, bool toFloat>
127 if (isSigned)
176 if (isSigned)
197 template <bool isSigned, bool normalized, bool toFloat>
203 if (isSigned)
256 if (isSigned)
283 template <bool isSigned, bool normalized, bool toFloat>
302 copyPackedRGB<isSigned, normalized, toFloat>( (packedValue >> redShift) & rgbMask, offsetOutput + (0 * outputComponentSize));
303 copyPackedRGB<isSigned, normalized, toFloat>( (packedValue >> greenShift) & rgbMask, offsetOutput + (1 * outputComponentSize));
304 copyPackedRGB<isSigned, normalized, toFloat>( (packedValue >> blueShift) & rgbMask, offsetOutput + (2 * outputCompone (…)
    [all...]
  /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
  /libcore/luni/src/main/java/java/util/jar/
StrictJarFile.java 51 private final boolean isSigned;
68 isSigned = verifier.readCertificates() && verifier.isSignedJar();
98 if (isSigned) {
117 if (isSigned) {
143 if (isSigned) {
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
mct.h 123 @param isSigned tells if the data is signed
131 OPJ_UINT32 isSigned);
mct.c 233 OPJ_UINT32 isSigned)
246 OPJ_ARG_NOT_USED(isSigned);
286 OPJ_UINT32 isSigned)
297 OPJ_ARG_NOT_USED(isSigned);
  /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 49 bool isSigned() const { return !IsUnsigned; }
56 APInt::toString(Str, Radix, isSigned());
61 return APInt::toString(Radix, isSigned());
263 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
274 if (I1.isSigned()) {
300 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)
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 102 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
104 unsigned NumOps, bool isSigned, SDLoc dl);
107 SDNode *Node, bool isSigned);
112 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
127 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
129 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
131 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...]
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);
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java     [all...]
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 174 bool isSigned) const {
177 return Fold(ConstantExpr::getIntegerCast(C, DestTy, isSigned));
  /prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.5.7/
builder-model-0.5.7.jar 
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 155 bool SelectIToFP(const Instruction *I, bool isSigned);
156 bool SelectFPToI(const Instruction *I, bool isSigned);
157 bool SelectDiv(const Instruction *I, bool isSigned);
158 bool SelectRem(const Instruction *I, bool isSigned);
    [all...]

Completed in 805 milliseconds

1 2 3 4 5 6 7