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

123

/external/chromium_org/third_party/skia/include/core/
H A DSkMallocPixelRef.h76 void* getAddr() const { return fStorage; }
96 void* fStorage; member in class:SkMallocPixelRef
H A DSkTextBlob.h183 SkAutoTMalloc<uint8_t> fStorage; member in class:SkTextBlobBuilder
190 size_t fLastRun; // index into fStorage
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
/external/chromium_org/third_party/skia/include/effects/
H A DSkMergeImageFilter.h54 intptr_t fStorage[16]; member in class:SkMergeImageFilter
/external/chromium_org/third_party/skia/include/gpu/
H A DGrFontScaler.h49 uint32_t fStorage[kMaxStorageInts]; member in class:GrFontDescKey
/external/chromium_org/third_party/skia/src/core/
H A DSkPerspIter.h29 const SkFixed* getXY() const { return fStorage; }
42 SkFixed fStorage[kCount * 2]; member in class:SkPerspIter
H A DSkGeometry.h293 SkPoint* pts = fStorage.reset(1 + 2 * fQuadCount);
312 SkAutoSTMalloc<kPointCount, SkPoint> fStorage; member in class:SkAutoConicToQuads
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.h172 SkASSERT(slot <= fStorage.count());
176 return fStorage[slot];
184 fStorage.count() - fUnusedSlots.count() == fLookupTable.count());
238 uint32_t fStorageSlot; // slot of corresponding bitmap in fStorage.
288 SkTDArray<SkBitmapHeapEntry*> fStorage; member in class:SkBitmapHeap
289 // Used to mark slots in fStorage as deleted without actually deleting
/external/chromium_org/third_party/skia/src/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/include/core/
H A DSkMallocPixelRef.h76 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);
/external/skia/include/effects/
H A DSkMergeImageFilter.h50 intptr_t fStorage[16]; member in class:SkMergeImageFilter
/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 DSkGeometry.h293 SkPoint* pts = fStorage.reset(1 + 2 * fQuadCount);
312 SkAutoSTMalloc<kPointCount, SkPoint> fStorage; member in class:SkAutoConicToQuads
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
/external/skia/src/ports/
H A DSkMutex_win.h38 InitializeCriticalSection(&fStorage);
44 DeleteCriticalSection(&fStorage);
48 EnterCriticalSection(&fStorage);
55 LeaveCriticalSection(&fStorage);
66 CRITICAL_SECTION fStorage; member in class:SkMutex
/external/chromium_org/third_party/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/chromium_org/third_party/skia/src/gpu/
H A DGrPlotMgr.h19 if (needed <= sizeof(fStorage)) {
20 fBusy = fStorage;
28 if (fBusy != fStorage) {
68 char fStorage[STORAGE]; member in class:GrPlotMgr
/external/skia/include/utils/
H A DSkMeshUtils.h40 void* fStorage; // may be null member in class:SkMeshIndices
/external/skia/src/gpu/
H A DGrPlotMgr.h19 if (needed <= sizeof(fStorage)) {
20 fBusy = fStorage;
28 if (fBusy != fStorage) {
68 char fStorage[STORAGE]; member in class:GrPlotMgr
/external/chromium_org/third_party/icu/source/i18n/
H A Ddigitlst.h394 MaybeStackHeaderAndArray<decNumber, char, DEFAULT_DIGITS> fStorage; member in class:DigitList
/external/icu/icu4c/source/i18n/
H A Ddigitlst.h394 MaybeStackHeaderAndArray<decNumber, char, DEFAULT_DIGITS> fStorage; member in class:DigitList

Completed in 2334 milliseconds

123