HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 26 - 50 of 3492) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_addrdie.c 42 Dwarf_Off off; local
47 NULL, NULL, &off) != 0)
50 return INTUSE(dwarf_offdie) (dbg, off, result);
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/util/
ByteArrayBuffer.java 56 public void append(final byte[] b, int off, int len) {
60 if ((off < 0) || (off > b.length) || (len < 0) ||
61 ((off + len) < 0) || ((off + len) > b.length)) {
71 System.arraycopy(b, off, this.buffer, this.len, len);
84 public void append(final char[] b, int off, int len) {
88 if ((off < 0) || (off > b.length) || (len < 0) ||
89 ((off + len) < 0) || ((off + len) > b.length))
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mach-o/
dysymtab-1-64.d 10 table of content: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
11 module table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
12 external reference table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
13 indirect symbol table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
14 external relocation table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
15 local relocation table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
dysymtab-1.d 10 table of content: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
11 module table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
12 external reference table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
13 indirect symbol table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
14 external relocation table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
15 local relocation table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
  /external/e2fsprogs/ext2ed/
ext2ed.conf.in 37 # AllowChanges off will not allow ext2ed to do any changes to the
58 ForceExt2 off
77 ForceDefault off
  /libcore/ojluni/src/main/java/java/io/
FilterWriter.java 72 * @param off Offset from which to start reading characters
77 public void write(char cbuf[], int off, int len) throws IOException {
78 out.write(cbuf, off, len);
85 * @param off Offset from which to start reading characters
90 public void write(String str, int off, int len) throws IOException {
91 out.write(str, off, len);
StringWriter.java 84 * @param off Offset from which to start writing characters
87 public void write(char cbuf[], int off, int len) {
88 if ((off < 0) || (off > cbuf.length) || (len < 0) ||
89 ((off + len) > cbuf.length) || ((off + len) < 0)) {
94 buf.append(cbuf, off, len);
108 * @param off Offset from which to start writing characters
111 public void write(String str, int off, int len) {
112 buf.append(str.substring(off, off + len))
    [all...]
FilterOutputStream.java 102 * <code>byte</code> array starting at offset <code>off</code> to
115 * @param off the start offset in the data.
120 public void write(byte b[], int off, int len) throws IOException {
121 if ((off | len | (b.length - (len + off)) | (off + len)) < 0)
125 write(b[off + i]);
LineNumberInputStream.java 121 * @param off the start offset of the data.
129 public int read(byte b[], int off, int len) throws IOException {
132 } else if ((off < 0) || (off > b.length) || (len < 0) ||
133 ((off + len) > b.length) || ((off + len) < 0)) {
143 b[off] = (byte)c;
153 b[off + i] = (byte)c;
  /libcore/ojluni/src/main/java/java/util/zip/
Checksum.java 45 * @param off the start offset of the data
48 public void update(byte[] b, int off, int len);
Deflater.java 80 private int off, len; field in class:Deflater
195 * @param off the start offset of the data
199 public void setInput(byte[] b, int off, int len) {
203 if (off < 0 || len < 0 || off > b.length - len) {
208 this.off = off;
230 * @param off the start offset of the data
235 public void setDictionary(byte[] b, int off, int len) {
239 if (off < 0 || len < 0 || off > b.length - len)
244 setDictionary(zsRef.address(), b, off, len); local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
resres.c 80 rc_uint_type off, flen; local
96 off = 0;
101 skip_null_resource (&wrbfd, &off, flen);
103 while (read_resource_entry (&wrbfd, &off, flen))
165 read_resource_entry (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax)
176 off[0] = (off[0] + 3) & ~3;
179 if ((off[0] + 8) > omax)
181 read_res_data_hdr (wrbfd, off, omax, &reshdr);
184 read_res_id (wrbfd, off, omax, &type)
577 rc_uint_type off; local
    [all...]
resbin.c 427 rc_uint_type off; local
442 off = 8;
456 off = 16;
459 if (length < off + 10)
462 c = windres_get_16 (wrbfd, data + off, 2);
463 d->x = windres_get_16 (wrbfd, data + off + 2, 2);
464 d->y = windres_get_16 (wrbfd, data + off + 4, 2);
465 d->width = windres_get_16 (wrbfd, data + off + 6, 2);
466 d->height = windres_get_16 (wrbfd, data + off + 8, 2);
468 off += 10
671 unsigned int off; local
955 rc_uint_type verlen, vallen, type, off; local
    [all...]
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 116 const unsigned int off = 0xffffffff; local
119 on, off, on, off, on, off, on, off,
120 off, on, off, on, off, on, off, on,
121 on, off, on, off, on, off, on, off
    [all...]
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 209 const unsigned int off = 0xffffffff; local
212 on, off, on, off, on, off, on, off,
213 off, on, off, on, off, on, off, on,
214 on, off, on, off, on, off, on, off
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
LineBreakBufferedWriter.java 118 public void write(char[] buf, int off, int len) {
125 if (buf[off + i] == '\n') {
136 appendToBuffer(buf, off, nextNewLine);
140 off += nextNewLine + 1;
150 appendToBuffer(buf, off, rest);
153 off += rest;
161 appendToBuffer(buf, off, len);
163 if (buf[off + i] == '\n') {
172 public void write(String s, int off, int len) {
179 if (s.charAt(off + i) == '\n')
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Encoder.java 12 int encode(byte[] data, int off, int length, OutputStream out) throws IOException;
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException;
  /external/elfutils/tests/
typeiter.c 37 Dwarf_Off off = 0; local
41 while (dwarf_nextcu (dbg, off, &noff, &cuhl, NULL, NULL, NULL) == 0)
44 Dwarf_Die *die = dwarf_offdie (dbg, off + cuhl, &die_mem);
65 off = noff;
68 off = 0;
71 while (dwarf_next_unit (dbg, off, &noff, &cuhl, NULL, NULL, NULL,
75 Dwarf_Die *die = dwarf_offdie_types (dbg, off + cuhl, &die_mem);
82 off = noff;
typeiter2.c 38 Dwarf_Off off = 0; local
43 while (dwarf_next_unit (dbg, off, &noff, &cuhl, NULL, NULL, NULL,
47 dwarf_offdie_types (dbg, off + cuhl, &die_mem);
48 off = noff;
51 off = 0;
53 while (dwarf_nextcu (dbg, off, &noff, &cuhl, NULL, NULL, NULL) == 0)
56 Dwarf_Die *die = dwarf_offdie (dbg, off + cuhl, &die_mem);
83 off = noff;
  /libcore/dex/src/main/java/com/android/dex/
TableOfContents.java 71 readMap(dex.open(mapList.off));
96 mapList.off = headerIn.readInt();
97 if (mapList.off == 0) {
101 stringIds.off = headerIn.readInt();
103 typeIds.off = headerIn.readInt();
105 protoIds.off = headerIn.readInt();
107 fieldIds.off = headerIn.readInt();
109 methodIds.off = headerIn.readInt();
111 classDefs.off = headerIn.readInt();
127 || (section.off != -1 && section.off != offset))
215 public int off = -1; field in class:TableOfContents.Section
    [all...]
  /ndk/
ndk-gdb.cmd 1 @echo off
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 67 public void append(final byte[] b, int off, int len) {
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) {
99 if ((off < 0) || (off > b.length) || (len < 0) ||
100 ((off + len) < 0) || ((off + len) > b.length))
121 append(b.buffer(), off, len); local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
getdelim.c 50 size_t len, newlen, off; local
65 off = 0;
83 if (off > SSIZE_MAX || len + 1 > SSIZE_MAX - off) {
87 newlen = off + len + 1; /* reserve space for NUL terminator */
113 (void)memcpy((*buf + off), fp->_p, len);
117 off += len;
123 if (off == 0)
127 *(*buf + off) = '\0';
128 return off;
    [all...]
  /external/boringssl/src/tool/
pkcs12.cc 83 size_t off = 0; local
85 n = read(fd, &contents[off], size - off);
87 off += static_cast<size_t>(n);
89 } while ((n > 0 && off < size) || (n == -1 && errno == EINTR));
91 if (off != size) {
103 off = 0;
105 n = read(0, &password[off], sizeof(password) - 1 - off);
107 off += static_cast<size_t>(n)
    [all...]
  /packages/apps/Gallery2/jni/filters/
fx.c 19 __inline__ int interp(unsigned char *src, int p , int *off ,float dr,float dg, float db){
21 float fr00 = (src[p+off[0]])*(1-dr)+(src[p+off[1]])*dr;
22 float fr01 = (src[p+off[2]])*(1-dr)+(src[p+off[3]])*dr;
23 float fr10 = (src[p+off[4]])*(1-dr)+(src[p+off[5]])*dr;
24 float fr11 = (src[p+off[6]])*(1-dr)+(src[p+off[7]])*dr;
47 int off[8] = local
    [all...]

Completed in 3158 milliseconds

12 3 4 5 6 7 8 91011>>