Searched defs:off (Results 1 - 25 of 132) sorted by relevance

123456

/external/elfutils/libdw/
H A Ddwarf_formstring.c46 uint64_t off; local
49 off = read_8ubyte_unaligned (dbg, attrp->valp);
51 off = read_4ubyte_unaligned (dbg, attrp->valp);
53 if (off >= dbg->sectiondata[IDX_debug_str]->d_size)
56 return (const char *) dbg->sectiondata[IDX_debug_str]->d_buf + off;
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_nbyte.h9 __u16 off; member in struct:tcf_em_nbyte
H A Dtc_em_cmp.h11 __u16 off; member in struct:tcf_em_cmp
/external/opencore/codecs_v2/audio/aac/dec/src/
H A Ds_hcb.h109 Int off; member in struct:__anon2634
/external/guava/src/com/google/common/io/
H A DByteProcessor.java34 * from {@code buf[off]} through {@code buf[off + len - 1]}
38 * @param off the initial offset into the array
42 boolean processBytes(byte[] buf, int off, int len) throws IOException; argument
H A DNullOutputStream.java33 @Override public void write(byte[] b, int off, int len) { argument
H A DCountingOutputStream.java47 @Override public void write(byte[] b, int off, int len) throws IOException { argument
48 out.write(b, off, len);
H A DLineBuffer.java45 * @param off the offset into the buffer
51 protected void add(char[] cbuf, int off, int len) throws IOException { argument
52 int pos = off;
61 for (int end = off + len; pos < end; pos++) {
81 line.append(cbuf, start, off + len - start);
H A DAppendableWriter.java50 @Override public void write(char cbuf[], int off, int len) argument
55 target.append(new String(cbuf, off, len));
87 @Override public void write(String str, int off, int len) throws IOException { argument
90 target.append(str, off, off + len);
H A DCountingInputStream.java56 @Override public int read(byte[] b, int off, int len) throws IOException { argument
57 int result = in.read(b, off, len);
H A DLimitInputStream.java71 @Override public int read(byte[] b, int off, int len) throws IOException { argument
77 int result = in.read(b, off, len);
H A DMultiInputStream.java90 @Override public int read(byte[] b, int off, int len) throws IOException { argument
94 int result = in.read(b, off, len);
97 return read(b, off, len);
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java104 public void write(byte[] b, int off, int len) throws IOException { argument
113 this.out.write(b, off, len);
H A DIdentityInputStream.java82 public int read(final byte[] b, int off, int len) throws IOException { argument
86 return this.in.read(b, off, len);
H A DIdentityOutputStream.java82 public void write(byte[] b, int off, int len) throws IOException { argument
86 this.out.write(b, off, len);
H A DContentLengthInputStream.java40 * Stream that cuts off after a specified number of bytes.
155 * @param off Start filling at this position.
162 public int read (byte[] b, int off, int len) throws java.io.IOException { argument
174 int count = this.in.read(b, off, len);
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java49 int read(byte[] b, int off, int len) throws IOException; argument
H A DSessionOutputBuffer.java49 void write(byte[] b, int off, int len) throws IOException; argument
/external/bluetooth/bluez/common/
H A Doui.c46 char *str, *map, *off, *end; local
79 off = strstr(map, oui);
80 if (off) {
81 off += 18;
82 end = strpbrk(off, "\r\n");
83 strncpy(str, off, end - off);
/external/openssl/crypto/des/
H A Dcbc3_enc.c66 int off=((int)length-1)/8; local
75 memcpy(niv1,output[off],sizeof(DES_cblock));
81 memcpy(niv2,output[off],sizeof(DES_cblock));
86 memcpy(niv2,input[off],sizeof(DES_cblock));
92 memcpy(niv1,output[off],sizeof(DES_cblock));
/external/qemu/slirp/
H A Dip_output.c51 * 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) {
/external/qemu/slirp-android/
H A Dip_output.c51 * 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) {
/external/apache-http/src/org/apache/http/impl/conn/
H A DLoggingSessionInputBuffer.java71 public int read(byte[] b, int off, int len) throws IOException { argument
72 int l = this.in.read(b, off, len);
74 this.wire.input(b, off, l);
H A DLoggingSessionOutputBuffer.java65 public void write(byte[] b, int off, int len) throws IOException { argument
66 this.out.write(b, off, len);
68 this.wire.output(b, off, len);
H A DWire.java103 public void output(byte[] b, int off, int len) argument
108 wire(">> ", new ByteArrayInputStream(b, off, len));
111 public void input(byte[] b, int off, int len) argument
116 wire("<< ", new ByteArrayInputStream(b, off, len));

Completed in 144 milliseconds

123456