Searched refs:isSigned (Results 1 - 25 of 56) sorted by relevance

123

/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp93 return (CmpInst::isSigned(p1) == CmpInst::isSigned(p2)) ||
94 (CmpInst::isSigned(p1) && ICmpInst::isEquality(p2)) ||
95 (CmpInst::isSigned(p2) && ICmpInst::isEquality(p1));
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A Dxar++.h51 bool isSigned() const { return mSigClassic != 0 || mSigCMS != 0; } function in class:Security::CodeSigning::Xar
H A DCodeSigner.cpp135 if (code->isSigned() && (flags & kSecCSSignPreserveSignature))
H A DStaticCode.h116 bool isSigned() { return codeDirectory(false) != NULL; } function in class:Security::CodeSigning::SecStaticCode
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A Dxar++.h51 bool isSigned() const { return mSigClassic != 0 || mSigCMS != 0; } function in class:Security::CodeSigning::Xar
H A DCodeSigner.cpp135 if (code->isSigned() && (flags & kSecCSSignPreserveSignature))
H A DStaticCode.h116 bool isSigned() { return codeDirectory(false) != NULL; } function in class:Security::CodeSigning::SecStaticCode
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/IOHIDDescriptorParser/
H A DHIDInitReport.c128 Boolean isSigned; local
158 isSigned = (ptReportItem->globals.logicalMinimum < 0) ||
162 if (isSigned)
/macosx-10.9.5/llvmCore-3425.0.33/unittests/ADT/
H A DAPIntTest.cpp377 bool isSigned; local
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, tru
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DAPSInt.h55 bool isSigned() const { return !IsUnsigned; } function in class:llvm::APSInt
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());
H A DPackedVector.h22 template <typename T, unsigned BitNum, typename BitVectorTy, bool isSigned>
H A DAPInt.h180 void initSlowCase(unsigned numBits, uint64_t val, bool isSigned);
221 /// If isSigned is true then val is treated as if it were a signed value
227 /// @param isSigned how to treat signedness of val
229 APInt(unsigned numBits, uint64_t val, bool isSigned = false)
235 initSlowCase(numBits, val, isSigned);
1303 void print(raw_ostream &OS, bool isSigned) const;
1332 double roundToDouble(bool isSigned) const;
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp96 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,
1847 bool isSigned) {
1854 Entry.isSExt = isSigned;
1855 Entry.isZExt = !isSigned;
[all...]
H A DLegalizeTypes.cpp1046 bool isSigned) {
1050 return MakeLibCall(LC, N->getValueType(0), 0, 0, isSigned, dl);
1053 return MakeLibCall(LC, N->getValueType(0), &Op, 1, isSigned, dl);
1056 return MakeLibCall(LC, N->getValueType(0), Ops, 2, isSigned, dl);
1062 return MakeLibCall(LC, N->getValueType(0), &Ops[0], NumOps, isSigned, dl);
1069 bool isSigned, DebugLoc dl) {
1077 Entry.isSExt = isSigned;
1078 Entry.isZExt = !isSigned;
1086 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, fals
1045 LibCallify(RTLIB::Libcall LC, SDNode *N, bool isSigned) argument
1067 MakeLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops, unsigned NumOps, bool isSigned, DebugLoc dl) argument
1099 ExpandChainLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp272 /// (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(); local
275 InsertRangeTest(Value *V, Constant *Lo, Constant *Hi, bool isSigned, bool Inside) argument
1450 bool isSigned = LHS->isSigned() || RHS->isSigned(); local
2259 bool isSigned = LHS->isSigned() || RHS->isSigned(); local
[all...]
H A DInstCombine.h359 bool isSigned, bool Inside);
367 Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
H A DInstCombineCasts.cpp155 bool isSigned) {
157 C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
180 Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned);
181 Value *RHS = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
200 Value *True = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
201 Value *False = EvaluateInDifferentType(I->getOperand(2), Ty, isSigned);
209 Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
154 EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned) argument
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DConstantFold.cpp1341 bool isSigned) {
1357 pred = isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1361 pred = isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1372 evaluateICmpRelation(V2, V1, isSigned);
1379 evaluateICmpRelation(V2, V1, isSigned);
1405 evaluateICmpRelation(V2, V1, isSigned);
1449 if (CE1->getOpcode() == Instruction::ZExt) isSigned = false;
1450 if (CE1->getOpcode() == Instruction::SExt) isSigned = true;
1453 isSigned);
1467 return isSigned
1340 evaluateICmpRelation(Constant *V1, Constant *V2, bool isSigned) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DInstrTypes.h485 bool isSigned, ///< Whether to regard S as signed or not
494 bool isSigned, ///< Whether to regard S as signed or not
776 bool isSigned() const { function in class:llvm::CmpInst
777 return isSigned(getPredicate());
804 static bool isSigned(unsigned short predicate);
H A DConstants.h69 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)
970 bool isSigned ///< Whether C should be treated as signed or not
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DConstantFolder.h163 bool isSigned) const {
164 return ConstantExpr::getIntegerCast(C, DestTy, isSigned);
H A DTargetFolder.h174 bool isSigned) const {
177 return Fold(ConstantExpr::getIntegerCast(C, DestTy, isSigned));
H A DNoFolder.h222 bool isSigned) const {
223 return CastInst::CreateIntegerCast(C, DestTy, isSigned);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DAPFloat.cpp1983 bool isSigned,
2057 if (!isSigned) {
2075 if (omsb >= width + !isSigned)
2097 bool isSigned,
2102 fs = convertToSignExtendedInteger(parts, width, isSigned, rounding_mode,
2113 bits = isSigned;
2115 bits = width - isSigned;
2118 if (sign && isSigned)
2136 parts.data(), bitWidth, result.isSigned(), rounding_mode, isExact);
2179 bool isSigned,
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DARMFastISel.cpp163 bool SelectIToFP(const Instruction *I, bool isSigned);
164 bool SelectFPToI(const Instruction *I, bool isSigned);
165 bool SelectDiv(const Instruction *I, bool isSigned);
166 bool SelectRem(const Instruction *I, bool isSigned);
1582 bool ARMFastISel::SelectIToFP(const Instruction *I, bool isSigned) { argument
1603 /*isZExt*/!isSigned);
1613 if (Ty->isFloatTy()) Opc = isSigned ? ARM::VSITOS : ARM::VUITOS;
1614 else if (Ty->isDoubleTy()) Opc = isSigned ? ARM::VSITOD : ARM::VUITOD;
1625 bool ARMFastISel::SelectFPToI(const Instruction *I, bool isSigned) { argument
1639 if (OpTy->isFloatTy()) Opc = isSigned
1718 SelectDiv(const Instruction *I, bool isSigned) argument
1746 SelectRem(const Instruction *I, bool isSigned) argument
[all...]

Completed in 314 milliseconds

123