Searched defs:entryIdx (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp115 int entryIdx; local
117 entryIdx = this->search(desc);
118 if (entryIdx >= 0) {
119 entry = fEntries[entryIdx];
158 // just before the entry at ~entryIdx (in order to keep fEntries sorted by descriptor).
159 entryIdx = ~entryIdx;
160 if (entryIdx < purgeIdx) {
161 // Let E and P be the entries at index entryIdx and purgeIdx, respectively.
166 size_t copySize = (purgeIdx - entryIdx) * sizeo
[all...]
/external/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp113 int entryIdx; local
115 entryIdx = this->search(desc);
116 if (entryIdx >= 0) {
117 entry = fEntries[entryIdx];
155 // just before the entry at ~entryIdx (in order to keep fEntries sorted by descriptor).
156 entryIdx = ~entryIdx;
157 if (entryIdx < purgeIdx) {
158 // Let E and P be the entries at index entryIdx and purgeIdx, respectively.
163 size_t copySize = (purgeIdx - entryIdx) * sizeo
[all...]

Completed in 59 milliseconds