Searched defs:isSigned (Results 1 - 25 of 74) sorted by relevance

123

/external/opencv3/3rdparty/openexr/Imath/
H A DImathHalfLimits.h60 static bool isSigned() {return true;} function in struct:Imath::limits
H A DImathLimits.h83 // isSigned() returns true if T is signed
124 static bool isSigned();
140 static bool isSigned() {return (char) ~0 < 0;} function in struct:Imath::limits
151 static bool isSigned() {return true;} function in struct:Imath::limits
162 static bool isSigned() {return false;} function in struct:Imath::limits
173 static bool isSigned() {return true;} function in struct:Imath::limits
184 static bool isSigned() {return false;} function in struct:Imath::limits
195 static bool isSigned() {return true;} function in struct:Imath::limits
206 static bool isSigned() {return false;} function in struct:Imath::limits
217 static bool isSigned() {retur function in struct:Imath::limits
228 static bool isSigned() {return false;} function in struct:Imath::limits
239 static bool isSigned() {return true;} function in struct:Imath::limits
250 static bool isSigned() {return true;} function in struct:Imath::limits
261 static bool isSigned() {return true;} function in struct:Imath::limits
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
H A DOCSPReq.java162 if (!this.isSigned())
172 if (!this.isSigned())
214 public boolean isSigned() method in class:OCSPReq
226 if (!this.isSigned())
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSetMetaData.java184 public boolean isSigned(int column) throws java.sql.SQLException { method in class:JDBCResultSetMetaData
/external/deqp/modules/gles31/functional/
H A Des31fTextureBorderClampTests.cpp352 int getNBitIntegerMaxValue (bool isSigned, int numBits) argument
358 else if (isSigned)
364 int getNBitIntegerMinValue (bool isSigned, int numBits)
370 else if (isSigned)
376 tcu::IVec4 getNBitIntegerVec4MaxValue (bool isSigned, const tcu::IVec4& numBits)
378 return tcu::IVec4(getNBitIntegerMaxValue(isSigned, numBits[0]),
379 getNBitIntegerMaxValue(isSigned, numBits[1]),
380 getNBitIntegerMaxValue(isSigned, numBits[2]),
381 getNBitIntegerMaxValue(isSigned, numBits[3]));
384 tcu::IVec4 getNBitIntegerVec4MinValue (bool isSigned, cons
[all...]
H A Des31fShaderIntegerFunctionTests.cpp376 const bool isSigned = glu::isDataTypeIntOrIVec(type); local
407 if (isSigned)
472 const bool isSigned = glu::isDataTypeIntOrIVec(type); local
501 if (isSigned)
765 const bool isSigned = glu::isDataTypeIntOrIVec(type); local
776 const deUint32 ref = baseVal | ((isSigned && (baseVal & (1<<(bits-1)))) ? ~valMask : 0u);
1078 const bool isSigned = glu::isDataTypeIntOrIVec(type); local
1086 const int minRef = isSigned ? findMSB(toPrecision(deInt32(value), integerLength)) : findMSB(toPrecision(value, integerLength));
1087 const int maxRef = isSigned ? findMSB(deInt32(value)) : findMSB(value);
H A Des31fTextureGatherTests.cpp151 const bool isSigned = isSIntFormatType(colorBufferFormat.type); local
153 (isSigned) ? (tcu::TextureFormat::SIGNED_INT32) : (tcu::TextureFormat::UNSIGNED_INT32)),
/external/llvm/unittests/ADT/
H A DAPIntTest.cpp661 bool isSigned; local
679 isSigned = false;
680 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
683 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
686 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
689 APInt(8, 255, isSigned).toString(S, 16, isSigned, tru
[all...]
/external/lzma/CPP/Windows/Control/
H A DDialog.h54 bool SetItemInt(int itemID, UINT value, bool isSigned) argument
55 { return BOOLToBool(SetDlgItemInt(_window, itemID, value, BoolToBOOL(isSigned))); }
56 bool GetItemInt(int itemID, bool isSigned, UINT &value) argument
59 value = GetDlgItemInt(_window, itemID, &result, BoolToBOOL(isSigned));
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp183 /// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL).
185 StringRef ValSuffix, bool isSigned,
187 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
189 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);
184 DefineTypeSize(const Twine &MacroName, unsigned TypeWidth, StringRef ValSuffix, bool isSigned, MacroBuilder &Builder) argument
/external/llvm/include/llvm/ADT/
H A DAPSInt.h59 bool isSigned() const { return !IsUnsigned; } function in class:llvm::APSInt
66 APInt::toString(Str, Radix, isSigned());
71 return APInt::toString(Radix, isSigned());
78 return isSigned() ? getSExtValue() : getZExtValue();
296 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
307 if (I1.isSigned()) {
308 assert(!I2.isSigned() && "Expected signed mismatch");
312 assert(I2.isSigned() && "Expected signed mismatch");
336 I.print(OS, I.isSigned());
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h226 bool isSigned() { return IsSigned; } function in class:llvm::RecurrenceDescriptor
/external/llvm/lib/Support/
H A DAPInt.cpp77 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) { argument
80 if (isSigned && int64_t(val) < 0)
871 double APInt::roundToDouble(bool isSigned) const {
876 if (isSigned) {
884 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
899 if (!isSigned || !isNeg)
2279 void APInt::print(raw_ostream &OS, bool isSigned) const {
2281 this->toString(S, 10, isSigned, /* formatAsCLiteral = */false);
/external/pdfium/third_party/libopenjpeg20/
H A Dmct.c444 OPJ_UINT32 isSigned)
457 OPJ_ARG_NOT_USED(isSigned);
497 OPJ_UINT32 isSigned)
508 OPJ_ARG_NOT_USED(isSigned);
439 opj_mct_encode_custom( OPJ_BYTE * pCodingdata, OPJ_UINT32 n, OPJ_BYTE ** pData, OPJ_UINT32 pNbComp, OPJ_UINT32 isSigned) argument
492 opj_mct_decode_custom( OPJ_BYTE * pDecodingData, OPJ_UINT32 n, OPJ_BYTE ** pData, OPJ_UINT32 pNbComp, OPJ_UINT32 isSigned) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp1061 bool isSigned) {
1065 return TLI.makeLibCall(DAG, LC, N->getValueType(0), None, isSigned,
1069 return TLI.makeLibCall(DAG, LC, N->getValueType(0), Op, isSigned,
1073 return TLI.makeLibCall(DAG, LC, N->getValueType(0), Ops, isSigned,
1080 return TLI.makeLibCall(DAG, LC, N->getValueType(0), Ops, isSigned, dl).first;
1088 bool isSigned) {
1098 Entry.isSExt = isSigned;
1099 Entry.isZExt = !isSigned;
1110 .setSExtResult(isSigned).setZExtResult(!isSigned);
1060 LibCallify(RTLIB::Libcall LC, SDNode *N, bool isSigned) argument
1086 ExpandChainLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned) argument
[all...]
H A DLegalizeVectorOps.cpp125 SDValue PromoteFP_TO_INT(SDValue Op, bool isSigned);
468 SDValue VectorLegalizer::PromoteFP_TO_INT(SDValue Op, bool isSigned) { argument
482 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewVT)) {
/external/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp627 bool isSigned = true; local
656 isSigned = false;
668 if (isSigned && Offset < 0)
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderIntegerFunctionTests.cpp479 const bool isSigned = glu::isDataTypeIntOrIVec(type); local
510 if (isSigned)
590 const bool isSigned = glu::isDataTypeIntOrIVec(type); local
619 if (isSigned)
928 const bool isSigned = glu::isDataTypeIntOrIVec(type); local
939 const deUint32 ref = baseVal | ((isSigned && (baseVal & (1<<(bits-1)))) ? ~valMask : 0u);
1268 const bool isSigned = glu::isDataTypeIntOrIVec(type); local
1276 const int minRef = isSigned ? findMSB(toPrecision(deInt32(value), integerLength)) : findMSB(toPrecision(value, integerLength));
1277 const int maxRef = isSigned ? findMSB(deInt32(value)) : findMSB(value);
/external/llvm/lib/IR/
H A DConstantFold.cpp1419 bool isSigned) {
1435 pred = isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1439 pred = isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1450 evaluateICmpRelation(V2, V1, isSigned);
1457 evaluateICmpRelation(V2, V1, isSigned);
1480 evaluateICmpRelation(V2, V1, isSigned);
1524 if (CE1->getOpcode() == Instruction::ZExt) isSigned = false;
1525 if (CE1->getOpcode() == Instruction::SExt) isSigned = true;
1528 isSigned);
1543 return isSigned
1418 evaluateICmpRelation(Constant *V1, Constant *V2, bool isSigned) argument
[all...]
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.cpp228 unsigned isSigned = local
232 if (isSigned) // if value is signed
243 unsigned isSigned = local
247 if (isSigned) // if value is signed
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp885 bool isSigned = I.getOpcode() == Instruction::SDiv; local
886 if (isSigned) {
909 bool isSigned = I.getOpcode() == Instruction::SDiv; local
910 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
911 (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp742 bool isSigned = ShiftInst->isArithmeticShift(); local
783 maskVals.push_back(ConstantInt::get(scalarType, maskVal, isSigned));
784 shiftVals.push_back(ConstantInt::get(scalarType, shiftVal, isSigned));
809 newMaskConst = ConstantInt::get(aType, maskVal, isSigned);
810 shiftValConst = ConstantInt::get(aType, shiftVal, isSigned);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DTextFormat.java1898 final boolean isSigned,
1905 if (!isSigned) {
1934 if (isSigned) {
1954 if (isSigned) {
1966 if (isSigned) {
1897 parseInteger(final String text, final boolean isSigned, final boolean isLong) argument
/external/llvm/include/llvm/IR/
H A DInstrTypes.h710 bool isSigned, ///< Whether to regard S as signed or not
719 bool isSigned, ///< Whether to regard S as signed or not
1026 bool isSigned() const { function in class:llvm::CmpInst
1027 return isSigned(getPredicate());
1067 static bool isSigned(Predicate predicate);
/external/llvm/include/llvm/MC/
H A DMCAssembler.h419 bool isSigned() const { return IsSigned; } function in class:llvm::MCLEBFragment

Completed in 708 milliseconds

123