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

  /dalvik/dx/src/com/android/dx/io/
EncodedValueReader.java 19 import com.android.dx.util.ByteInput;
44 protected final ByteInput in;
46 public EncodedValueReader(ByteInput in) {
137 private int readIndex(ByteInput in, int byteCount) {
EncodedValue.java 20 import com.android.dx.util.ByteInput;
32 public ByteInput asByteInput() {
DexBuffer.java 23 import com.android.dx.util.ByteInput;
303 public final class Section implements ByteInput, ByteOutput {
  /dalvik/dx/src/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/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Impl.java 162 * byteInput - array of bytes to use for the update
164 * from - the offset to start in the "byteInput" array
169 static void updateHash(int[] intArray, byte[] byteInput, int fromByte, int toByte) {
192 intArray[wordIndex] |= ( byteInput[i] & 0xFF ) << ((3 - byteIndex)<<3) ;
213 intArray[wordIndex] = ( ((int) byteInput[i ] & 0xFF) <<24 ) |
214 ( ((int) byteInput[i +1] & 0xFF) <<16 ) |
215 ( ((int) byteInput[i +2] & 0xFF) <<8 ) |
216 ( ((int) byteInput[i +3] & 0xFF) ) ;
233 int w = ((int) byteInput[i] & 0xFF) <<24 ;
236 w |= ((int) byteInput[i +1] & 0xFF) <<16
    [all...]
  /dalvik/dx/tests/117-modified-utf8/com/android/dx/util/
Mutf8Test.java 26 ByteInput in = new ByteArrayByteInput(
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsBackupHelper.java 99 ByteArrayInputStream byteInput = new ByteArrayInputStream(rawBytes);
100 DataInputStream dataInput = new DataInputStream(byteInput);
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 29 import com.android.dx.util.ByteInput;
286 private void copyBytes(ByteInput in, ByteOutput out, int size) {
  /dalvik/dx/src/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 1188 milliseconds