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/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp140 const size_t BitSize = ByteSize * 8; local
149 Type *Ty = Type::getIntNTy(M.getContext(), BitSize);
151 SmallString<32> AtomicLoadName("__tsan_atomic" + itostr(BitSize) +
156 SmallString<32> AtomicStoreName("__tsan_atomic" + itostr(BitSize) +
364 const size_t BitSize = ByteSize * 8; local
365 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
379 const size_t BitSize = ByteSize * 8; local
380 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
/external/v8/src/
H A Dbignum.cc44 static int BitSize(S value) { function in namespace:v8::internal
50 ASSERT(kBigitSize >= BitSize(value));
/external/llvm/include/llvm/CodeGen/
H A DValueTypes.h569 unsigned BitSize = getSizeInBits(); local
570 return BitSize >= 8 && !(BitSize & (BitSize - 1));
/external/clang/lib/AST/
H A DItaniumMangle.cpp2095 unsigned BitSize = (T->getNumElements() * local
2097 if (BitSize == 64)
2100 assert(BitSize == 128 && "Neon vector type not 64 or 128 bits");
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2943 unsigned BitSize = TD->getTypeSizeInBits(OpTy); local
2944 switch (BitSize) {
2953 EVT::getEVT(IntegerType::get(OpTy->getContext(), BitSize), true);
H A DSelectionDAGBuilder.cpp5781 unsigned BitSize = TD->getTypeSizeInBits(OpTy); local
5782 switch (BitSize) {
5790 OpTy = IntegerType::get(Context, BitSize);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp712 unsigned BitSize; local
715 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))

Completed in 163 milliseconds