Home
last modified time | relevance | path

Searched refs:removeCount (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/program/
Dprog_optimize.c165 GLint i, removeEnd = 0, removeCount = 0; in remove_instructions() local
172 if (removeCount == 0) { in remove_instructions()
175 removeCount = 1; in remove_instructions()
179 removeCount++; in remove_instructions()
186 if (removeCount > 0) { in remove_instructions()
187 GLint removeStart = removeEnd - removeCount + 1; in remove_instructions()
188 _mesa_delete_instructions(prog, removeStart, removeCount, mem_ctx); in remove_instructions()
189 removeStart = removeCount = 0; /* reset removal info */ in remove_instructions()
194 if (removeCount > 0) { in remove_instructions()
195 GLint removeStart = removeEnd - removeCount + 1; in remove_instructions()
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowDownloadManager.java33 int removeCount = 0; in remove() local
36 removeCount++; in remove()
39 return removeCount; in remove()
/external/replicaisland/src/com/replica/replicaisland/
DChangeComponentsComponent.java117 final int removeCount = mComponentsToRemove.getCount(); in activate() local
118 for (int x = 0; x < removeCount; x++) { in activate()
/external/guava/android/guava/src/com/google/common/collect/
DMultisets.java776 int removeCount = occurrencesToRemove.count(entry.getElement());
777 if (removeCount >= entry.getCount()) {
780 } else if (removeCount > 0) {
781 multisetToModify.remove(entry.getElement(), removeCount);
/external/guava/guava/src/com/google/common/collect/
DMultisets.java807 int removeCount = occurrencesToRemove.count(entry.getElement());
808 if (removeCount >= entry.getCount()) {
811 } else if (removeCount > 0) {
812 multisetToModify.remove(entry.getElement(), removeCount);
/external/skia/src/gpu/
DGrDrawingManager.cpp420 int removeCount = opsTask->mergeFrom(nextTasks); in reorderTasks() local
421 for (const auto& removed : nextTasks.first(removeCount)) { in reorderTasks()
424 i += removeCount; in reorderTasks()