Searched defs:in (Results 76 - 100 of 1566) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DBoxParser.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
30 Box parseBox(ReadableByteChannel in, ContainerBox parent) throws IOException; argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/
H A DSrtParser.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
50 private static long parse(String in) { argument
51 long hours = Long.parseLong(in.split(":")[0].trim());
52 long minutes = Long.parseLong(in.split(":")[1].trim());
53 long seconds = Long.parseLong(in.split(":")[2].split(",")[0].trim());
54 long millies = Long.parseLong(in.split(":")[2].split(",")[1].trim());
/external/oauth/core/src/main/java/net/oauth/client/
H A DExcerptInputStream.java19 public ExcerptInputStream(InputStream in) throws IOException { argument
20 super(in);
/external/okhttp/okio/src/main/java/okio/
H A DOkio.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
103 /** Returns a source that reads from {@code in}. */
104 public static Source source(final InputStream in) { argument
113 int bytesRead = in.read(tail.data, tail.limit, maxToCopy);
121 in.close();
131 return "source(" + in + ")";
/external/openssl/crypto/aes/
H A Daes_cfb.c5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
57 * 128bit block we have used is contained in *num;
60 void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, argument
64 CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
68 void AES_cfb1_encrypt(const unsigned char *in, unsigne argument
75 AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc) argument
[all...]
H A Daes_ctr.c5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
55 void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, argument
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
/external/openssl/crypto/bf/
H A Dbf_ecb.c11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
81 void BF_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
86 n2l(in,
[all...]
/external/openssl/crypto/comp/
H A Dc_rle.c8 unsigned int olen, unsigned char *in, unsigned int ilen);
10 unsigned int olen, unsigned char *in, unsigned int ilen);
29 unsigned int olen, unsigned char *in, unsigned int ilen)
40 memcpy(out,in,ilen);
45 unsigned int olen, unsigned char *in, unsigned int ilen)
55 i= *(in++);
58 memcpy(out,in,ilen-1);
28 rle_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
44 rle_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
/external/openssl/crypto/ecdh/
H A Dech_key.c19 * Redistribution and use in source and binary forms, with or without
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
34 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
42 * nor may "OpenSSL" appear in their names without prior written
48 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
74 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen))
72 ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *eckey, void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen)) argument
/external/openssl/crypto/rc2/
H A Drc2_ecb.c11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
73 void RC2_ecb_encrypt(const unsigned char *in, unsigned char *out, RC2_KEY *ks, argument
78 c2l(in,
[all...]
/external/oprofile/gui/
H A Doprof_start_config.cpp64 void config_setting::load(istream & in) argument
71 while (getline(in, str)) {
108 istream & operator>>(istream & in, config_setting & object) argument
110 object.load(in);
111 return in;
/external/oprofile/libutil++/
H A Dstring_manip.h41 * separate fields in a string in a list of token; field are
43 * by '\\' to specify a sep char in a token, '\\' not followed
89 std::ostringstream in; local
90 if (!(in << src))
92 std::istringstream out(in.str());
96 in.str() +"\")");
101 // specialization accepting hexadecimal and octal number in input. Note that
/external/ppp/pppd/
H A Dmd5.h9 ** -- FF, GG, HH modified to add in last register done **
22 ** Digest Algorithm" in all material mentioning or referencing this **
27 ** Data Security, Inc. MD5 Message-Digest Algorithm" in all **
35 ** These notices must be retained in any copies of any part of this **
56 unsigned char in[64]; /* input buffer */ member in struct:__anon28886
/external/qemu/distrib/libsparse/src/
H A Dsimg2img.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
40 int in; local
59 in = STDIN_FILENO;
61 in = open(argv[i], O_RDONLY | O_BINARY);
62 if (in < 0) {
68 s = sparse_file_import(in, true, false);
82 close(in);
/external/zopfli/src/zopfli/
H A Dzopfli_lib.c5 you may not use this file except in compliance with the License.
10 Unless required by applicable law or agreed to in writing, software
29 const unsigned char* in, size_t insize,
32 ZopfliGzipCompress(options, in, insize, out, outsize);
34 ZopfliZlibCompress(options, in, insize, out, outsize);
38 in, insize, &bp, out, outsize);
28 ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type, const unsigned char* in, size_t insize, unsigned char** out, size_t* outsize) argument
/external/apache-http/src/org/apache/http/impl/io/
H A DIdentityInputStream.java12 * "License"); you may not use this file except in compliance
17 * Unless required by applicable law or agreed to in writing,
55 private final SessionInputBuffer in; field in class:IdentityInputStream
59 public IdentityInputStream(final SessionInputBuffer in) { argument
61 if (in == null) {
64 this.in = in;
68 if (!this.closed && this.in.isDataAvailable(10)) {
83 return this.in.read();
91 return this.in
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDefiniteLengthInputStream.java18 InputStream in,
21 super(in, length);
17 DefiniteLengthInputStream( InputStream in, int length) argument
H A DLimitedInputStream.java12 InputStream in,
15 this._in = in;
11 LimitedInputStream( InputStream in, int limit) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DAsymmetricBlockCipher.java34 * process the block of len bytes stored in in from offset inOff.
36 * @param in the input data
37 * @param inOff offset into the in array where the data starts
43 public byte[] processBlock(byte[] in, int inOff, int len) argument
H A DBlockCipher.java29 * Return the block size for this cipher (in bytes).
31 * @return the block size for this cipher in bytes.
36 * Process one block of input from the array in and write it to
39 * @param in the array containing the input data.
40 * @param inOff offset into the in array the data starts at.
43 * @exception DataLengthException if there isn't enough data in in, or
44 * space in out.
48 public int processBlock(byte[] in, int inOff, byte[] out, int outOff) argument
52 * Reset the cipher. After resetting the cipher is in th
[all...]
H A DDigest.java16 * return the size, in bytes, of the digest produced by this message digest.
18 * @return the size, in bytes, of the digest produced by this message digest.
25 * @param in the input byte to be entered.
27 public void update(byte in); argument
32 * @param in the byte array containing the data.
36 public void update(byte[] in, int inOff, int len); argument
H A DMac.java27 * Return the block size for this MAC (in bytes).
29 * @return the block size for this MAC in bytes.
36 * @param in the byte to be processed.
39 public void update(byte in) argument
43 * @param in the array containing the input.
44 * @param inOff the index in the array the data begins at.
47 * @exception DataLengthException if there isn't enough data in in.
49 public void update(byte[] in, int inOff, int len) argument
56 * doFinal leaves the MAC in th
[all...]
H A DSigner.java22 * update the internal digest with the byte array in
24 public void update(byte[] in, int off, int len); argument
35 * in the passed in array.
H A DStreamCipher.java30 * @param in the byte to be processed.
33 public byte returnByte(byte in); argument
36 * process a block of bytes from in putting the result into out.
38 * @param in the input byte array.
39 * @param inOff the offset into the in array where the data to be processed starts.
45 public void processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) argument
49 * reset the cipher. This leaves it in the same state
H A DWrapper.java14 public byte[] wrap(byte[] in, int inOff, int inLen); argument
16 public byte[] unwrap(byte[] in, int inOff, int inLen) argument

Completed in 2010 milliseconds

1234567891011>>