Searched refs:mBitmaps (Results 1 – 5 of 5) sorted by relevance
29 mBitmaps.reset(); in clear()60 mBitmaps.reset(); in initFromRanges()67 mBitmaps.reset(new element[nPages << (kLogValuesPerPage - kLogBitsPerEl)]); in initFromRanges()68 memset(mBitmaps.get(), 0, nPages << (kLogValuesPerPage - 3)); in initFromRanges()94 mBitmaps[index] |= (kElAllOnes >> (start & kElMask)) & in initFromRanges()97 mBitmaps[index] |= kElAllOnes >> (start & kElMask); in initFromRanges()99 mBitmaps[index + j] = kElAllOnes; in initFromRanges()101 mBitmaps[index + nElements - 1] |= kElAllOnes << ((~end + 1) & kElMask); in initFromRanges()120 const element* bitmap = &mBitmaps[mIndices[fromPage]]; in nextSetBit()138 bitmap = &mBitmaps[index]; in nextSetBit()
36 HashSet<Bitmap> mBitmaps = new HashSet<Bitmap>(); field in FrameSequenceTest.CheckingProvider41 mBitmaps.add(bitmap); in acquireBitmap()47 if (!mBitmaps.contains(bitmap)) throw new IllegalStateException(); in releaseBitmap()48 mBitmaps.remove(bitmap); in releaseBitmap()53 return mBitmaps.isEmpty(); in isEmpty()
199 private final ArrayList<Bitmap> mBitmaps; field in AssetAtlasService.Renderer203 mBitmaps = bitmaps; in Renderer()220 Configuration config = chooseConfiguration(mBitmaps, mPixelCount, mVersionName); in run()268 final int count = mBitmaps.size(); in renderAtlas()271 final Bitmap bitmap = mBitmaps.get(i); in renderAtlas()628 private final List<Bitmap> mBitmaps; field in AssetAtlasService.ComputeWorker650 mBitmaps = bitmaps; in ComputeWorker()680 if (count == mBitmaps.size()) { in run()706 final int count = mBitmaps.size(); in packBitmaps()708 final Bitmap bitmap = mBitmaps.get(i); in packBitmaps()
50 uint32_t *bitmap = &mBitmaps[mIndices[ch >> kLogValuesPerPage]]; in get()83 UniquePtr<element[]> mBitmaps; variable
1051 ArrayList<Bitmap> mBitmaps; field in RemoteViews.BitmapCache1054 mBitmaps = new ArrayList<Bitmap>(); in BitmapCache()1059 mBitmaps = new ArrayList<Bitmap>(); in BitmapCache()1062 mBitmaps.add(b); in BitmapCache()1070 if (mBitmaps.contains(b)) { in getBitmapId()1071 return mBitmaps.indexOf(b); in getBitmapId()1073 mBitmaps.add(b); in getBitmapId()1074 return (mBitmaps.size() - 1); in getBitmapId()1080 if (id == -1 || id >= mBitmaps.size()) { in getBitmapForId()1083 return mBitmaps.get(id); in getBitmapForId()[all …]