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

1 2 3 4

  /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 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...]
  /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/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());
PackedVector.h 22 template <typename T, unsigned BitNum, bool isSigned>
APInt.h 178 void initSlowCase(unsigned numBits, uint64_t val, bool isSigned);
219 /// If isSigned is true then val is treated as if it were a signed value
225 /// @param isSigned how to treat signedness of val
227 APInt(unsigned numBits, uint64_t val, bool isSigned = false)
233 initSlowCase(numBits, val, isSigned);
    [all...]
  /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 116 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
118 unsigned NumOps, bool isSigned, DebugLoc dl);
121 SDNode *Node, bool isSigned);
125 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
139 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
141 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
143 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
    [all...]
LegalizeTypes.cpp     [all...]
  /external/llvm/include/llvm/
Constants.h 65 static Constant *get(Type *Ty, uint64_t V, bool isSigned = false);
69 /// to fit the type, unless isSigned is true, in which case the value will
74 bool isSigned = false);
182 bool isMaxValue(bool isSigned) const {
183 if (isSigned)
194 bool isMinValue(bool isSigned) const {
195 if (isSigned)
742 bool isSigned ///< Whether C should be treated as signed or not
    [all...]
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/llvm/lib/Transforms/InstCombine/
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...]
InstCombine.h 355 bool isSigned, bool Inside);
363 Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 178 if (V2.isSigned() && V2.isNegative())
196 if (V2.isSigned() && V2.isNegative())
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java     [all...]
  /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; }
  /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 210 bool isSigned) const {
211 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/CBackend/
CBackend.cpp 156 bool isSigned = false,
161 bool isSigned,
397 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
409 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str());
413 CWriter::printSimpleType(raw_ostream &Out, Type *Ty, bool isSigned,
424 return Out << (isSigned?"signed":"unsigned") << " char " << NameSoFar;
426 return Out << (isSigned?"signed":"unsigned") << " short " << NameSoFar;
428 return Out << (isSigned?"signed":"unsigned") << " int " << NameSoFar;
430 return Out << (isSigned?"signed":"unsigned") << " long long "<< NameSoFar;
433 return Out << (isSigned?"llvmInt128":"llvmUInt128") << " " << NameSoFar
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp     [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 174 /// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL).
176 StringRef ValSuffix, bool isSigned,
178 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
180 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);

Completed in 1093 milliseconds

1 2 3 4