HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 201 - 225 of 1168) sorted by null

1 2 3 4 5 6 7 891011>>

  /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;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
search.h 53 _DifferenceTp* off)
57 off[0] = -1;
59 off[1] = 0;
64 k = off[k];
65 off[j] = ++k;
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.java 101 int off = this.bufferlen; local
102 int len = this.buffer.length - off;
103 l = this.instream.read(this.buffer, off, len);
107 this.bufferlen = off + l;
128 public int read(final byte[] b, int off, int len) throws IOException {
143 System.arraycopy(this.buffer, this.bufferpos, b, off, chunk);
238 int off = this.bufferpos; local
244 if (pos > off && this.buffer[pos - 1] == HTTP.CR) {
249 len = pos - off;
251 charbuffer.append(this.buffer, off, len)
    [all...]
  /external/ipsec-tools/src/libipsec/
ipsec_dump_policy.c 99 size_t off, buflen; local
231 off = sizeof(*xpl);
232 while (off < PFKEY_EXTLEN(xpl)) {
233 xisr = (void *)((caddr_t)(void *)xpl + off);
234 off += xisr->sadb_x_ipsecrequest_len;
238 if (off != PFKEY_EXTLEN(xpl)) {
244 off = sizeof(*xpl);
245 while (off < PFKEY_EXTLEN(xpl)) {
247 xisr = (void *)((caddr_t)(void *)xpl + off);
250 PFKEY_EXTLEN(xpl) - off, withports) == NULL)
    [all...]
  /frameworks/base/core/java/android/text/
AutoText.java 38 // int off;
142 int off = mTrie[here + TRIE_OFF]; local
143 int len = mText.charAt(off);
145 return mText.substring(off + 1, off + 1 + len);
185 char off; local
188 off = ooff;
190 off = (char) right.length();
195 add(src, off);
212 private void add(String src, char off) {
    [all...]
  /bionic/libc/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /development/ndk/platforms/android-3/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
TypesReader.java 32 public TypesReader(byte[] arr, int off)
35 this.pos = off;
42 public TypesReader(byte[] arr, int off, int len)
45 this.pos = off;
46 this.max = off + len;
76 public void readBytes(byte[] dst, int off, int len) throws IOException
81 System.arraycopy(arr, pos, dst, off, len);
  /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);
fsys_ufs2.c 171 int logno, off, size, ret = 0; local
176 off = blkoff (SUPERBLOCK, filepos);
183 size -= off;
190 devread (fsbtodb (SUPERBLOCK, map), off, size, buf); local
210 int block, off, loc, ino = ROOTINO; local
272 if (!(off = blkoff (SUPERBLOCK, loc)))
287 dp = (struct direct *) (FSYS_BUF + off);
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-5/arch-x86/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-8/arch-x86/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/netinet/
ip6.h 272 * IP6_EXTHDR_GET ensures that intermediate protocol header (from "off" to
281 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
285 if ((m)->m_len >= (off) + (len)) \
286 (val) = (typ)(mtod((m), char *) + (off)); \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
300 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
303 if ((off) == 0 && (m)->m_len >= len) \
306 _t = m_pulldown((m), (off), (len), NULL); \

Completed in 1808 milliseconds

1 2 3 4 5 6 7 891011>>