Searched defs:BitSize (Results 1 - 9 of 9) sorted by relevance

/external/giflib/
H A Dgifalloc.c30 BitSize(int n) { function
56 if (ColorCount != (1 << BitSize(ColorCount))) {
71 Object->BitsPerPixel = BitSize(ColorCount);
189 NewBitSize = BitSize(CrntSlot);
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp169 unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); local
173 switch(BitSize) {
273 unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); local
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(); local
307 for (unsigned i = 1; i < BitSize;
[all...]
/external/v8/src/
H A Dbignum.cc44 static int BitSize(S value) { function in namespace:v8::internal
50 ASSERT(kBigitSize >= BitSize(value));
/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp144 const size_t BitSize = ByteSize * 8; local
153 Type *Ty = Type::getIntNTy(M.getContext(), BitSize);
155 SmallString<32> AtomicLoadName("__tsan_atomic" + itostr(BitSize) +
160 SmallString<32> AtomicStoreName("__tsan_atomic" + itostr(BitSize) +
186 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart);
191 SmallString<32> AtomicCASName("__tsan_atomic" + itostr(BitSize) +
442 const size_t BitSize = ByteSize * 8; local
443 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
457 const size_t BitSize = ByteSize * 8; local
458 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
475 const size_t BitSize = ByteSize * 8; local
489 const size_t BitSize = ByteSize * 8; local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DValueTypes.h685 unsigned BitSize = getSizeInBits(); local
686 return BitSize >= 8 && !(BitSize & (BitSize - 1));
/external/clang/lib/AST/
H A DItaniumMangle.cpp2097 unsigned BitSize = (T->getNumElements() * local
2099 if (BitSize == 64)
2102 assert(BitSize == 128 && "Neon vector type not 64 or 128 bits");
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2128 unsigned BitSize = getDataLayout()->getTypeSizeInBits(OpTy); local
2129 switch (BitSize) {
2138 MVT::getVT(IntegerType::get(OpTy->getContext(), BitSize), true);
H A DSelectionDAGBuilder.cpp5706 unsigned BitSize = TD->getTypeSizeInBits(OpTy); local
5707 switch (BitSize) {
5715 OpTy = IntegerType::get(Context, BitSize);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp778 unsigned BitSize; local
781 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))

Completed in 254 milliseconds