HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 101 - 125 of 618) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 82 public void write(byte[] b, int off, int len) throws IOException {
86 this.out.write(b, off, len);
  /external/guava/src/com/google/common/io/
CountingInputStream.java 56 @Override public int read(byte[] b, int off, int len) throws IOException {
57 int result = in.read(b, off, len);
ByteArrayDataInput.java 33 /*@Override*/ void readFully(byte b[], int off, int len);
  /external/qemu/slirp/
ip_output.c 51 * header (with len, off, ttl, proto, tos, src, dst).
61 int len, off, error = 0; local
133 for (off = hlen + len; off < (u_int16_t)ip->ip_len; off += len) {
152 mhip->ip_off = ((off - hlen) >> 3) + (ip->ip_off & ~IP_MF);
155 if (off + len >= (u_int16_t)ip->ip_len)
156 len = (u_int16_t)ip->ip_len - off;
161 if (m_copy(m, m0, off, len) < 0) {
sbuf.c 169 sbcopy(struct sbuf *sb, int off, int len, char *to)
173 from = sb->sb_rptr + off;
181 /* re-use off */
182 off = (sb->sb_data + sb->sb_datalen) - from;
183 if (off > len) off = len;
184 memcpy(to,from,off);
185 len -= off;
187 memcpy(to+off,sb->sb_data,len);
  /external/qemu/slirp-android/
ip_output.c 51 * header (with len, off, ttl, proto, tos, src, dst).
61 int len, off, error = 0; local
133 for (off = hlen + len; off < (u_int16_t)ip->ip_len; off += len) {
152 mhip->ip_off = ((off - hlen) >> 3) + (ip->ip_off & ~IP_MF);
155 if (off + len >= (u_int16_t)ip->ip_len)
156 len = (u_int16_t)ip->ip_len - off;
161 if (m_copy(m, m0, off, len) < 0) {
sbuf.c 169 sbcopy(struct sbuf *sb, int off, int len, char *to)
173 from = sb->sb_rptr + off;
181 /* re-use off */
182 off = (sb->sb_data + sb->sb_datalen) - from;
183 if (off > len) off = len;
184 memcpy(to,from,off);
185 len -= off;
187 memcpy(to+off,sb->sb_data,len);
  /external/v8/tools/visual_studio/
d8js2c.cmd 1 @echo off
  /external/webkit/WebKitTools/Scripts/
run-webkit-nightly.cmd 1 @echo off
  /libcore/luni/src/main/native/
java_util_zip_Adler32.cpp 26 static jlong Adler32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) {
31 return adler32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len);
java_util_zip_CRC32.cpp 26 static jlong CRC32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) {
31 jlong result = crc32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len);
  /packages/apps/Email/src/org/apache/commons/io/input/
AutoCloseInputStream.java 105 * @param off start offset within the buffer
110 public int read(byte[] b, int off, int len) throws IOException {
111 int n = in.read(b, off, len);
  /packages/apps/Email/src/org/apache/commons/io/output/
CountingOutputStream.java 64 * @param off the start offset in the buffer
69 public void write(byte[] b, int off, int len) throws IOException {
71 super.write(b, off, len);
  /packages/apps/Email/src/org/apache/james/mime4j/util/
PartialInputStream.java 50 public int read(byte b[], int off, int len) throws IOException {
52 return super.read(b, off, len); //To change body of overridden methods use File | Settings | File Templates.
  /bootable/bootloader/legacy/include/msm7k/
gpio.h 46 #define GPIO1_REG(off) (MSM_GPIO1_BASE + 0x800 + (off))
47 #define GPIO2_REG(off) (MSM_GPIO2_BASE + 0xC00 + (off))
  /external/apache-http/src/org/apache/http/io/
SessionInputBuffer.java 49 int read(byte[] b, int off, int len) throws IOException;
SessionOutputBuffer.java 49 void write(byte[] b, int off, int len) throws IOException;
  /external/iproute2/include/linux/tc_act/
tc_pedit.h 22 __u32 off; /*offset */ member in struct:tc_pedit_key
  /frameworks/base/core/java/android/util/
Base64OutputStream.java 98 public void write(byte[] b, int off, int len) throws IOException {
101 internalWrite(b, off, len, false);
136 private void internalWrite(byte[] b, int off, int len, boolean finish) throws IOException {
138 if (!coder.process(b, off, len, finish)) {
  /libcore/luni/src/main/java/java/nio/
ReadWriteCharArrayBuffer.java 113 public CharBuffer put(char[] src, int off, int len) {
115 if (off < 0 || len < 0 || (long) len + (long) off > length) {
121 System.arraycopy(src, off, backingArray, offset + position, len);
ReadWriteDoubleArrayBuffer.java 116 public DoubleBuffer put(double[] src, int off, int len) {
118 if (off < 0 || len < 0 || (long) off + (long) len > length) {
124 System.arraycopy(src, off, backingArray, offset + position, len);
ReadWriteFloatArrayBuffer.java 116 public FloatBuffer put(float[] src, int off, int len) {
118 if (off < 0 || len < 0 || (long) off + (long) len > length) {
124 System.arraycopy(src, off, backingArray, offset + position, len);
ReadWriteIntArrayBuffer.java 113 public IntBuffer put(int[] src, int off, int len) {
115 if (off < 0 || len < 0 || (long) off + (long) len > length) {
121 System.arraycopy(src, off, backingArray, offset + position, len);
ReadWriteLongArrayBuffer.java 113 public LongBuffer put(long[] src, int off, int len) {
115 if (off < 0 || len < 0 || (long) off + (long) len > length) {
121 System.arraycopy(src, off, backingArray, offset + position, len);
ReadWriteShortArrayBuffer.java 116 public ShortBuffer put(short[] src, int off, int len) {
118 if (off < 0 || len < 0 || (long) off + (long) len > length) {
124 System.arraycopy(src, off, backingArray, offset + position, len);

Completed in 528 milliseconds

1 2 3 45 6 7 8 91011>>