Searched refs:mBitmaps (Results 1 – 4 of 4) sorted by relevance
60 mBitmaps.reset(new element[nPages << (kLogValuesPerPage - kLogBitsPerEl)]()); in initFromRanges()86 mBitmaps[index] |= in initFromRanges()89 mBitmaps[index] |= kElAllOnes >> (start & kElMask); in initFromRanges()91 mBitmaps[index + j] = kElAllOnes; in initFromRanges()93 mBitmaps[index + nElements - 1] |= kElAllOnes << ((~end + 1) & kElMask); in initFromRanges()112 const element* bitmap = &mBitmaps[mIndices[fromPage]]; in nextSetBit()130 bitmap = &mBitmaps[index]; in nextSetBit()
35 HashSet<Bitmap> mBitmaps = new HashSet<Bitmap>(); field in FrameSequenceTest.CheckingProvider40 mBitmaps.add(bitmap); in acquireBitmap()46 if (!mBitmaps.contains(bitmap)) throw new IllegalStateException(); in releaseBitmap()47 mBitmaps.remove(bitmap); in releaseBitmap()52 return mBitmaps.isEmpty(); in isEmpty()
51 const uint32_t* bitmap = &mBitmaps[mIndices[ch >> kLogValuesPerPage]]; in get()86 std::unique_ptr<element[]> mBitmaps; variable
290 ArrayList<Bitmap> cache = mBitmapCache.mBitmaps; in reduceImageSizes()1142 ArrayList<Bitmap> mBitmaps; field in RemoteViews.BitmapCache1146 mBitmaps = new ArrayList<>(); in BitmapCache()1150 mBitmaps = source.createTypedArrayList(Bitmap.CREATOR); in BitmapCache()1157 if (mBitmaps.contains(b)) { in getBitmapId()1158 return mBitmaps.indexOf(b); in getBitmapId()1160 mBitmaps.add(b); in getBitmapId()1162 return (mBitmaps.size() - 1); in getBitmapId()1168 if (id == -1 || id >= mBitmaps.size()) { in getBitmapForId()1171 return mBitmaps.get(id); in getBitmapForId()[all …]