Searched defs:popCount (Results 1 - 7 of 7) sorted by relevance

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
H A DFrameSnapshot.java42 * @param popCount
47 static IFrame create(final AnalyzerAdapter analyzer, final int popCount) { argument
52 final Object[] stack = reduce(analyzer.stack, popCount);
61 private static Object[] reduce(final List<Object> source, final int popCount) { argument
63 final int size = source.size() - popCount;
H A DMethodProbesAdapter.java177 private IFrame frame(final int popCount) { argument
178 return FrameSnapshot.create(analyzer, popCount);
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp278 data[(size + 31) / 32 - 1] = 0; // clear unused bits (e.g. for popCount)
283 unsigned int BitSet::popCount() const function in class:nv50_ir::BitSet
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationSimplifier.java1245 int popCount =
1249 insertPopInstructions(offset, popCount);
1251 if (DEBUG) System.out.println(" Replacing instruction "+instruction.toString(offset)+" -> "+replacementInstruction.toString()+(popCount == 0 ? "" : " ("+popCount+" pops)"));
1269 private void insertPopInstructions(int offset, int popCount) argument
1271 switch (popCount)
1301 new Instruction[popCount / 2 + popCount % 2];
1306 for (int index = 0; index < popCount / 2; index++)
1311 if (popCount
[all...]
H A DSimpleEnumUseSimplifier.java634 int popCount =
638 insertPopInstructions(offset, popCount);
640 if (DEBUG) System.out.println(" Replacing instruction "+instruction.toString(offset)+" -> "+replacementInstruction.toString()+(popCount == 0 ? "" : " ("+popCount+" pops)"));
663 //int popCount = instruction.stackPopCount(clazz);
665 //insertPopInstructions(offset, popCount);
667 //if (DEBUG) System.out.println(" Deleting instruction "+instruction.toString(offset)+(popCount == 0 ? "" : " ("+popCount+" pops)"));
687 private void insertPopInstructions(int offset, int popCount) argument
689 switch (popCount)
[all...]
H A DEvaluationShrinker.java732 int popCount = instruction.stackPopCount(clazz);
733 if (popCount > 0)
742 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++)
784 insertPopInstructions(offset, false, true, popCount);
813 int unpoppedStackSize = tracedStack.size() - popCount;
863 int popCount = instruction.stackPopCount(clazz);
864 if (popCount > 0)
872 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++)
938 int popCount = simpleInstruction.stackPopCount(clazz);
939 if (popCount >
1745 insertPopInstructions(int offset, boolean replace, boolean before, int popCount) argument
[all...]
/external/deqp/modules/egl/
H A DteglMultiThreadTests.cpp596 const int popCount = rnd.getInt(0, (int)(configs.size()-2)); local
598 configs.erase(configs.begin() + (configs.size() - popCount), configs.end());
644 const int popCount = rnd.getInt(0, (int)(configs.size()-2)); local
646 configs.erase(configs.begin() + (configs.size() - popCount), configs.end());

Completed in 233 milliseconds