Searched defs:off (Results 1 - 25 of 357) sorted by relevance

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_formstring.c82 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;
H A Ddwarf_addrdie.c66 Dwarf_Off off; local
71 NULL, NULL, &off) != 0)
74 return INTUSE(dwarf_offdie) (dbg, off, result);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_update_shadow_word_inl.h19 unsigned off = cur.ComputeSearchOffset(); variable
20 u64 *sp = &shadow_mem[(idx + off) % kShadowCnt];
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_nbyte.h8 __u16 off; member in struct:tcf_em_nbyte
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DNullOutputStream.java18 public void write(byte[] buf, int off, int len) argument
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketNewKeys.java23 public PacketNewKeys(byte payload[], int off, int len) throws IOException argument
26 System.arraycopy(payload, off, this.payload, 0, len);
28 TypesReader tr = new TypesReader(payload, off, len);
H A DPacketServiceAccept.java26 public PacketServiceAccept(byte payload[], int off, int len) throws IOException argument
29 System.arraycopy(payload, off, this.payload, 0, len);
31 TypesReader tr = new TypesReader(payload, off, len);
H A DPacketServiceRequest.java26 public PacketServiceRequest(byte payload[], int off, int len) throws IOException argument
29 System.arraycopy(payload, off, this.payload, 0, len);
31 TypesReader tr = new TypesReader(payload, off, len);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
H A DStringEncoder.java31 public static String GetString(byte[] data, int off, int len) argument
34 return new String(data, off, len, "UTF-8");
/external/guava/guava/src/com/google/common/io/
H A DByteProcessor.java37 * from {@code buf[off]} through {@code buf[off + len - 1]}
41 * @param off the initial offset into the array
45 boolean processBytes(byte[] buf, int off, int len) throws IOException; argument
H A DNullOutputStream.java36 @Override public void write(byte[] b, int off, int len) { argument
/external/openssl/crypto/asn1/
H A Dt_pkey.c66 unsigned char *buf, int off)
73 if(!BIO_indent(bp,off,128))
105 || !BIO_indent(bp,off+4,128))
65 ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, unsigned char *buf, int off) argument
/external/openssl/crypto/rsa/
H A Drsa_prn.c65 int RSA_print_fp(FILE *fp, const RSA *x, int off) argument
76 ret=RSA_print(b,x,off);
82 int RSA_print(BIO *bp, const RSA *x, int off) argument
89 ret = EVP_PKEY_print_private(bp, pk, off, NULL);
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java104 public void write(byte[] b, int off, int len) throws IOException { argument
113 this.out.write(b, off, len);
H A DIdentityInputStream.java82 public int read(final byte[] b, int off, int len) throws IOException { argument
86 return this.in.read(b, off, len);
H A DIdentityOutputStream.java82 public void write(byte[] b, int off, int len) throws IOException { argument
86 this.out.write(b, off, len);
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java49 int read(byte[] b, int off, int len) throws IOException; argument
H A DSessionOutputBuffer.java49 void write(byte[] b, int off, int len) throws IOException; argument
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
H A DBcDigestCalculatorProvider.java51 public void write(byte[] bytes, int off, int len) argument
54 dig.update(bytes, off, len);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DConstructedOctetStream.java20 public int read(byte[] b, int off, int len) throws IOException argument
44 int numRead = _currentStream.read(b, off + totalRead, len - totalRead);
H A DDefiniteLengthInputStream.java66 public int read(byte[] buf, int off, int len) argument
75 int numRead = _in.read(buf, off, toRead);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DX509NameEntryConverter.java56 * @param off the index at which the encoding starts
61 int off)
65 byte[] data = new byte[(str.length() - off) / 2];
68 char left = str.charAt((index * 2) + off);
69 char right = str.charAt((index * 2) + off + 1);
59 convertHexEncoded( String str, int off) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DSigner.java24 public void update(byte[] in, int off, int len); argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
H A DDigestInputStream.java36 int off,
40 int n = in.read(b, off, len);
43 digest.update(b, off, n);
34 read( byte[] b, int off, int len) argument
H A DDigestOutputStream.java27 int off,
31 digest.update(b, off, len);
25 write( byte[] b, int off, int len) argument

Completed in 1341 milliseconds

1234567891011>>