Home
last modified time | relevance | path

Searched refs:fFront (Results 1 – 4 of 4) sorted by relevance

/external/skia/legacy/src/core/
DSkDeque.cpp33 fFront = fBack = NULL; in SkDeque()
41 fFront = (Head*)storage; in SkDeque()
42 fFront->init(storageSize); in SkDeque()
44 fFront = NULL; in SkDeque()
46 fBack = fFront; in SkDeque()
50 Head* head = fFront; in ~SkDeque()
63 Head* front = fFront; in front()
97 if (NULL == fFront) { in push_front()
98 fFront = (Head*)sk_malloc_throw(sizeof(Head) + in push_front()
100 fFront->init(sizeof(Head) + INIT_ELEM_COUNT * fElemSize); in push_front()
[all …]
/external/skia/src/core/
DSkDeque.cpp36 fFront = fBack = NULL; in SkDeque()
54 fFront = fBack = NULL; in SkDeque()
99 if (NULL == fFront) { in push_front()
101 fFront = fBack = begin; in push_front()
104 fFront = begin; in push_front()
141 SkASSERT(NULL == fFront); in push_back()
142 fFront = fBack = end; in push_back()
144 SkASSERT(NULL != fFront); in push_back()
173 fFront = first->fBegin; in pop_front()
177 fFront = fBack = NULL; in pop_front()
[all …]
/external/skia/include/core/
DSkDeque.h40 const void* front() const { return fFront; } in front()
118 void* fFront; variable
/external/skia/legacy/include/core/
DSkDeque.h65 Head* fFront;