/external/clang/test/Index/ |
print-bitwidth.c | 16 // RUN: c-index-test -test-print-bitwidth %s | FileCheck %s 17 // CHECK: FieldDecl=ac:2:12 (Definition) bitwidth=4 18 // CHECK: FieldDecl=:3:3 (Definition) bitwidth=4 19 // CHECK: FieldDecl=clock:4:12 (Definition) bitwidth=1 20 // CHECK: FieldDecl=:5:3 (Definition) bitwidth=0 21 // CHECK: FieldDecl=flag:6:12 (Definition) bitwidth=1 22 // CHECK: FieldDecl=light:10:12 (Definition) bitwidth=1 23 // CHECK: FieldDecl=toaster:11:12 (Definition) bitwidth=1
|
/external/llvm/test/Transforms/InstCombine/ |
apint-mul1.ll | 2 ; This test is for Integer BitWidth < 64 && BitWidth % 2 != 0.
|
apint-mul2.ll | 2 ; This test is for Integer BitWidth >= 64 && BitWidth % 2 >= 1024.
|
apint-zext2.ll | 2 ; This test is for Integer BitWidth > 64 && BitWidth <= 1024.
|
apint-zext1.ll | 2 ; This test is for Integer BitWidth <= 64 && BitWidth % 2 != 0.
|
apint-div1.ll | 2 ; This test is for Integer BitWidth < 64 && BitWidth % 2 != 0.
|
apint-div2.ll | 2 ; This test is for Integer BitWidth >= 64 && BitWidth <= 1024.
|
apint-rem1.ll | 2 ; This test is for Integer BitWidth < 64 && BitWidth % 2 != 0.
|
apint-rem2.ll | 2 ; This test is for Integer BitWidth >= 64 && BitWidth <= 1024.
|
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/ |
apint-mul1.ll | 2 ; This test is for Integer BitWidth < 64 && BitWidth % 2 != 0.
|
apint-mul2.ll | 2 ; This test is for Integer BitWidth >= 64 && BitWidth % 2 >= 1024.
|
apint-zext2.ll | 2 ; This test is for Integer BitWidth > 64 && BitWidth <= 1024.
|
apint-zext1.ll | 2 ; This test is for Integer BitWidth <= 64 && BitWidth % 2 != 0.
|
apint-div1.ll | 2 ; This test is for Integer BitWidth < 64 && BitWidth % 2 != 0.
|
apint-div2.ll | 2 ; This test is for Integer BitWidth >= 64 && BitWidth <= 1024.
|
apint-rem1.ll | 2 ; This test is for Integer BitWidth < 64 && BitWidth % 2 != 0.
|
apint-rem2.ll | 2 ; This test is for Integer BitWidth >= 64 && BitWidth <= 1024.
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
APSIntType.h | 21 uint32_t BitWidth; 26 : BitWidth(Width), IsUnsigned(Unsigned) {} 29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {} 31 uint32_t getBitWidth() const { return BitWidth; } 41 Value = Value.extOrTrunc(BitWidth); 57 return llvm::APSInt(BitWidth, IsUnsigned); 62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned); 67 return llvm::APSInt::getMaxValue(BitWidth, IsUnsigned); 71 return (llvm::APSInt(BitWidth, IsUnsigned) = RawValue); 93 return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned [all...] |
/prebuilts/go/darwin-x86/src/cmd/vet/all/whitelist/ |
readme.txt | 4 There are also os-, arch-, and bitwidth-specific whitelists.
|
/prebuilts/go/linux-x86/src/cmd/vet/all/whitelist/ |
readme.txt | 4 There are also os-, arch-, and bitwidth-specific whitelists.
|
/external/llvm/lib/Analysis/ |
DemandedBits.cpp | 77 unsigned BitWidth = AB.getBitWidth(); 86 [&](unsigned BitWidth, const Value *V1, const Value *V2) { 88 KnownZero = APInt(BitWidth, 0); 89 KnownOne = APInt(BitWidth, 0); 94 KnownZero2 = APInt(BitWidth, 0); 95 KnownOne2 = APInt(BitWidth, 0); 118 ComputeKnownBits(BitWidth, I, nullptr); 119 AB = APInt::getHighBitsSet(BitWidth, 120 std::min(BitWidth, KnownOne.countLeadingZeros()+1)); 128 ComputeKnownBits(BitWidth, I, nullptr) [all...] |
/external/llvm/lib/ExecutionEngine/Orc/ |
OrcMCJITReplacement.cpp | 91 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth(); 92 if (BitWidth == 1) 93 rv.IntVal = APInt(BitWidth, ((bool (*)())(intptr_t)FPtr)()); 94 else if (BitWidth <= 8) 95 rv.IntVal = APInt(BitWidth, ((char (*)())(intptr_t)FPtr)()); 96 else if (BitWidth <= 16) 97 rv.IntVal = APInt(BitWidth, ((short (*)())(intptr_t)FPtr)()); 98 else if (BitWidth <= 32) 99 rv.IntVal = APInt(BitWidth, ((int (*)())(intptr_t)FPtr)()); 100 else if (BitWidth <= 64 [all...] |
/external/llvm/lib/Support/ |
APInt.cpp | 92 assert(BitWidth && "Bitwidth too small"); 109 : BitWidth(numBits), VAL(0) { 114 : BitWidth(numBits), VAL(0) { 119 : BitWidth(numbits), VAL(0) { 120 assert(BitWidth && "Bitwidth too small"); 129 if (BitWidth == RHS.getBitWidth()) { 152 BitWidth = RHS.BitWidth; [all...] |
/external/swiftshader/third_party/LLVM/lib/Support/ |
APInt.cpp | 89 assert(BitWidth && "Bitwidth too small"); 106 : BitWidth(numBits), VAL(0) { 111 : BitWidth(numBits), VAL(0) { 116 : BitWidth(numbits), VAL(0) { 117 assert(BitWidth && "Bitwidth too small"); 126 if (BitWidth == RHS.getBitWidth()) { 149 BitWidth = RHS.BitWidth; [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
InstCombineSimplifyDemanded.cpp | 53 unsigned BitWidth = Inst.getType()->getScalarSizeInBits(); 54 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0); 55 APInt DemandedMask(APInt::getAllOnesValue(BitWidth)); 92 /// in DemandedMask. Note also that the bitwidth of V, DemandedMask, KnownZero 105 uint32_t BitWidth = DemandedMask.getBitWidth(); 109 assert((!TD || TD->getTypeSizeInBits(VTy->getScalarType()) == BitWidth) && 111 VTy->getScalarSizeInBits() == BitWidth) && 112 KnownZero.getBitWidth() == BitWidth && 113 KnownOne.getBitWidth() == BitWidth & [all...] |