Home
last modified time | relevance | path

Searched refs:fEntries (Results 1 – 9 of 9) sorted by relevance

/external/libusb/libusb/os/
Dhaiku_pollfs.cpp33 WatchedEntry* fEntries; member in WatchedEntry
58 fEntries(NULL), in WatchedEntry()
81 child->fLink = fEntries; in WatchedEntry()
82 fEntries = child; in WatchedEntry()
155 WatchedEntry *child = fEntries; in ~WatchedEntry()
192 WatchedEntry *child = fEntries; in EntryCreated()
204 child->fLink = fEntries; in EntryCreated()
205 fEntries = child; in EntryCreated()
216 WatchedEntry *child = fEntries; in EntryRemoved()
223 fEntries = child->fLink; in EntryRemoved()
/external/skia/src/utils/
DSkShadowUtils.cpp216 if (fEntries[i].fFactory.isCompatible(factory, translate)) { in find()
217 const SkMatrix& m = fEntries[i].fMatrix; in find()
219 if (matrix != fEntries[i].fMatrix) { in find()
228 return fEntries[i].fVertices; in find()
245 fSize -= fEntries[i].fVertices->approximateSize(); in add()
247 fEntries[i].fFactory = factory; in add()
248 fEntries[i].fVertices = vertices; in add()
249 fEntries[i].fMatrix = matrix; in add()
260 Entry fEntries[MAX_ENTRIES]; member in __anon42c018ee0111::CachedTessellations::Set
/external/skqp/src/utils/
DSkShadowUtils.cpp215 if (fEntries[i].fFactory.isCompatible(factory, translate)) { in find()
216 const SkMatrix& m = fEntries[i].fMatrix; in find()
218 if (matrix != fEntries[i].fMatrix) { in find()
227 return fEntries[i].fVertices; in find()
244 fSize -= fEntries[i].fVertices->approximateSize(); in add()
246 fEntries[i].fFactory = factory; in add()
247 fEntries[i].fVertices = vertices; in add()
248 fEntries[i].fMatrix = matrix; in add()
259 Entry fEntries[MAX_ENTRIES]; member in __anon9b2dc2850111::CachedTessellations::Set
/external/skia/src/pdf/
DSkPDFDevice.h180 SkPDFDevice::GraphicStateEntry* currentEntry() { return &fEntries[fStackDepth]; } in currentEntry()
183 SkPDFDevice::GraphicStateEntry fEntries[kMaxStackDepth + 1]; member
DSkPDFDevice.cpp194 fEntries[fStackDepth] = fEntries[fStackDepth - 1]; in push()
200 fEntries[fStackDepth] = SkPDFDevice::GraphicStateEntry(); in pop()
329 SkASSERT(fEntries[fStackDepth].fClipStackGenID == in updateMatrix()
330 fEntries[fStackDepth -1].fClipStackGenID); in updateMatrix()
/external/skqp/src/pdf/
DSkPDFDevice.h184 SkPDFDevice::GraphicStateEntry* currentEntry() { return &fEntries[fStackDepth]; } in currentEntry()
187 SkPDFDevice::GraphicStateEntry fEntries[kMaxStackDepth + 1]; member
DSkPDFDevice.cpp194 fEntries[fStackDepth] = fEntries[fStackDepth - 1]; in push()
200 fEntries[fStackDepth] = SkPDFDevice::GraphicStateEntry(); in pop()
329 SkASSERT(fEntries[fStackDepth].fClipStackGenID == in updateMatrix()
330 fEntries[fStackDepth -1].fClipStackGenID); in updateMatrix()
/external/dng_sdk/source/
Ddng_image_writer.cpp575 if (fEntries >= kMaxEntries) in Add()
582 uint32 index = fEntries; in Add()
584 for (uint32 j = 0; j < fEntries; j++) in Add()
595 for (uint32 k = fEntries; k > index; k--) in Add()
604 fEntries++; in Add()
613 if (!fEntries) return 0; in Size()
615 uint32 size = fEntries * 12 + 6; in Size()
617 for (uint32 index = 0; index < fEntries; index++) in Size()
642 if (!fEntries) return; in Put()
646 uint32 bigData = fEntries * 12 + 6; in Put()
[all …]
Ddng_image_writer.h618 uint32 fEntries; variable
628 : fEntries (0) in dng_tiff_directory()