Searched refs:BitSize (Results 1 - 12 of 12) sorted by relevance

/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/giflib/
H A Dgifalloc.c30 BitSize(int n) { function
56 if (ColorCount != (1 << BitSize(ColorCount))) {
71 Object->BitsPerPixel = BitSize(ColorCount);
189 NewBitSize = BitSize(CrntSlot);
H A Dgif_lib.h273 extern int BitSize(int n);
/external/llvm/include/llvm/CodeGen/
H A DValueTypes.h530 unsigned BitSize = getSizeInBits(); local
531 return BitSize >= 8 && !(BitSize & (BitSize - 1));
/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/Target/
H A DTargetLowering.h1854 unsigned BitSize = VT.getSizeInBits();
1856 if (BitSize < 8 || !isPowerOf2_32(BitSize)) {
/external/clang/lib/AST/
H A DItaniumMangle.cpp2086 unsigned BitSize = (T->getNumElements() * local
2088 if (BitSize == 64)
2091 assert(BitSize == 128 && "Neon vector type not 64 or 128 bits");
H A DASTContext.cpp1131 CharUnits ASTContext::toCharUnitsFromBits(int64_t BitSize) const {
1132 return CharUnits::fromQuantity(BitSize / getCharWidth());
/external/clang/include/clang/AST/
H A DASTContext.h1282 CharUnits toCharUnitsFromBits(int64_t BitSize) const;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2908 unsigned BitSize = TD->getTypeSizeInBits(OpTy); local
2909 switch (BitSize) {
2918 EVT::getEVT(IntegerType::get(OpTy->getContext(), BitSize), true);
H A DSelectionDAGBuilder.cpp5724 unsigned BitSize = TD->getTypeSizeInBits(OpTy); local
5725 switch (BitSize) {
5733 OpTy = IntegerType::get(Context, BitSize);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp683 unsigned BitSize; local
686 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))

Completed in 182 milliseconds