/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())
|
/external/opencv3/3rdparty/openexr/Imath/ |
ImathLimits.h | 83 // isSigned() returns true if T is signed 124 static bool isSigned(); 140 static bool isSigned() {return (char) ~0 < 0;} 151 static bool isSigned() {return true;} 162 static bool isSigned() {return false;} 173 static bool isSigned() {return true;} 184 static bool isSigned() {return false;} 195 static bool isSigned() {return true;} 206 static bool isSigned() {return false;} 217 static bool isSigned() {return true; [all...] |
ImathHalfLimits.h | 60 static bool isSigned() {return true;}
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/decimaltestdata/ |
extra.decTest | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/decimaltestdata/ |
extra.decTest | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/ |
extra.decTest | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/ |
extra.decTest | [all...] |
/external/lzma/CPP/Windows/Control/ |
Dialog.h | 54 bool SetItemInt(int itemID, UINT value, bool isSigned)
55 { return BOOLToBool(SetDlgItemInt(_window, itemID, value, BoolToBOOL(isSigned))); }
56 bool GetItemInt(int itemID, bool isSigned, UINT &value)
59 value = GetDlgItemInt(_window, itemID, &result, BoolToBOOL(isSigned));
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/ |
OCSPReq.java | 162 if (!this.isSigned()) 172 if (!this.isSigned()) 214 public boolean isSigned() 226 if (!this.isSigned())
|
/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));
|
SimplifyIndVar.cpp | 77 bool IsSigned); 237 bool IsSigned) { 253 if ((!IsSigned || SE->isKnownNonNegative(S)) && 254 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT, 260 if (IsSigned && !SE->isKnownNonNegative(LessOne)) 263 if (!SE->isKnownPredicate(IsSigned ? 293 bool IsSigned = Rem->getOpcode() == Instruction::SRem; 294 if (IsSigned || Rem->getOpcode() == Instruction::URem) { 295 eliminateIVRemainder(Rem, IVOperand, IsSigned);
|
/external/llvm/include/llvm/ADT/ |
APSInt.h | 59 bool isSigned() const { return !IsUnsigned; } 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/clang/lib/CodeGen/ |
CGRecordLayout.h | 75 unsigned IsSigned : 1; 85 : Offset(), Size(), IsSigned(), StorageSize(), StorageOffset() {} 87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned, 89 : Offset(Offset), Size(Size), IsSigned(IsSigned),
|
/external/llvm/unittests/ADT/ |
APSIntTest.cpp | 45 EXPECT_TRUE(APSInt::get(7).isSigned()); 49 EXPECT_TRUE(APSInt::get(-7).isSigned()); 68 EXPECT_TRUE(APSInt(APInt(3, 7), false).isSigned()); 70 EXPECT_TRUE(APSInt(APInt(4, 7), false).isSigned()); 72 EXPECT_TRUE(APSInt(APInt(4, -7), false).isSigned());
|
APIntTest.cpp | 661 bool isSigned; 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, true) [all...] |
/external/clang/lib/Frontend/ |
InitPreprocessor.cpp | 183 /// 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); 202 bool IsSigned = TI.isTypeSigned(Ty); 204 for (const char *Fmt = IsSigned ? "di" : "ouxX"; *Fmt; ++Fmt) { 230 bool IsSigned = TI.isTypeSigned(Ty); 235 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); 237 const char *Prefix = IsSigned ? "__INT" : "__UINT"; 250 bool IsSigned = TI.isTypeSigned(Ty) [all...] |
/external/clang/test/CodeGen/ |
bitfield-2.c | 17 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:24 IsSigned:1 StorageSize:24 StorageOffset:0> 57 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:10 IsSigned:1 StorageSize:24 StorageOffset:0> 58 // CHECK-RECORD: <CGBitFieldInfo Offset:10 Size:10 IsSigned:1 StorageSize:24 StorageOffset:0> 105 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:3 IsSigned:0 StorageSize:8 StorageOffset:0> 277 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:5 IsSigned:1 StorageSize:8 StorageOffset:12> 278 // CHECK-RECORD: <CGBitFieldInfo Offset:0 Size:29 IsSigned:1 StorageSize:32 StorageOffset:16>
|
/frameworks/base/core/java/android/util/jar/ |
StrictJarFile.java | 54 private final boolean isSigned; 100 isSigned = verifier.readCertificates() && verifier.isSignedJar(); 102 isSigned = false; 136 if (isSigned) { 155 if (isSigned) { 181 if (isSigned) {
|
/external/eigen/Eigen/src/Core/ |
NumTraits.h | 42 * \li An enum value \a IsSigned. It is equal to \c 1 if \a T is a signed type and to 0 if \a T is unsigned. 55 IsSigned = std::numeric_limits<T>::is_signed, 137 IsSigned = NumTraits<Scalar>::IsSigned,
|
/external/clang/lib/Basic/ |
TargetInfo.cpp | 183 unsigned BitWidth, bool IsSigned) const { 185 return IsSigned ? SignedChar : UnsignedChar; 187 return IsSigned ? SignedShort : UnsignedShort; 189 return IsSigned ? SignedInt : UnsignedInt; 191 return IsSigned ? SignedLong : UnsignedLong; 193 return IsSigned ? SignedLongLong : UnsignedLongLong; 198 bool IsSigned) const { 200 return IsSigned ? SignedChar : UnsignedChar; 202 return IsSigned ? SignedShort : UnsignedShort; 204 return IsSigned ? SignedInt : UnsignedInt [all...] |
/external/llvm/include/llvm/Transforms/Utils/ |
LoopUtils.h | 89 RecurrenceType(nullptr), IsSigned(false) {} 95 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) { 210 /// source operands are added to CI, and IsSigned is updated to indicate if 213 Type *RT, bool &IsSigned, 226 bool isSigned() { return IsSigned; } 243 bool IsSigned;
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineMulDivRem.cpp | 81 bool IsSigned) { 83 if (IsSigned) 93 bool IsSigned) { 102 if (IsSigned && C1.isMinSignedValue() && C2.isAllOnesValue()) 105 APInt Remainder(C1.getBitWidth(), /*Val=*/0ULL, IsSigned); 106 if (IsSigned) 808 bool IsSigned = I.getOpcode() == Instruction::SDiv; 811 if ((IsSigned && match(LHS, m_SDiv(m_Value(X), m_APInt(C1)))) || 812 (!IsSigned && match(LHS, m_UDiv(m_Value(X), m_APInt(C1))))) { 813 APInt Product(C1->getBitWidth(), /*Val=*/0ULL, IsSigned); [all...] |
/external/compiler-rt/lib/ubsan/ |
ubsan_handlers.cc | 111 bool IsSigned = Data->Type.isSignedIntegerTy(); 112 ErrorType ET = IsSigned ? ErrorType::SignedIntegerOverflow 122 << (IsSigned ? "signed" : "unsigned") 145 bool IsSigned = Data->Type.isSignedIntegerTy(); 146 ErrorType ET = IsSigned ? ErrorType::SignedIntegerOverflow 154 if (IsSigned)
|
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngineBindings.cpp | 41 LLVMBool IsSigned) { 43 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned); 73 LLVMBool IsSigned) { 75 if (IsSigned)
|
/device/google/contexthub/firmware/src/ |
printf.c | 22 static uint32_t StrPrvPrintfEx_number(printf_write_c putc_, void* userData, uint64_t number, bool base10, bool zeroExtend, bool isSigned, uint32_t padToLength, bool caps, bool* bail) 37 if (isSigned) {
|