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

1 2

  /external/skia/src/ports/
SkThread_win.cpp 45 COMPILE_ASSERT(sizeof(fStorage) > sizeof(CRITICAL_SECTION),
47 InitializeCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
52 DeleteCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
57 EnterCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
62 LeaveCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
SkThread_pthread.cpp 47 if (sizeof(pthread_mutex_t) > sizeof(fStorage))
60 status = pthread_mutex_init((pthread_mutex_t*)fStorage, &attr);
67 int status = pthread_mutex_destroy((pthread_mutex_t*)fStorage);
79 int status = pthread_mutex_lock((pthread_mutex_t*)fStorage);
86 int status = pthread_mutex_unlock((pthread_mutex_t*)fStorage);
  /external/skia/include/core/
SkPerspIter.h 36 const SkFixed* getXY() const { return fStorage; }
49 SkFixed fStorage[kCount * 2];
SkMallocPixelRef.h 53 void* fStorage;
SkDescriptor.h 163 if (size <= sizeof(fStorage))
164 fDesc = (SkDescriptor*)(void*)fStorage;
170 if (fDesc != (SkDescriptor*)(void*)fStorage)
182 uint32_t fStorage[(kStorageSize + 3) >> 2];
SkThread_platform.h 66 uint32_t fStorage[kStorageIntCount];
SkTemplates.h 132 fArray = new (fStorage) T[count];
169 // since we come right after fArray, fStorage should be properly aligned
170 char fStorage[N * sizeof(T)];
SkTypes.h 365 fPtr = fStorage;
371 if (fPtr != (void*)fStorage)
377 uint32_t fStorage[(kSize + 3) >> 2];
SkTSearch.h 151 char* fLC; // points to either the heap or fStorage
156 char fStorage[STORAGE+1];
SkCanvas.h     [all...]
  /external/skia/src/utils/
SkMeshUtils.cpp 10 sk_free(fStorage);
16 sk_free(fStorage);
17 fStorage = NULL;
24 sk_free(fStorage);
25 fStorage = NULL;
36 fStorage = sk_malloc_throw(fTexCount * sizeof(SkPoint) +
38 fTex = (SkPoint*)fStorage;
SkInterpolator.cpp 22 fStorage = NULL;
28 if (fStorage) {
29 sk_free(fStorage);
38 if (fStorage) {
39 sk_free(fStorage);
40 fStorage = NULL;
151 fStorage = sk_malloc_throw((sizeof(SkScalar) * elemCount +
153 fTimes = (SkTimeCode*) fStorage;
154 fValues = (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
  /external/skia/src/core/
SkTemplatesPriv.h 60 SkAutoTPlacementDelete(T* obj, void* storage) : fObj(obj), fStorage(storage)
67 if (fObj == fStorage)
81 void* fStorage;
SkRegion_path.cpp 49 const Scanline* line = (Scanline*)fStorage;
71 SkRegion::RunType* fStorage;
97 sk_free(fStorage);
119 fStorage = (SkRegion::RunType*)sk_malloc_flags(size.get32(), 0);
120 if (NULL == fStorage) {
132 fCurrScanline = (Scanline*)fStorage;
166 SkASSERT(fCurrXPtr - fStorage < fStorageCount);
174 const SkRegion::RunType* line = fStorage;
182 SkASSERT((const SkRegion::RunType*)fCurrScanline - fStorage == 4);
184 const Scanline* line = (const Scanline*)fStorage;
    [all...]
SkTSearch.cpp 99 lc = fStorage;
119 if (fLC != fStorage) {
SkScan_AntiPath.cpp 223 uint32_t fStorage[(kMAX_STORAGE >> 2) + 1];
231 fMask.fImage = (uint8_t*)fStorage;
240 // uninitialized memory. See comment in add_aa_span and fStorage[].
241 memset(fStorage, 0, fMask.fBounds.height() * fMask.fRowBytes + 1);
278 // (see the + 1 comment in fStorage[]
SkBitmap.cpp 379 fStorage = storage;
387 sk_free(fStorage);
392 return fStorage;
403 buffer.writePad(fStorage, fSize);
414 fStorage = sk_malloc_throw(fSize);
415 buffer.read(fStorage, fSize);
    [all...]
SkDraw.cpp 76 fStorage, sizeof(fStorage));
85 uint32_t fStorage[kBlitterStorageLongCount];
89 if ((void*)fBlitter == (void*)fStorage) {
104 fStorage, sizeof(fStorage)));
112 if ((void*)shader == (void*)fStorage) {
121 uint32_t fStorage[kBlitterStorageLongCount];
    [all...]
  /external/skia/src/images/
SkFlipPixelRef.cpp 9 fStorage = sk_malloc_throw(fSize << 1);
10 fPage0 = fStorage;
11 fPage1 = (char*)fStorage + fSize;
15 sk_free(fStorage);
67 fStorage = sk_malloc_throw(fSize << 1);
68 fPage0 = fStorage;
69 fPage1 = (char*)fStorage + fSize;
SkImageDecoder_libpvjpeg.cpp 21 char fStorage[STORAGE_SIZE];
156 char* storage = fStorage;
179 SkASSERT(storage == fStorage);
181 SkASSERT((size_t)(consumed + bytesInStorage) <= sizeof(fStorage));
182 SkASSERT(sizeof(fStorage) == STORAGE_SIZE);
SkCreateRLEPixelRef.cpp 47 : SkBitmap::RLEPixels(width, height), fStorage(chunkSize) {
50 SkChunkAlloc fStorage;
80 dstRow = (uint8_t*)rlePixels->fStorage.allocThrow(size);
  /external/skia/include/utils/
SkMeshUtils.h 33 void* fStorage; // may be null
SkInterpolator.h 87 SkTimeCode* fTimes; // pointer into fStorage
88 void* fStorage;
125 SkScalar* fValues; // pointer into fStorage
  /external/skia/src/animator/
SkOperandIterpolator.cpp 38 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount);
39 fTimes = (SkTimeCode*) fStorage;
40 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
  /external/skia/include/images/
SkFlipPixelRef.h 77 void* fStorage;
78 void* fPage0; // points into fStorage;
79 void* fPage1; // points into fStorage;
80 size_t fSize; // size of 1 page. fStorage holds 2 pages

Completed in 236 milliseconds

1 2