Searched defs:fStorage (Results 1 - 25 of 29) sorted by relevance

12

/external/skia/include/core/
H A DSkMallocPixelRef.h81 void* getAddr() const { return fStorage; }
101 void* fStorage; member in class:SkMallocPixelRef
H A DSkTLazy.h30 fPtr = new (fStorage) T(*src);
36 fPtr = new (fStorage) T(*src->get());
58 fPtr = new (SkTCast<T*>(fStorage)) T;
72 fPtr = new (SkTCast<T*>(fStorage)) T(src);
108 T* fPtr; // NULL or fStorage
109 char fStorage[sizeof(T)]; member in class:SkTLazy
115 lazy->fPtr = reinterpret_cast<T*>(lazy->fStorage);
H A DSkTSearch.h135 char* fLC; // points to either the heap or fStorage
140 char fStorage[STORAGE+1]; member in class:SkAutoAsciiToLC
H A DSkTextBlob.h198 SkAutoTMalloc<uint8_t> fStorage; member in class:SkTextBlobBuilder
205 size_t fLastRun; // index into fStorage
H A DSkTArray.h517 SkSTArray() : INHERITED(&fStorage) {
521 : INHERITED(array, &fStorage) {
525 : INHERITED(array, &fStorage) {
533 : INHERITED(array, count, &fStorage) {
546 SkAlignedSTStorage<N,T> fStorage; member in class:SkSTArray
H A DSkWriter32.h258 void reset() {this->INHERITED::reset(fData.fStorage, SIZE); }
264 char fStorage[SIZE]; member in union:SkSWriter32::__anon13820
H A DSkTemplates.h300 SkASSERT((T*) fStorage != fArray);
312 fArray = (T*) fStorage;
345 // since we come right after fArray, fStorage should be properly aligned
346 char fStorage[N * sizeof(T)];
511 void* get() { return fStorage.get(); }
513 SkAlignedSStorage<sizeof(T)*N> fStorage; member in class:SkAlignedSTStorage
H A DSkCanvas.h1136 // in our constructor to ensure that fStorage is large enough
1139 intptr_t fStorage[32]; member in class:SkCanvas::LayerIter
1140 class SkDrawIter* fImpl; // this points at fStorage
H A DSkTypes.h609 fPtr = fStorage;
619 fPtr = fStorage;
629 if (fPtr != (void*)fStorage) {
657 if (fPtr != (void*)fStorage) {
662 SkASSERT(fPtr != fStorage); // otherwise we lied when setting didChangeAlloc.
663 fPtr = fStorage;
671 SkASSERT((fPtr == fStorage) || fSize > kSize);
678 uint32_t fStorage[(kSize + 3) >> 2]; member in class:SkAutoSMalloc
/external/skia/include/effects/
H A DSkMergeImageFilter.h49 intptr_t fStorage[16]; member in class:SkMergeImageFilter
/external/skia/include/ports/
H A DSkMutex_win.h40 InitializeCriticalSection(&fStorage);
46 DeleteCriticalSection(&fStorage);
50 EnterCriticalSection(&fStorage);
57 LeaveCriticalSection(&fStorage);
65 CRITICAL_SECTION fStorage; member in struct:SkBaseMutex
/external/skia/src/core/
H A DSkPerspIter.h29 const SkFixed* getXY() const { return fStorage; }
42 SkFixed fStorage[kCount * 2]; member in class:SkPerspIter
H A DSkSmallAllocator.h46 // Safe to do if fObj is in fStorage, since fHeapStorage will
111 * The space will be in fStorage if there is room, or on the heap otherwise.
134 // There is space in fStorage.
138 rec->fObj = static_cast<void*>(fStorage + (fStorageUsed / 4));
171 uint32_t fStorage[SkAlign4(kTotalBytes) >> 2]; member in class:SkSmallAllocator
H A DSkBitmapHeap.h163 SkASSERT(slot <= fStorage.count());
167 return fStorage[slot];
175 fStorage.count() - fUnusedSlots.count() == fLookupTable.count());
229 uint32_t fStorageSlot; // slot of corresponding bitmap in fStorage.
279 SkTDArray<SkBitmapHeapEntry*> fStorage; member in class:SkBitmapHeap
280 // Used to mark slots in fStorage as deleted without actually deleting
H A DSkCachedData.h48 } fStorage; member in class:SkCachedData
H A DSkDescriptor.h144 if (size <= sizeof(fStorage)) {
145 fDesc = (SkDescriptor*)(void*)fStorage;
154 if (fDesc != (SkDescriptor*)(void*)fStorage) {
166 uint32_t fStorage[(kStorageSize + 3) >> 2]; member in class:SkAutoDescriptor
H A DSkGeometry.h314 SkPoint* pts = fStorage.reset(1 + 2 * fQuadCount);
333 SkAutoSTMalloc<kPointCount, SkPoint> fStorage; member in class:SkAutoConicToQuads
H A DSkRegion_path.cpp51 const Scanline* line = (Scanline*)fStorage;
86 SkRegion::RunType* fStorage; member in class:SkRgnBuilder
110 : fStorage(NULL) {
114 sk_free(fStorage);
148 fStorage = (SkRegion::RunType*)sk_malloc_flags(sk_64_asS32(size), 0);
149 if (NULL == fStorage) {
161 fCurrScanline = (Scanline*)fStorage;
195 SkASSERT(fCurrXPtr - fStorage < fStorageCount);
203 const SkRegion::RunType* line = fStorage;
212 SkASSERT((const SkRegion::RunType*)fCurrScanline - fStorage
[all...]
/external/skia/src/gpu/
H A DGrFontScaler.h49 uint32_t fStorage[kMaxStorageInts]; member in class:GrFontDescKey
H A DGrPlotMgr.h19 if (needed <= sizeof(fStorage)) {
20 fBusy = fStorage;
28 if (fBusy != fStorage) {
68 char fStorage[STORAGE]; member in class:GrPlotMgr
H A DGrAllocator.h377 this->setInitialBlock(fStorage.get());
381 SkAlignedSTStorage<N, T> fStorage; member in class:GrSTAllocator
/external/skia/include/utils/
H A DSkMeshUtils.h40 void* fStorage; // may be null member in class:SkMeshIndices
H A DSkInterpolator.h80 SkTimeCode* fTimes; // pointer into fStorage
81 void* fStorage; member in class:SkInterpolatorBase
117 SkScalar* fValues; // pointer into fStorage
/external/icu/icu4c/source/i18n/
H A Ddigitlst.h394 MaybeStackHeaderAndArray<decNumber, char, DEFAULT_DIGITS> fStorage; member in class:DigitList
/external/skia/src/codec/
H A DSkJpegCodec.cpp399 fStorage.reset(fCodec->fSrcRowBytes);
400 fSrcRow = static_cast<uint8_t*>(fStorage.get());
457 SkAutoMalloc fStorage; member in class:SkJpegScanlineDecoder
458 uint8_t* fSrcRow; // ptr into fStorage

Completed in 405 milliseconds

12