HomeSort by relevance Sort by last modified time
    Searched defs:reg (Results 101 - 125 of 339) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-5/arch-x86/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-8/arch-x86/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/
mt9t013.h 84 struct mt9t013_reg_struct reg[2]; member in struct:mt9t013_reg_pat
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 58 /** indexed by SSA reg; the set of SSA regs we've mapped */
166 for (RegisterSpec reg : e.getValue()) {
168 regs.append(reg.getReg());
271 * Tries to map a list of SSA registers into the a rop reg, marking
372 int reg; local
374 reg = reservedRopRegs.nextClearBit(startReg);
379 while (i < width && !reservedRopRegs.get(reg + i)) {
384 return reg;
387 reg = reservedRopRegs.nextClearBit(reg + i)
401 int reg; local
1072 private final int[] reg; field in class:FirstFitLocalCombiningAllocator.Multiset
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 58 /** indexed by SSA reg; the set of SSA regs we've mapped */
166 for (RegisterSpec reg : e.getValue()) {
168 regs.append(reg.getReg());
271 * Tries to map a list of SSA registers into the a rop reg, marking
372 int reg; local
374 reg = reservedRopRegs.nextClearBit(startReg);
379 while (i < width && !reservedRopRegs.get(reg + i)) {
384 return reg;
387 reg = reservedRopRegs.nextClearBit(reg + i)
401 int reg; local
1072 private final int[] reg; field in class:FirstFitLocalCombiningAllocator.Multiset
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpec.java 44 private final int reg; field in class:RegisterSpec
55 * @param reg {@code >= 0;} the register number
61 private static RegisterSpec intern(int reg, TypeBearer type,
63 theInterningItem.set(reg, type, local);
80 * @param reg {@code >= 0;} the register number
85 public static RegisterSpec make(int reg, TypeBearer type) {
86 return intern(reg, type, null);
94 * @param reg {@code >= 0;} the register number
100 public static RegisterSpec make(int reg, TypeBearer type,
106 return intern(reg, type, local)
596 private int reg; field in class:RegisterSpec.ForComparison
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoDecoder.java 57 /** indexed by register, the last local variable live in a reg */
154 public int reg; field in class:DebugInfoDecoder.LocalEntry
165 public LocalEntry(int address, boolean isStart, int reg, int nameIndex,
169 this.reg = reg;
177 address, isStart ? "start" : "end", reg,
288 int reg = Leb128Utils.readUnsignedLeb128(bs); local
292 address, true, reg, nameIdx, typeIdx, 0);
295 lastEntryForReg[reg] = le;
300 int reg = Leb128Utils.readUnsignedLeb128(bs) local
313 int reg = Leb128Utils.readUnsignedLeb128(bs); local
339 int reg = Leb128Utils.readUnsignedLeb128(bs); local
    [all...]

Completed in 2185 milliseconds

1 2 3 45 6 7 8 91011>>