HomeSort by relevance Sort by last modified time
    Searched full:byteinput (Results 1 - 18 of 18) sorted by null

  /dalvik/dx/tests/117-modified-utf8/com/android/dx/util/
Mutf8Test.java 20 import com.android.dex.util.ByteInput;
29 ByteInput in = new ByteArrayByteInput(
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayByteInput.java 19 public final class ByteArrayByteInput implements ByteInput {
ByteInput.java 22 public interface ByteInput {
Leb128Utils.java 82 public static int readSignedLeb128(ByteInput in) {
110 public static int readUnsignedLeb128(ByteInput in) {
Mutf8.java 33 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException {
  /libcore/dex/src/main/java/com/android/dex/util/
ByteArrayByteInput.java 19 public final class ByteArrayByteInput implements ByteInput {
ByteInput.java 22 public interface ByteInput {
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Impl.java 161 * byteInput - array of bytes to use for the update
163 * from - the offset to start in the "byteInput" array
168 static void updateHash(int[] intArray, byte[] byteInput, int fromByte, int toByte) {
191 intArray[wordIndex] |= ( byteInput[i] & 0xFF ) << ((3 - byteIndex)<<3) ;
212 intArray[wordIndex] = ( ((int) byteInput[i ] & 0xFF) <<24 ) |
213 ( ((int) byteInput[i +1] & 0xFF) <<16 ) |
214 ( ((int) byteInput[i +2] & 0xFF) <<8 ) |
215 ( ((int) byteInput[i +3] & 0xFF) ) ;
232 int w = ((int) byteInput[i] & 0xFF) <<24 ;
235 w |= ((int) byteInput[i +1] & 0xFF) <<16
    [all...]
  /libcore/dex/src/main/java/com/android/dex/
EncodedValue.java 20 import com.android.dex.util.ByteInput;
32 public ByteInput asByteInput() {
EncodedValueCodec.java 19 import com.android.dex.util.ByteInput;
123 public static int readSignedInt(ByteInput in, int zwidth) {
138 public static int readUnsignedInt(ByteInput in, int zwidth, boolean fillOnRight) {
158 public static long readSignedLong(ByteInput in, int zwidth) {
173 public static long readUnsignedLong(ByteInput in, int zwidth, boolean fillOnRight) {
Leb128.java 19 import com.android.dex.util.ByteInput;
81 public static int readSignedLeb128(ByteInput in) {
109 public static int readUnsignedLeb128(ByteInput in) {
EncodedValueReader.java 19 import com.android.dex.util.ByteInput;
45 protected final ByteInput in;
50 public EncodedValueReader(ByteInput in) {
64 public EncodedValueReader(ByteInput in, int knownType) {
Mutf8.java 19 import com.android.dex.util.ByteInput;
34 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException {
Dex.java 21 import com.android.dex.util.ByteInput;
513 public final class Section implements ByteInput, ByteOutput {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsBackupHelper.java 99 ByteArrayInputStream byteInput = new ByteArrayInputStream(rawBytes);
100 DataInputStream dataInput = new DataInputStream(byteInput);
  /prebuilts/runtime/common/dex/
dex-host-prebuilt.jar 
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoDecoder.java 20 import com.android.dex.util.ByteInput;
231 private int readStringIndex(ByteInput bs) throws IOException {
250 ByteInput bs = new ByteArrayByteInput(encoded);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoDecoder.java 29 import com.android.dx.util.ByteInput;
221 private int readStringIndex(ByteInput bs) throws IOException {
240 ByteInput bs = new ByteArrayByteInput(encoded);

Completed in 523 milliseconds