Searched refs:popCount (Results 1 – 9 of 9) sorted by relevance
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/ |
D | FrameSnapshot.java | 47 static IFrame create(final AnalyzerAdapter analyzer, final int popCount) { in create() argument 52 final Object[] stack = reduce(analyzer.stack, popCount); in create() 61 private static Object[] reduce(final List<Object> source, final int popCount) { in reduce() argument 63 final int size = source.size() - popCount; in reduce()
|
D | MethodProbesAdapter.java | 177 private IFrame frame(final int popCount) { in frame() argument 178 return FrameSnapshot.create(analyzer, popCount); in frame()
|
/external/proguard/src/proguard/optimize/evaluation/ |
D | SimpleEnumUseSimplifier.java | 634 int popCount = in replaceInstruction() local 638 insertPopInstructions(offset, popCount); in replaceInstruction() 640 …toString(offset)+" -> "+replacementInstruction.toString()+(popCount == 0 ? "" : " ("+popCount+" po… in replaceInstruction() 687 private void insertPopInstructions(int offset, int popCount) in insertPopInstructions() argument 689 switch (popCount) in insertPopInstructions() 719 new Instruction[popCount / 2 + popCount % 2]; in insertPopInstructions() 724 for (int index = 0; index < popCount / 2; index++) in insertPopInstructions() 729 if (popCount % 2 == 1) in insertPopInstructions() 734 popInstructions[popCount / 2] = popInstruction; in insertPopInstructions()
|
D | EvaluationShrinker.java | 732 int popCount = instruction.stackPopCount(clazz); in visitAnyInstruction() local 733 if (popCount > 0) in visitAnyInstruction() 742 … for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++) in visitAnyInstruction() 784 insertPopInstructions(offset, false, true, popCount); in visitAnyInstruction() 813 int unpoppedStackSize = tracedStack.size() - popCount; in visitAnyInstruction() 863 int popCount = instruction.stackPopCount(clazz); in visitAnyInstruction() local 864 if (popCount > 0) in visitAnyInstruction() 872 … for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++) in visitAnyInstruction() 938 int popCount = simpleInstruction.stackPopCount(clazz); in visitSimpleInstruction() local 939 if (popCount > 0) in visitSimpleInstruction() [all …]
|
D | EvaluationSimplifier.java | 1245 int popCount = in replaceInstruction() local 1249 insertPopInstructions(offset, popCount); in replaceInstruction() 1251 …toString(offset)+" -> "+replacementInstruction.toString()+(popCount == 0 ? "" : " ("+popCount+" po… in replaceInstruction() 1269 private void insertPopInstructions(int offset, int popCount) in insertPopInstructions() argument 1271 switch (popCount) in insertPopInstructions() 1301 new Instruction[popCount / 2 + popCount % 2]; in insertPopInstructions() 1306 for (int index = 0; index < popCount / 2; index++) in insertPopInstructions() 1311 if (popCount % 2 == 1) in insertPopInstructions() 1316 popInstructions[popCount / 2] = popInstruction; in insertPopInstructions()
|
/external/deqp/modules/egl/ |
D | teglMultiThreadTests.cpp | 596 const int popCount = rnd.getInt(0, (int)(configs.size()-2)); in runThread() local 598 configs.erase(configs.begin() + (configs.size() - popCount), configs.end()); in runThread() 644 const int popCount = rnd.getInt(0, (int)(configs.size()-2)); in runThread() local 646 configs.erase(configs.begin() + (configs.size() - popCount), configs.end()); in runThread()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_util.cpp | 285 unsigned int BitSet::popCount() const in popCount() function in nv50_ir::BitSet
|
D | nv50_ir_util.h | 564 unsigned int popCount() const;
|
D | nv50_ir_emit_gm107.cpp | 3803 if (!srcs.popCount()) in needRdDepBar() 3823 if (!srcs.popCount()) in needRdDepBar()
|