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

1 2 3 4

  /external/chromium_org/third_party/skia/src/core/
SkMallocPixelRef.cpp 18 fStorage = storage;
24 this->setPreLocked(fStorage, fCTable);
30 sk_free(fStorage);
36 return fStorage;
46 buffer.writeByteArray(fStorage, fSize);
56 fStorage = sk_malloc_throw(fSize);
57 buffer.readByteArray(fStorage);
65 this->setPreLocked(fStorage, fCTable);
SkPerspIter.h 29 const SkFixed* getXY() const { return fStorage; }
42 SkFixed fStorage[kCount * 2];
SkBitmapHeap.cpp 88 for (int i = 0; i < fStorage.count(); i++) {
91 if (fUnusedSlots[j] == fStorage[i]->fSlot) {
97 fBytesAllocated -= fStorage[i]->fBytesAllocated;
100 fBytesAllocated -= (fStorage.count() * sizeof(SkBitmapHeapEntry));
103 fStorage.deleteAll();
109 const int size = fStorage.count();
115 array->writableAt(i) = fStorage[i]->fBitmap;
164 SkASSERT(fStorage.count() >= fPreferredCount);
168 SkBitmapHeapEntry* heapEntry = fStorage[iter->fStorageSlot];
196 SkBitmapHeapEntry* heapEntry = fStorage[iter->fStorageSlot]
    [all...]
SkTemplatesPriv.h 52 SkAutoTPlacementDelete(T* obj, void* storage) : fObj(obj), fStorage(storage)
59 if (fObj == fStorage)
73 void* fStorage;
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/skia/src/core/
SkMallocPixelRef.cpp 18 fStorage = storage;
24 this->setPreLocked(fStorage, fCTable);
30 sk_free(fStorage);
36 return fStorage;
46 buffer.writeByteArray(fStorage, fSize);
56 fStorage = sk_malloc_throw(fSize);
57 buffer.readByteArray(fStorage);
65 this->setPreLocked(fStorage, fCTable);
SkPerspIter.h 29 const SkFixed* getXY() const { return fStorage; }
42 SkFixed fStorage[kCount * 2];
SkBitmapHeap.cpp 88 for (int i = 0; i < fStorage.count(); i++) {
91 if (fUnusedSlots[j] == fStorage[i]->fSlot) {
97 fBytesAllocated -= fStorage[i]->fBytesAllocated;
100 fBytesAllocated -= (fStorage.count() * sizeof(SkBitmapHeapEntry));
103 fStorage.deleteAll();
109 const int size = fStorage.count();
115 array->writableAt(i) = fStorage[i]->fBitmap;
164 SkASSERT(fStorage.count() >= fPreferredCount);
168 SkBitmapHeapEntry* heapEntry = fStorage[iter->fStorageSlot];
196 SkBitmapHeapEntry* heapEntry = fStorage[iter->fStorageSlot]
    [all...]
SkTemplatesPriv.h 52 SkAutoTPlacementDelete(T* obj, void* storage) : fObj(obj), fStorage(storage)
59 if (fObj == fStorage)
73 void* fStorage;
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/include/core/
SkMallocPixelRef.h 29 void* getAddr() const { return fStorage; }
42 void* fStorage;
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);
98 T* fPtr; // NULL or fStorage
99 char fStorage[sizeof(T)];
105 lazy->fPtr = reinterpret_cast<T*>(lazy->fStorage);
  /external/skia/include/core/
SkMallocPixelRef.h 29 void* getAddr() const { return fStorage; }
42 void* fStorage;
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);
98 T* fPtr; // NULL or fStorage
99 char fStorage[sizeof(T)];
105 lazy->fPtr = reinterpret_cast<T*>(lazy->fStorage);
  /external/chromium_org/skia/ext/
SkThread_chrome.cc 70 COMPILE_ASSERT(sizeof(base::Lock) <= sizeof(fStorage), Lock_is_too_big_for_SkMutex);
71 base::Lock* lock = reinterpret_cast<base::Lock*>(fStorage);
76 base::Lock* lock = reinterpret_cast<base::Lock*>(fStorage);
81 base::Lock* lock = reinterpret_cast<base::Lock*>(fStorage);
86 base::Lock* lock = reinterpret_cast<base::Lock*>(fStorage);
  /external/chromium_org/third_party/skia/src/ports/
SkThread_win.cpp 50 SK_COMPILE_ASSERT(sizeof(fStorage) > sizeof(CRITICAL_SECTION),
52 InitializeCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
56 DeleteCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
60 EnterCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
64 LeaveCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
SkThread_pthread.cpp 157 if (sizeof(pthread_mutex_t) > sizeof(fStorage)) {
169 status = pthread_mutex_init((pthread_mutex_t*)fStorage, &attr);
175 int status = pthread_mutex_destroy((pthread_mutex_t*)fStorage);
186 int status = pthread_mutex_lock((pthread_mutex_t*)fStorage);
192 int status = pthread_mutex_unlock((pthread_mutex_t*)fStorage);
  /external/skia/src/ports/
SkThread_win.cpp 50 SK_COMPILE_ASSERT(sizeof(fStorage) > sizeof(CRITICAL_SECTION),
52 InitializeCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
56 DeleteCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
60 EnterCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
64 LeaveCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
SkThread_pthread.cpp 157 if (sizeof(pthread_mutex_t) > sizeof(fStorage)) {
169 status = pthread_mutex_init((pthread_mutex_t*)fStorage, &attr);
175 int status = pthread_mutex_destroy((pthread_mutex_t*)fStorage);
186 int status = pthread_mutex_lock((pthread_mutex_t*)fStorage);
192 int status = pthread_mutex_unlock((pthread_mutex_t*)fStorage);
  /external/chromium_org/third_party/skia/src/gpu/
GrPlotMgr.h 22 if (needed <= sizeof(fStorage)) {
23 fBusy = fStorage;
31 if (fBusy != fStorage) {
71 char fStorage[STORAGE];
  /external/skia/src/gpu/
GrPlotMgr.h 22 if (needed <= sizeof(fStorage)) {
23 fBusy = fStorage;
31 if (fBusy != fStorage) {
71 char fStorage[STORAGE];
  /external/chromium_org/third_party/skia/src/utils/
SkMeshUtils.cpp 17 sk_free(fStorage);
23 sk_free(fStorage);
24 fStorage = NULL;
31 sk_free(fStorage);
32 fStorage = NULL;
43 fStorage = sk_malloc_throw(fTexCount * sizeof(SkPoint) +
45 fTex = (SkPoint*)fStorage;
  /external/skia/src/utils/
SkMeshUtils.cpp 17 sk_free(fStorage);
23 sk_free(fStorage);
24 fStorage = NULL;
31 sk_free(fStorage);
32 fStorage = NULL;
43 fStorage = sk_malloc_throw(fTexCount * sizeof(SkPoint) +
45 fTex = (SkPoint*)fStorage;
  /external/chromium_org/third_party/skia/include/effects/
SkMergeImageFilter.h 38 intptr_t fStorage[16];
  /external/skia/include/effects/
SkMergeImageFilter.h 38 intptr_t fStorage[16];

Completed in 2794 milliseconds

1 2 3 4