Searched defs:off (Results 201 - 225 of 625) sorted by relevance

1234567891011>>

/external/sl4a/Utils/src/com/trilead/ssh2/
H A DStreamGobbler.java200 public int read(byte[] b, int off, int len) throws IOException { argument
205 if ((off < 0) || (len < 0) || ((off + len) > b.length) || ((off + len) < 0) || (off > b.length)) {
237 System.arraycopy(buffer, read_pos, b, off, avail);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
H A DFileDeferredOutputStream.java54 @Override public void write(byte[] bytes, int off, int len) throws IOException { argument
55 output.write(bytes, off, len);
/external/smali/util/src/main/java/org/jf/util/
H A DWrappedIndentingWriter.java108 @Override public void write(char[] cbuf, int off, int len) throws IOException { argument
110 write(cbuf[i+off]);
114 @Override public void write(String str, int off, int len) throws IOException { argument
116 write(str.charAt(i+off));
/external/strace/tests/
H A Dptrace.c62 unsigned long long off; member in struct:__anon19261
66 psi->off = 0xdeadbeeffacefeedULL;
71 printf("ptrace(PTRACE_PEEKSIGINFO, %u, {off=%llu"
73 (unsigned) pid, psi->off, psi->nr, bad_request, errstr);
104 psi->off = 0;
140 ", {off=%llu, flags=0, nr=%u}, %p) = %s\n",
141 (unsigned) pid, psi->off, psi->nr, sigs,
145 ", {off=%llu, flags=0, nr=%u}"
153 (unsigned) pid, psi->off, psi->nr,
/external/strace/tests-m32/
H A Dptrace.c62 unsigned long long off; member in struct:__anon19327
66 psi->off = 0xdeadbeeffacefeedULL;
71 printf("ptrace(PTRACE_PEEKSIGINFO, %u, {off=%llu"
73 (unsigned) pid, psi->off, psi->nr, bad_request, errstr);
104 psi->off = 0;
140 ", {off=%llu, flags=0, nr=%u}, %p) = %s\n",
141 (unsigned) pid, psi->off, psi->nr, sigs,
145 ", {off=%llu, flags=0, nr=%u}"
153 (unsigned) pid, psi->off, psi->nr,
/external/strace/tests-mx32/
H A Dptrace.c62 unsigned long long off; member in struct:__anon19393
66 psi->off = 0xdeadbeeffacefeedULL;
71 printf("ptrace(PTRACE_PEEKSIGINFO, %u, {off=%llu"
73 (unsigned) pid, psi->off, psi->nr, bad_request, errstr);
104 psi->off = 0;
140 ", {off=%llu, flags=0, nr=%u}, %p) = %s\n",
141 (unsigned) pid, psi->off, psi->nr, sigs,
145 ", {off=%llu, flags=0, nr=%u}"
153 (unsigned) pid, psi->off, psi->nr,
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
H A DXCoreMachineFunctionInfo.h51 void setVarArgsFrameIndex(int off) { VarArgsFrameIndex = off; } argument
57 void setLRSpillSlot(int off) { LRSpillSlot = off; } argument
60 void setFPSpillSlot(int off) { FPSpillSlot = off; } argument
/external/syslinux/core/fs/
H A Dcache.c140 size_t off, cnt, total; local
146 off = offset & (fs->block_size - 1);
150 cnt = fs->block_size - off;
153 memcpy(p, cd + off, cnt);
/external/syslinux/dos/
H A Dgetsetsl.c98 uint16_t off; local
101 off = (size_t)dst & 15;
107 : "+D" (off), "+S" (src), "+c" (len)
115 uint16_t off; local
118 off = (size_t)src & 15;
124 : "+D" (dst), "+S" (off), "+c" (len)
132 uint16_t off; local
135 off = (size_t)dst & 15;
141 : "+D" (off), "+c" (len)
/external/syslinux/lzo/src/
H A Dlzo_init.c78 #define u2p(ptr,off) ((lzo_voidp) (((lzo_bytep)(lzo_voidp)(ptr)) + (off)))
80 static __lzo_noinline lzo_voidp u2p(lzo_voidp ptr, lzo_uint off) argument
82 return (lzo_voidp) ((lzo_bytep) ptr + off);
/external/toybox/toys/other/
H A Dpmap.c60 int off, count; local
65 &start, &end, toybuf, &off);
68 name = line[off] ? line+off : " [anon]\n";
92 xprintf("%s- %s%s", toybuf, line[off]=='[' ? " " : "", name);
/external/valgrind/helgrind/tests/
H A Dtc19_shadowmem.c140 int off; local
162 for (off = 0; off < MAXXX-1; off++) {
164 info.firstoff = off & 0;
166 info.skipoff = off;
193 for (off = 0; off < MAXXX-2; off++) {
195 info.firstoff = off
[all...]
/external/valgrind/none/tests/
H A Dmap_unmap.c64 int off; local
67 off = (random() % LEN) & ~(pagesize-1);
70 /* printf("unmapping off=%d\n", off/pagesize); */
71 munmap((char *)p + off, pagesize);
72 off += 619*pagesize;
73 off %= LEN;
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DFixASCIIControlsReader.java57 public int read(char[] cbuf, int off, int len) throws IOException argument
61 int pos = off;
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionInputBuffer.java106 int off = this.bufferlen;
107 int len = this.buffer.length - off;
108 l = this.instream.read(this.buffer, off, len);
112 this.bufferlen = off + l;
133 public int read(final byte[] b, int off, int len) throws IOException { argument
148 System.arraycopy(this.buffer, this.bufferpos, b, off, chunk);
243 int off = this.bufferpos;
249 if (pos > off && this.buffer[pos - 1] == HTTP.CR) {
254 len = pos - off;
256 charbuffer.append(this.buffer, off, le
[all...]
/external/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java69 public void append(final char[] b, int off, int len) { argument
73 if ((off < 0) || (off > b.length) || (len < 0) ||
74 ((off + len) < 0) || ((off + len) > b.length)) {
84 System.arraycopy(b, off, this.buffer, this.len, len);
101 public void append(final CharArrayBuffer b, int off, int len) { argument
105 append(b.buffer, off, len);
124 public void append(final byte[] b, int off, int len) { argument
128 if ((off <
150 append(final ByteArrayBuffer b, int off, int len) argument
[all...]
/external/boringssl/src/crypto/asn1/
H A Da_d2i_fp.c168 size_t off = 0; local
179 if (want >= (len - off)) {
180 want -= (len - off);
187 if ((i < 0) && ((len - off) == 0)) {
201 p = (unsigned char *)&(b->data[off]);
204 len - off);
215 off += i; /* end of data */
235 if (want > (len - off)) {
237 want -= (len - off);
274 if (off
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaContentVerifierProviderBuilder.java302 public void write(byte[] bytes, int off, int len) argument
307 sig.update(bytes, off, len);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DDSASigner.java112 int off,
116 digest.update(b, off, len);
110 engineUpdate( byte[] b, int off, int len) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DDigestSignatureSpi.java125 int off,
129 digest.update(b, off, len);
123 engineUpdate( byte[] b, int off, int len) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStrings.java280 public static int toByteArray(String s, byte[] buf, int off) argument
286 buf[off + i] = (byte)c;
/external/deqp/framework/delibs/debase/
H A DdeMemory.c343 size_t off; local
348 for (off = 0; off < numPreserved; off++)
349 DE_TEST_ASSERT(*((const deUint8*)newPtr + off) == 0xaa);
/external/dtc/tests/
H A Doverlay.c137 int off; local
139 off = fdt_path_offset(fdt, "/test-node/new-local-node");
140 CHECK(off < 0);
142 local_phandle = fdt_get_phandle(fdt, off);
162 int off; local
164 off = fdt_path_offset(fdt, "/test-node/new-local-node");
165 CHECK(off < 0);
167 local_phandle = fdt_get_phandle(fdt, off);
170 off = fdt_path_offset(fdt, "/test-node");
171 CHECK(off <
[all...]
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_panel_bmod.h124 Index off = u_rows-segsize; local
125 for (Index i = 0; i < off; i++) U(i,u_col) = 0;
129 U(i+off,u_col) = dense_col(irow);
170 Index off = u_rows-segsize; local
174 dense_col(irow) = U.coeff(i+off,u_col);
175 U.coeffRef(i+off,u_col) = 0;
/external/elfutils/src/
H A Dranlib.c134 copy_content (Elf *elf, int newfd, off_t off, size_t n) argument
139 assert (off + n <= len);
144 posix_madvise (rawfile + (off & ~(ps - 1)), n, POSIX_MADV_SEQUENTIAL);
146 return write_retry (newfd, rawfile + off, n) != (ssize_t) n;

Completed in 2148 milliseconds

1234567891011>>