HomeSort by relevance Sort by last modified time
    Searched refs:bufferIndex (Results 26 - 50 of 56) sorted by null

12 3

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction22cs.java 62 private Instruction22cs(Opcode opcode, byte[] buffer, int bufferIndex) {
65 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
66 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
67 this.fieldOffset = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
93 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
94 return new Instruction22cs(opcode, buffer, bufferIndex);
Instruction3rms.java 71 private Instruction3rms(Opcode opcode, byte[] buffer, int bufferIndex) {
74 this.regCount = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
75 this.methodIndex = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
76 this.startReg = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 4);
103 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
104 return new Instruction3rms(opcode, buffer, bufferIndex);
PackedSwitchDataPseudoInstruction.java 62 public PackedSwitchDataPseudoInstruction(byte[] buffer, int bufferIndex) {
65 byte opcodeByte = buffer[bufferIndex];
69 byte subopcodeByte = buffer[bufferIndex+1];
74 int targetCount = NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
75 this.firstKey = NumberUtils.decodeInt(buffer, bufferIndex + 4);
79 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 8 + 4*i);
151 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
155 return new PackedSwitchDataPseudoInstruction(buffer, bufferIndex);
Instruction11x.java 52 private Instruction11x(Opcode opcode, byte[] buffer, int bufferIndex) {
55 this.regA = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
72 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
73 return new Instruction11x(opcode, buffer, bufferIndex);
Instruction35c.java 79 protected Instruction35c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
80 super(dexFile, opcode, buffer, bufferIndex);
86 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
87 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
88 this.regD = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 4]);
89 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]);
90 this.regF = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 5]);
91 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]);
156 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
157 return new Instruction35c(dexFile, opcode, buffer, bufferIndex);
    [all...]
Instruction35s.java 79 protected Instruction35s(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
80 super(dexFile, opcode, buffer, bufferIndex);
88 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
89 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
90 this.regD = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 4]);
91 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]);
92 this.regF = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 5]);
93 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]);
156 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
157 return new Instruction35s(dexFile, opcode, buffer, bufferIndex);
    [all...]
Instruction21c.java 61 private Instruction21c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
62 super(dexFile, opcode, buffer, bufferIndex);
70 this.regA = buffer[bufferIndex + 1];
92 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
93 return new Instruction21c(dexFile, opcode, buffer, bufferIndex);
Instruction3rc.java 72 private Instruction3rc(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
73 super(dexFile, opcode, buffer, bufferIndex);
75 this.regCount = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
76 this.startReg = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 4);
124 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
125 return new Instruction3rc(dexFile, opcode, buffer, bufferIndex);
SparseSwitchDataPseudoInstruction.java 70 public SparseSwitchDataPseudoInstruction(byte[] buffer, int bufferIndex) {
73 byte opcodeByte = buffer[bufferIndex];
77 byte subopcodeByte = buffer[bufferIndex+1];
82 int targetCount = NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
87 keys[i] = NumberUtils.decodeInt(buffer, bufferIndex + 4 + i*4);
88 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 4 + targetCount*4 + i*4);
170 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
174 return new SparseSwitchDataPseudoInstruction(buffer, bufferIndex);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
InstructionWithReference.java 52 protected InstructionWithReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
55 this.referenceType = readReferenceType(opcode, buffer, bufferIndex);
56 int itemIndex = getReferencedItemIndex(buffer, bufferIndex);
60 protected int getReferencedItemIndex(byte[] buffer, int bufferIndex) {
61 return NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
72 protected ReferenceType readReferenceType(Opcode opcode, byte[] buffer, int bufferIndex) {
Instruction.java 69 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex);
  /external/proguard/src/proguard/io/
ManifestRewriter.java 63 private int bufferIndex = 0;
79 if (bufferIndex < bufferSize)
81 return buffer[bufferIndex++];
91 bufferIndex = 0;
  /frameworks/ex/variablespeed/jni/
decode_buffer.cc 75 size_t bufferIndex = end_ / sizeOfOneBuffer_;
76 if (bufferIndex >= data_.size()) {
79 data_.at(bufferIndex)[end_ % sizeOfOneBuffer_] = value;
  /external/icu4c/i18n/
ucoleitr.cpp 59 int32_t bufferIndex;
73 bufferIndex = 0;
86 return bufferIndex <= 0;
91 if (bufferIndex >= bufferSize) {
104 buffer[bufferIndex].ce = ce;
105 buffer[bufferIndex].low = ixLow;
106 buffer[bufferIndex].high = ixHigh;
108 bufferIndex += 1;
113 if (bufferIndex > 0) {
114 return &buffer[--bufferIndex];
    [all...]
csrsbcs.cpp     [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
ArrayDataMethodItem.java 58 ByteRenderer.writeUnsignedTo(writer, element.buffer[element.bufferIndex+i]);
  /frameworks/av/include/media/stagefright/
MediaCodec.h 211 status_t queueCSDInputBuffer(size_t bufferIndex);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar 
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /frameworks/av/media/libstagefright/
MediaCodec.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
multibufst.h 218 CARD16 bufferIndex B16;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
multibufst.h 218 CARD16 bufferIndex B16;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
multibufst.h 218 CARD16 bufferIndex B16;
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
OMX_AacEncoder.c     [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_cmd.c     [all...]

Completed in 1617 milliseconds

12 3