Searched refs:popCount (Results 1 – 6 of 6) sorted by relevance
/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/nv50/codegen/ |
D | nv50_ir_util.cpp | 283 unsigned int BitSet::popCount() const in popCount() function in nv50_ir::BitSet
|
D | nv50_ir_util.h | 559 unsigned int popCount() const;
|