HomeSort by relevance Sort by last modified time
    Searched defs:instruction (Results 76 - 100 of 327) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction21t.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction21t;
DexBackedInstruction22cs.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction22cs;
DexBackedInstruction22t.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction22t;
DexBackedInstruction22x.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction22x;
DexBackedInstruction23x.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction23x;
DexBackedInstruction30t.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction30t;
DexBackedInstruction31c.java 32 package org.jf.dexlib2.dexbacked.instruction;
37 import org.jf.dexlib2.iface.instruction.formats.Instruction31c;
DexBackedInstruction31i.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction31i;
DexBackedInstruction31t.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction31t;
DexBackedInstruction32x.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction32x;
DexBackedInstruction3rmi.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction3rmi;
DexBackedInstruction3rms.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction3rms;
DexBackedInstruction51l.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction51l;
DexBackedUnknownInstruction.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.UnknownInstruction;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
Instruction.java 32 package org.jf.dexlib2.iface.instruction;
37 * This class represents a generic instruction.
39 * There are two categories of sub-interfaces of this interface. The dexlib2.iface.instruction.* interfaces are set of
40 * generic categories of instructions, while the dexlib2.iface.instruction.formats.* interfaces each represent a
41 * specific instruction format, and are typically built up as a composite of generic instruction interfaces.
43 public interface Instruction {
45 * Gets the opcode of this instruction.
47 * @return The Opcode of this instruction.
52 * Gets the size of this instruction
    [all...]
ReferenceInstruction.java 32 package org.jf.dexlib2.iface.instruction;
38 public interface ReferenceInstruction extends Instruction {
SwitchElement.java 32 package org.jf.dexlib2.iface.instruction;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
ArrayPayload.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.PayloadInstruction;
UnknownInstruction.java 32 package org.jf.dexlib2.iface.instruction.formats;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction10x.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction10x;
47 public static ImmutableInstruction10x of(Instruction10x instruction) {
48 if (instruction instanceof ImmutableInstruction10x) {
49 return (ImmutableInstruction10x)instruction;
51 return new ImmutableInstruction10x(instruction.getOpcode());
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 26 import proguard.classfile.instruction.*;
27 import proguard.classfile.instruction.visitor.InstructionVisitor;
33 * This AttributeVisitor finds all instruction offsets, branch targets, and
51 * Returns whether the instruction at the given offset is reachable in
199 * Marks the branch targets of the given jump offsets for the instruction
233 // Continue with the current instruction as long as we haven't marked it
237 // Get the current instruction.
238 Instruction instruction = InstructionFactory.create(code, offset); local
244 // instruction in a moment
    [all...]
  /art/compiler/optimizing/
ssa_type_propagation.cc 35 // Re-compute and update the type of the instruction. Returns
77 HPhi* instruction = worklist_.Pop(); local
78 if (UpdateType(instruction)) {
79 AddDependentInstructionsToWorklist(instruction);
84 void SsaTypePropagation::AddToWorklist(HPhi* instruction) {
85 worklist_.Add(instruction);
88 void SsaTypePropagation::AddDependentInstructionsToWorklist(HPhi* instruction) {
89 for (HUseIterator<HInstruction> it(instruction->GetUses()); !it.Done(); it.Advance()) {
  /external/lzma/C/
BraIA64.c 29 UInt64 instruction, instNorm; local
35 instruction = 0;
37 instruction += (UInt64)data[i + j + bytePos] << (8 * j);
39 instNorm = instruction >> bitRes;
59 instruction &= (1 << bitRes) - 1;
60 instruction |= (instNorm << bitRes);
62 data[i + j + bytePos] = (Byte)(instruction >> (8 * j));
  /external/proguard/src/proguard/classfile/instruction/
LookUpSwitchInstruction.java 21 package proguard.classfile.instruction;
25 import proguard.classfile.instruction.visitor.InstructionVisitor;
28 * This Instruction represents a simple instruction without variable arguments
60 * Copies the given instruction into this instruction.
61 * @param lookUpSwitchInstruction the instruction to be copied.
62 * @return this instruction.
75 // Implementations for Instruction.
77 public Instruction shrink(
    [all...]
TableSwitchInstruction.java 21 package proguard.classfile.instruction;
25 import proguard.classfile.instruction.visitor.InstructionVisitor;
28 * This Instruction represents a simple instruction without variable arguments
63 * Copies the given instruction into this instruction.
64 * @param tableSwitchInstruction the instruction to be copied.
65 * @return this instruction.
79 // Implementations for Instruction.
81 public Instruction shrink(
    [all...]

Completed in 429 milliseconds

1 2 34 5 6 7 8 91011>>