Searched refs:category (Results 1 - 7 of 7) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
H A DInterferenceRegisterMapper.java65 public void addMapping(int oldReg, int newReg, int category) { argument
66 super.addMapping(oldReg, newReg, category);
70 if (category == 2) {
81 * @param category category of old namespace register
84 public boolean interferes(int oldReg, int newReg, int category) { argument
92 } else if (category == 1) {
96 || (interferes(oldReg, newReg+1, category-1));
133 * pinned to the specified new-namespace reg + category. Takes into
134 * account the category o
[all...]
H A DBasicRegisterMapper.java113 * @param category {@code 1..2;} width of reg
115 public void addMapping(int oldReg, int newReg, int category) { argument
125 if (runningCountNewRegisters < (newReg + category)) {
126 runningCountNewRegisters = newReg + category;
H A DSsaMethod.java316 * @param category width (1 or 2) of the register
319 public int borrowSpareRegister(int category) { argument
322 borrowedSpareRegisters += category;
323 registerCount = Math.max(registerCount, result + category);
H A DSsaBasicBlock.java625 * category/width.
639 * into account its category/width.
648 int category = rs.getCategory();
651 || (category == 2 ? regsUsed.get(reg + 1) : false);
/dalvik/dx/src/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java241 // Compute max category for remaining unmapped registers.
245 int category = ssaSpec.getCategory();
247 && category > maxCategory) {
248 maxCategory = category;
269 * @param maxAllowedCategory {@code 1..2;} maximum category
289 // the widest category used, but <shrug>
301 * @param maxAllowedCategory {@code 1..2;} the maximum category
321 * @param category {@code > 0;} width to reserve
323 private void markReserved(int ropReg, int category) { argument
324 reservedRopRegs.set(ropReg, ropReg + category, tru
560 spansParamRange(int ssaReg, int category) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DExecutionStack.java149 int category;
153 category = type.getType().getCategory();
159 if ((stackPtr + category) > stack.length) {
164 if (category == 2) {
177 * deeper half of a category-2 value.
228 * values with other values of the same category.
/dalvik/libcore/xml/src/test/java/org/apache/harmony/xml/
H A DXsltXPathConformanceTestSuite.java191 * <test-case category="XSLT-Result-Tree" id="attribset_attribset01">
210 String category = testCaseElement.getAttribute("category");
212 String name = category + "." + id;
265 return new XsltTest(category, id, purpose, spec, principalData,
313 private final String category; field in class:XsltXPathConformanceTestSuite.XsltTest
331 XsltTest(String category, String id, String purpose, String spec, argument
335 this.category = category;
406 return category
[all...]

Completed in 164 milliseconds