HomeSort by relevance Sort by last modified time
    Searched defs:fStorage (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/include/effects/
SkMergeImageFilter.h 50 intptr_t fStorage[16];
  /external/skia/include/effects/
SkMergeImageFilter.h 50 intptr_t fStorage[16];
  /external/chromium_org/third_party/skia/include/core/
SkMallocPixelRef.h 76 void* getAddr() const { return fStorage; }
99 void* fStorage;
SkTSearch.h 135 char* fLC; // points to either the heap or fStorage
140 char fStorage[STORAGE+1];
SkTLazy.h 30 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)];
115 lazy->fPtr = reinterpret_cast<T*>(lazy->fStorage);
  /external/chromium_org/third_party/skia/include/utils/
SkMeshUtils.h 40 void* fStorage; // may be null
SkInterpolator.h 80 SkTimeCode* fTimes; // pointer into fStorage
81 void* fStorage;
118 SkScalar* fValues; // pointer into fStorage
  /external/chromium_org/third_party/skia/src/core/
SkPerspIter.h 29 const SkFixed* getXY() const { return fStorage; }
42 SkFixed fStorage[kCount * 2];
SkGeometry.h 293 SkPoint* pts = fStorage.reset(1 + 2 * fQuadCount);
312 SkAutoSTMalloc<kPointCount, SkPoint> fStorage;
SkSmallAllocator.h 46 // 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];
SkBitmapHeap.h 172 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;
289 // Used to mark slots in fStorage as deleted without actually deleting
SkDescriptor.h 138 if (size <= sizeof(fStorage)) {
139 fDesc = (SkDescriptor*)(void*)fStorage;
146 if (fDesc != (SkDescriptor*)(void*)fStorage) {
160 uint32_t fStorage[(kStorageSize + 3) >> 2];
  /external/chromium_org/third_party/skia/src/gpu/
GrPlotMgr.h 19 if (needed <= sizeof(fStorage)) {
20 fBusy = fStorage;
28 if (fBusy != fStorage) {
68 char fStorage[STORAGE];
  /external/chromium_org/third_party/skia/src/ports/
SkMutex_win.h 38 InitializeCriticalSection(&fStorage);
44 DeleteCriticalSection(&fStorage);
48 EnterCriticalSection(&fStorage);
55 LeaveCriticalSection(&fStorage);
66 CRITICAL_SECTION fStorage;
  /external/skia/include/core/
SkMallocPixelRef.h 76 void* getAddr() const { return fStorage; }
101 void* fStorage;
SkTSearch.h 135 char* fLC; // points to either the heap or fStorage
140 char fStorage[STORAGE+1];
SkTLazy.h 30 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)];
115 lazy->fPtr = reinterpret_cast<T*>(lazy->fStorage);
  /external/skia/include/utils/
SkMeshUtils.h 40 void* fStorage; // may be null
SkInterpolator.h 80 SkTimeCode* fTimes; // pointer into fStorage
81 void* fStorage;
118 SkScalar* fValues; // pointer into fStorage
  /external/skia/src/core/
SkPerspIter.h 29 const SkFixed* getXY() const { return fStorage; }
42 SkFixed fStorage[kCount * 2];
SkGeometry.h 293 SkPoint* pts = fStorage.reset(1 + 2 * fQuadCount);
312 SkAutoSTMalloc<kPointCount, SkPoint> fStorage;
SkSmallAllocator.h 46 // 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];
  /external/skia/src/gpu/
GrPlotMgr.h 19 if (needed <= sizeof(fStorage)) {
20 fBusy = fStorage;
28 if (fBusy != fStorage) {
68 char fStorage[STORAGE];
  /external/skia/src/ports/
SkMutex_win.h 38 InitializeCriticalSection(&fStorage);
44 DeleteCriticalSection(&fStorage);
48 EnterCriticalSection(&fStorage);
55 LeaveCriticalSection(&fStorage);
66 CRITICAL_SECTION fStorage;
  /external/chromium_org/third_party/icu/source/i18n/
digitlst.h 379 MaybeStackHeaderAndArray<decNumber, char, DEFAULT_DIGITS> fStorage;

Completed in 442 milliseconds

1 2 3