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

12 3 4 5 6 7 8 91011>>

  /system/extras/libpagemap/
pm_kernel.c 117 off_t off; local
122 off = lseek(ker->kpagecount_fd, pfn * sizeof(uint64_t), SEEK_SET);
123 if (off == (off_t)-1)
133 off_t off; local
138 off = lseek(ker->kpageflags_fd, pfn * sizeof(uint64_t), SEEK_SET);
139 if (off == (off_t)-1)
  /external/elfutils/libdw/
dwarf_getsrc_file.c 76 Dwarf_Off off = 0; local
80 while (INTUSE(dwarf_nextcu) (dbg, off, &noff, &cuhl, NULL, NULL, NULL) == 0)
83 Dwarf_Die *cudie = INTUSE(dwarf_offdie) (dbg, off + cuhl, &cudie_mem);
178 off = noff;
  /external/iproute2/include/linux/tc_act/
tc_pedit.h 20 __u32 off; /*offset */ member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_act/
tc_pedit.h 21 __u32 off; /*offset */ member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/
tc_pedit.h 21 __u32 off; /*offset */ member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/
tc_pedit.h 21 __u32 off; /*offset */ member in struct:tc_pedit_key
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 62 public void append(final byte[] b, int off, int len) {
66 if ((off < 0) || (off > b.length) || (len < 0) ||
67 ((off + len) < 0) || ((off + len) > b.length)) {
77 System.arraycopy(b, off, this.buffer, this.len, len);
90 public void append(final char[] b, int off, int len) {
94 if ((off < 0) || (off > b.length) || (len < 0) ||
95 ((off + len) < 0) || ((off + len) > b.length))
116 append(b.buffer(), off, len); local
    [all...]
CharArrayBuffer.java 64 public void append(final char[] b, int off, int len) {
68 if ((off < 0) || (off > b.length) || (len < 0) ||
69 ((off + len) < 0) || ((off + len) > b.length)) {
79 System.arraycopy(b, off, this.buffer, this.len, len);
96 public void append(final CharArrayBuffer b, int off, int len) {
100 append(b.buffer, off, len);
119 public void append(final byte[] b, int off, int len) {
123 if ((off < 0) || (off > b.length) || (len < 0) |
149 append(b.buffer(), off, len); local
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
KeyMaterial.java 43 int off = 0; local
46 System.arraycopy(tmp[0], 0, res, off, produced);
49 off += produced;
62 System.arraycopy(tmp[i], 0, res, off, produced);
64 off += produced;
  /external/grub/stage2/
fsys_ffs.c 147 int logno, off, size, map, ret = 0; local
151 off = blkoff (SUPERBLOCK, filepos);
158 size -= off;
165 devread (fsbtodb (SUPERBLOCK, map), off, size, buf); local
186 int block, off, loc, map, ino = ROOTINO; local
251 if (!(off = blkoff (SUPERBLOCK, loc)))
266 dp = (struct direct *) (FSYS_BUF + off);
  /external/liblzf/
lzf_c.c 115 /* off requires a type wide enough to hold a general pointer difference.
123 unsigned _int64 off; /* workaround for missing POSIX compliance */ local
125 unsigned long off; local
152 && (off = ip - ref - 1) < MAX_OFF
211 *op++ = (off >> 8) + (len << 5);
215 *op++ = (off >> 8) + ( 7 << 5);
219 *op++ = off;
  /external/liblzf/src/org/liblzf/
CLZF.java 170 int off; local
182 if ((off = iidx - reference - 1) < MAX_OFF
216 out_data[oidx++] = (byte)((off >> 8) + (len << 5));
220 out_data[oidx++] = (byte)((off >> 8) + ( 7 << 5));
224 out_data[oidx++] = (byte)off;
  /external/llvm/lib/Support/
Path.cpp 135 uint32_t off = *reinterpret_cast<const ulittle32_t *>(magic + 0x3c); local
137 if (off < length && memcmp(magic + off, "PE\0\0",4) == 0)
  /external/openssl/crypto/rsa/
rsa_lib.c 292 int i,j,k,off; local
305 off=k/sizeof(BN_ULONG)+1;
309 if ((p=OPENSSL_malloc_locked((off+j)*sizeof(BN_ULONG))) == NULL)
315 ul=(BN_ULONG *)&(p[off]);
  /external/openssl/ssl/
s2_pkt.c 322 int i,off,newb; local
347 off=0;
353 off=s->packet_length;
356 (unsigned int)newb+off);
369 /* off is the offset to start writing too.
380 i=BIO_read(s->rbio,(char *)&(s->s2->rbuf[off+newb]),
402 s->s2->rbuf_offs=n+off;
  /external/proguard/src/proguard/io/
ManifestRewriter.java 122 public int read(char[] cbuf, int off, int len) throws IOException
134 cbuf[off + count++] = (char)c;
202 public void write(char[] cbuf, int off, int len) throws IOException
206 write(cbuf[off + count]);
211 public void write(String str, int off, int len) throws IOException
213 write(str.toCharArray(), off, len); local
  /external/qemu/slirp/
tcp_output.c 71 int off, flags, error; local
97 off = tp->snd_nxt - tp->snd_una;
128 if (off < so->so_snd.sb_cc)
137 len = min(so->so_snd.sb_cc, win) - off;
180 len + off >= so->so_snd.sb_cc)
361 sbcopy(&so->so_snd, off, (int) len, mtod(m, caddr_t) + hdrlen);
365 * m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
376 if (off + len == so->so_snd.sb_cc)
  /external/qemu/slirp-android/
tcp_output.c 71 int off, flags, error; local
97 off = tp->snd_nxt - tp->snd_una;
128 if (off < so->so_snd.sb_cc)
137 len = min(so->so_snd.sb_cc, win) - off;
180 len + off >= so->so_snd.sb_cc)
361 sbcopy(&so->so_snd, off, (int) len, mtod(m, caddr_t) + hdrlen);
365 * m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
376 if (off + len == so->so_snd.sb_cc)
  /external/valgrind/main/helgrind/tests/
tc19_shadowmem.c 140 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 & 1
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacdec/
unpack_idx.cpp 114 HuffCodebook->off = {0, 1, 4};
171 *(pQuantSpec) = *(pQuantSpec) - off;
177 *(pQuantSpec) = *(pQuantSpec) - off;
184 *(pQuantSpec) = *(pQuantSpec) - off;
188 *(pQuantSpec) = codeword_indx - off;
341 const Int off = pHuffCodebook->off; local
354 temp_spec -= off;
369 temp_spec -= off;
389 temp_spec -= off;
432 const Int off = pHuffCodebook->off; local
561 const Int off = pHuffCodebook->off; local
    [all...]
  /frameworks/base/core/java/com/android/server/
ResettableTimeout.java 43 public abstract void off(); method in class:ResettableTimeout
49 * <p>3. At the timeout, calls off()<p>
81 * Cancel the timeout and call off now.
93 off(); method
109 off(); method
125 // turn it off at this time.
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
Adler32Test.java 132 int off = 2;// accessing the 2nd element of byteArray local
136 adl.update(byteArray, off, len);
144 adl.update(byteArray, off, lenError);
148 assertEquals("update(byte[],int,int) failed b/c lenError>byte[].length-off",
CRC32Test.java 149 int off = 2;// accessing the 2nd element of byteArray local
153 crc.update(byteArray, off, len);
161 crc.update(byteArray, off, lenError);
165 assertEquals("update(byte[],int,int) failed b/c lenError>byte[].length-off",
  /external/bluetooth/bluez/src/
textfile.c 188 char *map, *off, *end, *str; local
225 off = find_key(map, size, key, len, icase);
226 if (!off) {
235 base = off - map;
237 end = strnpbrk(off, size, "\r\n");
243 if (value && ((ssize_t) strlen(value) == end - off - len - 1) &&
244 !strncmp(off + len + 1, value, end - off - len - 1))
312 char *map, *off, *end, *str = NULL; local
339 off = find_key(map, size, key, len, icase)
406 char *map, *off, *end, *key, *value; local
    [all...]
  /external/chromium/third_party/libevent/
event_tagging.c 93 int off = 1, nibbles = 0; local
98 if (off & 0x1)
99 data[off/2] = (data[off/2] & 0xf0) | (number & 0x0f);
101 data[off/2] = (data[off/2] & 0x0f) |
104 off++;
107 if (off > 2)
108 nibbles = off - 2;
110 /* Off - 1 is the number of encoded nibbles *
    [all...]

Completed in 1836 milliseconds

12 3 4 5 6 7 8 91011>>