/external/llvm/lib/Transforms/Instrumentation/ |
ThreadSanitizer.cpp | 153 const size_t BitSize = ByteSize * 8; 162 Type *Ty = Type::getIntNTy(M.getContext(), BitSize); 164 SmallString<32> AtomicLoadName("__tsan_atomic" + itostr(BitSize) + 169 SmallString<32> AtomicStoreName("__tsan_atomic" + itostr(BitSize) + 195 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart); 200 SmallString<32> AtomicCASName("__tsan_atomic" + itostr(BitSize) + 504 const size_t BitSize = ByteSize * 8; 505 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); 519 const size_t BitSize = ByteSize * 8; 520 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); [all...] |
/external/llvm/lib/CodeGen/ |
IntrinsicLowering.cpp | 169 unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); 173 switch(BitSize) { 273 unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); 274 unsigned WordSize = (BitSize + 63) / 64; 279 for (unsigned i = 1, ct = 0; i < (BitSize>64 ? 64 : BitSize); 290 if (BitSize > 64) { 293 BitSize -= 64; 306 unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); 307 for (unsigned i = 1; i < BitSize; i <<= 1) [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | 110 // otherwise. The value has BitSize bits. 113 : Opcode(Op), BitSize(N.getValueType().getSizeInBits()), 114 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63), 118 unsigned BitSize; 627 if (TII->isRxSBGMask(Mask, RxSBG.BitSize, RxSBG.Start, RxSBG.End)) { 642 ShiftedIn <<= RxSBG.BitSize - Count; 709 if (RxSBG.BitSize != 64) 728 if (Count < 1 || Count >= RxSBG.BitSize) 738 if (!refineRxSBGMask(RxSBG, allOnes(RxSBG.BitSize - Count) << Count) [all...] |
SystemZISelLowering.h | 224 unsigned BinOpcode, unsigned BitSize, 230 unsigned BitSize) const;
|
SystemZISelLowering.cpp | [all...] |
SystemZInstrInfo.h | 212 // Mask of the R2 operand, given that only the low BitSize bits of Mask are 214 bool isRxSBGMask(uint64_t Mask, unsigned BitSize,
|
SystemZInstrInfo.cpp | 794 bool SystemZInstrInfo::isRxSBGMask(uint64_t Mask, unsigned BitSize, 811 if (isStringOfOnes(Mask ^ allOnes(BitSize), LSB, Length)) { 813 assert(LSB + Length < BitSize && "Top bit must be set");
|
/external/llvm/include/llvm/CodeGen/ |
ValueTypes.h | 687 unsigned BitSize = getSizeInBits(); 688 return BitSize >= 8 && !(BitSize & (BitSize - 1));
|
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
bignum.cc | 46 static int BitSize(S value) { 52 ASSERT(kBigitSize >= BitSize(value));
|
/external/chromium_org/v8/src/ |
bignum.cc | 44 static int BitSize(S value) { 51 ASSERT(kBigitSize >= BitSize(value));
|
/external/clang/lib/AST/ |
ItaniumMangle.cpp | [all...] |
ASTContext.cpp | [all...] |
/external/v8/src/ |
bignum.cc | 44 static int BitSize(S value) { 50 ASSERT(kBigitSize >= BitSize(value));
|
/external/llvm/include/llvm/Target/ |
TargetLowering.h | [all...] |
/external/chromium_org/third_party/libusb/src/libusb/os/ |
windows_usb.h | 880 USHORT BitSize;
|
/external/clang/include/clang/AST/ |
ASTContext.h | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
TargetLowering.cpp | [all...] |
SelectionDAGBuilder.cpp | [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelLowering.cpp | [all...] |