HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 576 - 600 of 2990) sorted by null

<<21222324252627282930>>

  /frameworks/base/media/libmediaplayerservice/
VorbisMetadataRetriever.h 35 virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 106 public synchronized int read(byte[] b, int offset, int length) throws IOException {
111 if ((offset | length) < 0 || length > b.length - offset) {
118 int offset1 = offset;
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/mtd/
partitions.h 20 u_int32_t offset; member in struct:mtd_partition
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/mtd/
partitions.h 20 u_int32_t offset; member in struct:mtd_partition
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/mtd/
partitions.h 20 u_int32_t offset; member in struct:mtd_partition
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
android_pmem.h 43 unsigned long offset; member in struct:pmem_region
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/mtd/
partitions.h 20 u_int32_t offset; member in struct:mtd_partition
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/mtd/
partitions.h 20 u_int32_t offset; member in struct:mtd_partition
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
android_pmem.h 43 unsigned long offset; member in struct:pmem_region
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/mtd/
partitions.h 20 u_int32_t offset; member in struct:mtd_partition
  /bionic/libc/arch-arm/include/machine/
cpu-features.h 146 * value of the pc register, including ldm { ...,pc } or 'add pc, #offset'
166 # define PLD(reg,offset) pld [reg, offset]
168 # define PLD(reg,offset) /* nothing */
  /cts/tools/dx-tests/src/dxconvext/
ClassFileParser.java 127 * @param offset offset into <code>bytes</code> for the start of
132 public void startParsingMember(ByteArray bytes, int offset,
134 // ByteArray ba = bytes.slice(offset, bytes.size());
135 out("// ========== start-ParseMember:" + name + ", offset "
136 + offset + ", len:" + (bytes.size() - offset)
146 * @param offset offset into <code>bytes</code> for the end of the
152 public void endParsingMember(ByteArray bytes, int offset,
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form30t.java 84 int offset = ((TargetInsn) insn).getTargetOffset(); local
87 (short) offset,
88 (short) (offset >> 16));
Form31t.java 90 int offset = ((TargetInsn) insn).getTargetOffset(); local
93 (short) offset,
94 (short) (offset >> 16));
  /dalvik/libcore/crypto/src/main/java/javax/crypto/
MacSpi.java 75 * buffer {@code input} from the specified {@code offset} and length {@code
80 * @param offset
81 * the offset in the buffer.
85 protected abstract void engineUpdate(byte[] input, int offset, int len);
102 int offset = input.arrayOffset(); local
105 engineUpdate(bInput, offset + position, limit - position);
  /dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
RC2ParameterSpec.java 77 * <code>offset</code> must be at least 8 bytes which are copied to protect
84 * @param offset
85 * the offset in the initialization vector to start at.
88 * <code>offset</code> is shorter than 8 bytes.
90 public RC2ParameterSpec(int effectiveKeyBits, byte[] iv, int offset) {
94 if (iv.length - offset < 8) {
99 System.arraycopy(iv, offset, this.iv, 0, 8);
  /dalvik/libcore/luni/src/main/java/java/io/
LineNumberReader.java 136 * them in the character array {@code buffer} starting at {@code offset}.
146 * @param offset
157 public int read(char[] buffer, int offset, int count) throws IOException {
159 int read = super.read(buffer, offset, count);
164 char ch = buffer[offset + i];
PipedReader.java 171 * in the character array {@code buffer} starting at {@code offset}. If
182 * @param offset
190 * if {@code offset < 0} or {@code count < 0}, or if {@code
191 * offset + count} is greater than the size of {@code buffer}.
200 public synchronized int read(char[] buffer, int offset, int count) throws IOException {
212 // used (offset | count) < 0 instead of (offset < 0) || (count < 0)
217 if ((offset | count) < 0 || count > buffer.length - offset) {
254 System.arraycopy(this.buffer, out, buffer, offset, copyLength)
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
WriterTest.java 295 private int offset; field in class:WriterTest.MockWriter
300 offset = 0;
312 public void write(char[] buffer, int offset, int count)
317 if (offset < 0 || count < 0 || offset >= buffer.length) {
320 count = Math.min(count, buffer.length - offset);
321 count = Math.min(count, this.length - this.offset);
323 contents[this.offset + i] = buffer[offset + i];
325 this.offset += count
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/
MappedByteBuffer.java 53 MappedByteBuffer(PlatformAddress addr, int capa, int offset, int mode) {
58 wrapped = new ReadOnlyDirectByteBuffer(addr, capa, offset);
62 wrapped = new ReadWriteDirectByteBuffer(addr, capa, offset);
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
IOUtil.java 70 public static int readInputStreamReader(char[] buf, int offset, int length,
78 Util.assertArrayIndex(buf, offset, length);
88 System.arraycopy(chars.array(), position, buf, offset, local
92 offset += availableChars;
103 System.arraycopy(chars.array(), position, buf, offset, local
143 public static void writeOutputStreamWriter(String str, int offset,
146 Util.assertArrayIndex(str.length(), offset, count);
147 CharBuffer chars = CharBuffer.wrap(str, offset, count + offset);
170 public static void writeOutputStreamWriter(char[] buf, int offset,
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/crypto/
RandomBitsSupplier.java 132 int offset = 0; local
136 bytesRead = bis.read(bytes, offset, numBytes-total);
147 offset += bytesRead;
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/utils/
Array.java 45 // Prefixes to be added to the offset values
60 // put offset
61 String offset = Integer.toHexString(i); local
62 sb.append(offsetPrefix[offset.length()]);
63 sb.append(offset);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
OpenSSLPBEParametersGenerator.java 50 int offset = 0; local
60 System.arraycopy(buf, 0, key, offset, len);
61 offset += len;
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLEngineAppData.java 58 protected int placeTo(ByteBuffer[] dsts, int offset, int length) {
66 for (int i=offset; i<offset+length; i++) {

Completed in 1370 milliseconds

<<21222324252627282930>>