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

12 3 4 5 6 7 8 91011>>

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
Digest.java 21 public void update(byte b[], int off, int len);
27 public void digest(byte[] out, int off);
  /libcore/dex/src/main/java/com/android/dex/
TableOfContents.java 70 readMap(dex.open(mapList.off));
95 mapList.off = headerIn.readInt();
96 if (mapList.off == 0) {
100 stringIds.off = headerIn.readInt();
102 typeIds.off = headerIn.readInt();
104 protoIds.off = headerIn.readInt();
106 fieldIds.off = headerIn.readInt();
108 methodIds.off = headerIn.readInt();
110 classDefs.off = headerIn.readInt();
126 || (section.off != -1 && section.off != offset))
214 public int off = -1; field in class:TableOfContents.Section
    [all...]
  /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/elfutils/libdw/
dwarf_formstring.c 82 uint64_t off; local
85 off = read_8ubyte_unaligned (dbg, attrp->valp);
87 off = read_4ubyte_unaligned (dbg, attrp->valp);
89 if (off >= dbg->sectiondata[IDX_debug_str]->d_size)
92 return (const char *) dbg->sectiondata[IDX_debug_str]->d_buf + off;
  /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...]
  /external/chromium/third_party/libevent/
buffer.c 96 (x)->off = (y)->off; \
105 if (outbuf->off == 0) {
107 size_t oldoff = inbuf->off;
119 if (inbuf->off != oldoff && inbuf->cb != NULL)
120 (*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg);
127 res = evbuffer_add(outbuf, inbuf->buffer, inbuf->off);
130 evbuffer_drain(inbuf, inbuf->off);
141 size_t oldoff = buf->off;
148 size_t used = buf->misalign + buf->off;
    [all...]
  /external/chromium_org/third_party/libevent/
buffer.c 96 (x)->off = (y)->off; \
105 if (outbuf->off == 0) {
107 size_t oldoff = inbuf->off;
119 if (inbuf->off != oldoff && inbuf->cb != NULL)
120 (*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg);
127 res = evbuffer_add(outbuf, inbuf->buffer, inbuf->off);
130 evbuffer_drain(inbuf, inbuf->off);
141 size_t oldoff = buf->off;
148 size_t used = buf->misalign + buf->off;
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketNewKeys.java 23 public PacketNewKeys(byte payload[], int off, int len) throws IOException
26 System.arraycopy(payload, off, this.payload, 0, len);
28 TypesReader tr = new TypesReader(payload, off, len);
  /libcore/luni/src/main/java/java/util/zip/
CheckedOutputStream.java 73 * Writes n bytes of data from {@code buf} starting at offset {@code off} to
78 * @param off
87 public void write(byte[] buf, int off, int nbytes) throws IOException {
88 out.write(buf, off, nbytes);
89 check.update(buf, off, nbytes);
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 315 const unsigned int off = 0xffffffff;
318 on, off, on, off, on, off, on, off,
319 off, on, off, on, off, on, off, on,
320 on, off, on, off, on, off, on, off
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Signer.java 24 public void update(byte[] in, int off, int len);
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_prn.c 65 int RSA_print_fp(FILE *fp, const RSA *x, int off)
76 ret=RSA_print(b,x,off);
82 int RSA_print(BIO *bp, const RSA *x, int off)
89 ret = EVP_PKEY_print_private(bp, pk, off, NULL);
  /external/elfutils/lib/
system.h 74 #define pwrite_retry(fd, buf, len, off) \
75 TEMP_FAILURE_RETRY (pwrite (fd, buf, len, off))
78 #define pread_retry(fd, buf, len, off) \
79 TEMP_FAILURE_RETRY (pread (fd, buf, len, off))
  /external/iproute2/include/linux/tc_ematch/
tc_em_nbyte.h 8 __u16 off; member in struct:tcf_em_nbyte
  /external/libvpx/libvpx/vp9/encoder/
vp9_write_bit_buffer.h 28 const int off = wb->bit_offset; local
29 const int p = off / CHAR_BIT;
30 const int q = CHAR_BIT - 1 - off % CHAR_BIT;
37 wb->bit_offset = off + 1;
  /external/openssl/crypto/rsa/
rsa_prn.c 65 int RSA_print_fp(FILE *fp, const RSA *x, int off)
76 ret=RSA_print(b,x,off);
82 int RSA_print(BIO *bp, const RSA *x, int off)
89 ret = EVP_PKEY_print_private(bp, pk, off, NULL);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
config.hpp 25 #pragma parse_func_templ off
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
RootInputStream.java 90 public int read(byte[] b, int off, int len) throws IOException {
95 int n = is.read(b, off, len);
96 for (int i = off; i < off + n; i++) {
  /bionic/libc/kernel/common/linux/
compiler-gcc.h 20 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
  /development/ndk/platforms/android-3/include/linux/
compiler-gcc.h 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/io/
MacOutputStream.java 27 int off,
31 mac.update(b, off, len);
  /external/chromium_org/tools/git/
move_source_file.bat 1 @echo off
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
StringEncoder.java 31 public static String GetString(byte[] data, int off, int len)
34 return new String(data, off, len, "UTF-8");
  /external/guava/guava-tests/test/com/google/common/io/
RandomAmountInputStream.java 33 @Override public int read(byte[] b, int off, int len) throws IOException {
34 return super.read(b, off, random.nextInt(len) + 1);

Completed in 1072 milliseconds

12 3 4 5 6 7 8 91011>>