Searched defs:off (Results 126 - 150 of 625) sorted by relevance

1234567891011>>

/external/libmicrohttpd/src/microhttpd/
H A Dtest_postprocessor_amp.c12 uint64_t off, size_t size)
9 check_post(void *cls, enum MHD_ValueKind kind, const char* key, const char* filename, const char* content_type, const char* content_encoding, const char* data, uint64_t off, size_t size) argument
/external/libunwind/tests/
H A DGtest-init.cxx51 char name[128], off[32]; local
64 off[0] = '\0';
67 snprintf (off, sizeof (off), "+0x%lx", (long) offset);
69 printf (" [%lx] <%s%s>\n", (long) ip, name, off);
/external/ltp/testcases/kernel/device-drivers/block/block_dev_user/
H A Dblock_dev.c74 int off = 0; local
82 off = 2;
88 for (i = 0; i < TST_TOTAL - off; ++i) {
/external/ltp/testcases/kernel/syscalls/ptrace/
H A Dptrace04.c27 #define R(r) { .name = "PT_" #r, .off = PT_##r },
30 long off; member in struct:__anon13964
68 (void *)regs[i].off, NULL);
73 regs[i].name, regs[i].off);
78 long *pt_val = (void *)&_pt_regs + regs[i].off;
84 regs[i].name, regs[i].off, *pt_val,
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munmap/
H A D1-1.c55 off_t off = 0; local
92 pa = mmap(addr, len, prot, flag, fd, off);
H A D1-2.c55 off_t off = 0; local
92 pa = mmap(addr, len, prot, flag, fd, off);
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DDeltaInputStream.java76 * This calls <code>in.read(buf, off, len)</code> and defilters the
80 * @param off start offset in <code>buf</code>
91 public int read(byte[] buf, int off, int len) throws IOException { argument
103 size = in.read(buf, off, len);
112 delta.decode(buf, off, size);
H A DXZInputStream.java237 * @param off start offset in <code>buf</code>
254 public int read(byte[] buf, int off, int len) throws IOException { argument
255 if (off < 0 || len < 0 || off + len < 0 || off + len > buf.length)
280 int ret = xzIn.read(buf, off, len);
284 off += ret;
/external/lzma/Java/Tukaani/src/org/tukaani/xz/common/
H A DDecoderUtil.java22 public static boolean isCRC32Valid(byte[] buf, int off, int len, argument
25 crc32.update(buf, off, len);
81 private static StreamFlags decodeStreamFlags(byte[] buf, int off) argument
83 if (buf[off] != 0x00 || (buf[off + 1] & 0xFF) >= 0x10)
87 streamFlags.checkType = buf[off + 1];
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
H A DX86.java33 public int code(byte[] buf, int off, int len) { argument
34 int prevPos = off - 1;
35 int end = off + len - 5;
38 for (i = off; i <= end; ++i) {
67 dest = src + (pos + i - off);
69 dest = src - (pos + i - off);
94 i -= off;
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DAbstractParser.java135 byte[] data, int off, int len, ExtensionRegistryLite extensionRegistry)
138 CodedInputStream input = CodedInputStream.newInstance(data, off, len);
152 public MessageType parsePartialFrom(byte[] data, int off, int len) argument
154 return parsePartialFrom(data, off, len, EMPTY_REGISTRY);
170 byte[] data, int off, int len, ExtensionRegistryLite extensionRegistry)
173 parsePartialFrom(data, off, len, extensionRegistry));
177 public MessageType parseFrom(byte[] data, int off, int len) argument
179 return parseFrom(data, off, len, EMPTY_REGISTRY);
134 parsePartialFrom( byte[] data, int off, int len, ExtensionRegistryLite extensionRegistry) argument
169 parseFrom( byte[] data, int off, int len, ExtensionRegistryLite extensionRegistry) argument
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
H A DMessageMicro.java112 public MessageMicro mergeFrom(final byte[] data, final int off, final int len) argument
115 final CodedInputStreamMicro input = CodedInputStreamMicro.newInstance(data, off, len);
/external/skia/tools/skiaserve/urlhandlers/
H A DPostHandler.cpp21 const char* data, uint64_t off, size_t size) {
18 process_upload_data(void* cls, enum MHD_ValueKind kind, const char* key, const char* filename, const char* content_type, const char* transfer_encoding, const char* data, uint64_t off, size_t size) argument
/external/smali/util/src/main/java/org/jf/util/
H A DOldWrappedIndentingWriter.java154 public void write(char[] cbuf, int off, int len) throws IOException { argument
157 write(cbuf[off]);
158 off++;
166 public void write(String str, int off, int len) throws IOException { argument
169 write(str.charAt(off));
170 off++;
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
H A DUnicodeReader.java121 public int read(char[] cbuf, int off, int len) throws IOException { argument
123 return internalIn2.read(cbuf, off, len);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DInputOutputExceptionTest.java76 public void write(char[] cbuf, int off, int len) throws IOException { argument
/external/syslinux/com32/chain/
H A Doptions.c44 addr_t *off,
66 error("Invalid seg:off:* address specified.");
83 if (off)
84 *off = offval;
42 soi_s2n(char *ptr, addr_t *seg, addr_t *off, addr_t *ip, addr_t def) argument
/external/valgrind/auxprogs/
H A Dgetoff.c147 size_t off; local
149 for (off = 0; off < MAX_LINKMAP_WORDS; off++)
150 dummy_link_map[off] = off;
/external/apache-http/src/org/apache/http/conn/
H A DEofSensorInputStream.java159 public int read(byte[] b, int off, int len) throws IOException { argument
164 l = wrappedStream.read(b, off, len);
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionOutputBuffer.java103 public void write(final byte[] b, int off, int len) throws IOException { argument
114 this.outstream.write(b, off, len);
124 this.buffer.append(b, off, len);
157 int off = 0;
163 this.buffer.append(s, off, chunk);
168 off += chunk;
H A DChunkedInputStream.java142 * @param off The offset into the byte array at which bytes will start to be
150 public int read (byte[] b, int off, int len) throws IOException { argument
166 int count = in.read(b, off, len);
H A DChunkedOutputStream.java113 * @param off
117 protected void flushCacheWithAppend(byte bufferToAppend[], int off, int len) throws IOException { argument
120 this.out.write(bufferToAppend, off, len);
164 public void write(byte src[], int off, int len) throws IOException { argument
169 flushCacheWithAppend(src, off, len);
171 System.arraycopy(src, off, cache, this.cachePosition, len);
/external/apache-http/src/org/apache/http/util/
H A DByteArrayBuffer.java67 public void append(final byte[] b, int off, int len) { argument
71 if ((off < 0) || (off > b.length) || (len < 0) ||
72 ((off + len) < 0) || ((off + len) > b.length)) {
82 System.arraycopy(b, off, this.buffer, this.len, len);
95 public void append(final char[] b, int off, int len) { argument
99 if ((off < 0) || (off > b.length) || (len < 0) ||
100 ((off
117 append(final CharArrayBuffer b, int off, int len) argument
[all...]
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DRandomAccessFileInputStream.java159 public int read(byte[] b, int off, int len) throws IOException { argument
167 int result = raf.read(b, off, Math.min(len, available));
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaContentSignerBuilder.java116 public void write(byte[] bytes, int off, int len) argument
121 sig.update(bytes, off, len);

Completed in 725 milliseconds

1234567891011>>