HomeSort by relevance Sort by last modified time
    Searched full:issigned (Results 1 - 25 of 738) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/
extra.decTest     [all...]
  /external/python/cpython2/Lib/test/decimaltestdata/
extra.decTest     [all...]
  /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/llvm/lib/DebugInfo/CodeView/
RecordSerialization.cpp 42 Num = APSInt(APInt(/*numBits=*/16, Short, /*isSigned=*/false),
52 /*isSigned=*/true),
61 /*isSigned=*/true),
70 /*isSigned=*/false),
79 /*isSigned=*/true),
88 /*isSigned=*/FalseVal),
97 /*isSigned=*/true),
106 /*isSigned=*/false),
127 if (N.isSigned() || !N.isIntN(64))
  /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/eigen/test/
numext.cpp 16 if(NumTraits<T>::IsSigned)
26 if(NumTraits<T>::IsSigned)
  /external/swiftshader/third_party/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...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyIndVar.cpp 81 bool IsSigned);
191 bool IsSigned) {
207 if ((!IsSigned || SE->isKnownNonNegative(S)) &&
208 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
215 if (IsSigned && !SE->isKnownNonNegative(LessOne))
218 if (!SE->isKnownPredicate(IsSigned ?
253 bool IsSigned = Rem->getOpcode() == Instruction::SRem;
254 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
255 eliminateIVRemainder(Rem, IVOperand, IsSigned);
422 bool IsSigned = Rem->getOpcode() == Instruction::SRem
    [all...]
  /external/v8/src/
machine-type.h 77 bool IsSigned() {
207 bool isSigned = true) {
214 return isSigned ? MachineType::Int8() : MachineType::Uint8();
216 return isSigned ? MachineType::Int16() : MachineType::Uint16();
218 return isSigned ? MachineType::Int32() : MachineType::Uint32();
220 return isSigned ? MachineType::Int64() : MachineType::Uint64();
  /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));
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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();
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
301 if (I1.isSigned()) {
302 assert(!I2.isSigned() && "Expected signed mismatch");
306 assert(I2.isSigned() && "Expected signed mismatch");
330 I.print(OS, I.isSigned());
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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();
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
301 if (I1.isSigned()) {
302 assert(!I2.isSigned() && "Expected signed mismatch");
306 assert(I2.isSigned() && "Expected signed mismatch");
330 I.print(OS, I.isSigned());
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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();
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
301 if (I1.isSigned()) {
302 assert(!I2.isSigned() && "Expected signed mismatch");
306 assert(I2.isSigned() && "Expected signed mismatch");
330 I.print(OS, I.isSigned());
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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();
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
301 if (I1.isSigned()) {
302 assert(!I2.isSigned() && "Expected signed mismatch");
306 assert(I2.isSigned() && "Expected signed mismatch");
330 I.print(OS, I.isSigned());
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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();
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
301 if (I1.isSigned()) {
302 assert(!I2.isSigned() && "Expected signed mismatch");
306 assert(I2.isSigned() && "Expected signed mismatch");
330 I.print(OS, I.isSigned());
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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();
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
301 if (I1.isSigned()) {
302 assert(!I2.isSigned() && "Expected signed mismatch");
306 assert(I2.isSigned() && "Expected signed mismatch");
330 I.print(OS, I.isSigned());
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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();
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
301 if (I1.isSigned()) {
302 assert(!I2.isSigned() && "Expected signed mismatch");
306 assert(I2.isSigned() && "Expected signed mismatch");
330 I.print(OS, I.isSigned());
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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();
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
301 if (I1.isSigned()) {
302 assert(!I2.isSigned() && "Expected signed mismatch");
306 assert(I2.isSigned() && "Expected signed mismatch");
330 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),

Completed in 1236 milliseconds

1 2 3 4 5 6 7 8 91011>>