Searched defs:bitCount (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/platform/win/
H A DBitmapInfo.cpp36 BitmapInfo bitmapInfoForSize(int width, int height, BitmapInfo::BitCount bitCount) argument
42 bitmapInfo.bmiHeader.biBitCount = bitCount;
54 BitmapInfo BitmapInfo::create(const IntSize& size, BitCount bitCount) argument
56 return bitmapInfoForSize(size.width(), size.height(), bitCount);
59 BitmapInfo BitmapInfo::createBottomUp(const IntSize& size, BitCount bitCount) argument
61 return bitmapInfoForSize(size.width(), -size.height(), bitCount);
/external/skia/include/core/
H A DSkRandom.h51 at most bitCount bits.
52 @param bitCount The maximum number of bits to be returned
54 uint32_t nextBits(unsigned bitCount) { argument
55 SkASSERT(bitCount > 0 && bitCount <= 32);
56 return this->nextU() >> (32 - bitCount);
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon9663
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon9713
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon9765
/external/webkit/Source/JavaScriptCore/wtf/
H A DStdLibExtras.h106 inline size_t bitCount(unsigned bits) function in namespace:WTF
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp50 //helpers - my function pointer will call one of these, depending on the bitCount, each time through the inner loop
68 static int calculateRowBytesFor8888(int w, int bitCount) argument
74 if (4 == bitCount && (w & 0x1)) {
116 int bitCount = read2Bytes(buf, offset+14); local
120 switch (bitCount)
135 SkDEBUGF(("Image with %ibpp not supported\n", bitCount));
164 int bitCount = read2Bytes(buf, offset+14); local
169 switch (bitCount)
192 SkDEBUGF(("Decoding %ibpp is unimplemented\n", bitCount));
221 int bitWidth = w*bitCount;
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DSharedBitmap.cpp43 PassRefPtr<SharedBitmap> SharedBitmap::create(const IntSize& size, BitmapInfo::BitCount bitCount, bool initPixels) argument
45 RefPtr<SharedBitmap> resultantBitmap = adoptRef(new SharedBitmap(size, bitCount, initPixels));
61 SharedBitmap::SharedBitmap(const IntSize& size, BitmapInfo::BitCount bitCount, bool initPixels) argument
62 : m_bmpInfo(BitmapInfo::createBottomUp(size, bitCount))
76 if (bitCount == BitmapInfo::BitCount16)
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1725 int bitCount = bits.size(); local
1726 if (bitCount < 64) {
1728 for (int i=0 ; i<bitCount ; ++i) {
1735 while (v < bitCount) {
1737 for (int i=0 ; (i<32) && (v<bitCount) ; ++i) {
/external/v8/benchmarks/
H A Dcrypto.js1318 BigInteger.prototype.bitCount = bnBitCount;
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js1310 BigInteger.prototype.bitCount = bnBitCount;
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js1310 BigInteger.prototype.bitCount = bnBitCount;
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js1310 BigInteger.prototype.bitCount = bnBitCount;

Completed in 4697 milliseconds