Searched defs:in (Results 751 - 775 of 1566) sorted by relevance

<<31323334353637383940>>

/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A De_rc2.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
212 static void RC2_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t length, argument
224 c2l(in, tin
375 rc2_cbc_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in, size_t inl) argument
[all...]
H A De_rc4.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
79 static int rc4_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in, argument
83 RC4(rc4key, in_len, in, ou
170 aead_rc4_md5_tls_seal(const EVP_AEAD_CTX *ctx, uint8_t *out, size_t *out_len, size_t max_out_len, const uint8_t *nonce, size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *ad, size_t ad_len) argument
264 aead_rc4_md5_tls_open(const EVP_AEAD_CTX *ctx, uint8_t *out, size_t *out_len, size_t max_out_len, const uint8_t *nonce, size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *ad, size_t ad_len) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/des/
H A Ddes.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
298 const uint8_t *in; local
303 in
521 const uint8_t *in = in_block->bytes; local
536 DES_ncbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, const DES_key_schedule *schedule, DES_cblock *ivec, int enc) argument
612 DES_ede3_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, const DES_key_schedule *ks1, const DES_key_schedule *ks2, const DES_key_schedule *ks3, DES_cblock *ivec, int enc) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/digest/
H A Ddigest.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
117 int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in) { argument
120 if (in
162 EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/evp/
H A Devp_ctx.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
315 const uint8_t *in, size_t inlen) {
325 return ctx->pmeth->encrypt(ctx, out, outlen, in, inle
314 EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, uint8_t *out, size_t *outlen, const uint8_t *in, size_t inlen) argument
345 EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, uint8_t *out, size_t *outlen, const uint8_t *in, size_t inlen) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
H A Dpoly1305.c5 * copyright notice and this permission notice appear in all copies.
54 void CRYPTO_poly1305_update_neon(poly1305_state *state, const uint8_t *in,
74 static void poly1305_update(struct poly1305_state_st *state, const uint8_t *in, argument
88 t0 = U8TO32_LE(in);
89 t1 = U8TO32_LE(in + 4);
90 t2 = U8TO32_LE(in + 8);
91 t3 = U8TO32_LE(in + 12);
93 in += 16;
144 mp[j] = in[j];
210 void CRYPTO_poly1305_update(poly1305_state *statep, const uint8_t *in, argument
[all...]
H A Dpoly1305_arm.c5 * copyright notice and this permission notice appear in all copies.
15 /* This implementation was taken from the public domain, neon2 version in
32 extern int blocks(fe1305x2 *h, const fe1305x2 *precomp, const uint8_t *in,
122 /* load32 exists to avoid breaking strict aliasing rules in
198 void CRYPTO_poly1305_update_neon(poly1305_state *state, const uint8_t *in, argument
212 st->buf[st->buf_used + i] = in[i];
215 in += todo;
230 tlen -= blocks(h, precomp, in, tlen);
232 in += tlen;
237 st->buf[i] = in[
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/sha/
H A Dsha256.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
183 void sha256_block_data_order(SHA256_CTX *ctx, const void *in, size_t num);
205 * differ from those observed in FIP
232 sha256_block_data_order(SHA256_CTX *ctx, const void *in, size_t num) argument
[all...]
H A Dsha512.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
72 * on [aligned] data in host byte order and one - on data in inpu
433 sha512_block_data_order(SHA512_CTX *ctx, const void *in, size_t num) argument
507 sha512_block_data_order(SHA512_CTX *ctx, const void *in, size_t num) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx_name.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
75 const unsigned char **in, long len,
86 static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in);
177 x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx) argument
402 asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in) argument
511 X509_NAME *in; local
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_asn1.c10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
68 * No patent licenses or other rights except those expressly stated in
126 int i2d_SSL_SESSION(SSL_SESSION *in, unsigne argument
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dcluster.h4 // you may not use this file except in compliance with the License.
9 // Unless required by applicable law or agreed to in writing, software
61 // it is below a threshold, stores the pair (idx1, idx2) in the *pairs heap.
192 // Find the best 'out' histogram for each of the 'in' histograms.
195 void HistogramRemap(const Histogram<kSize>* in, int in_size, argument
203 double best_bits = HistogramBitCostDistance(in[i], out[best_out]);
206 const double cur_bits = HistogramBitCostDistance(in[i], out[*k]);
221 out[symbols[i]].AddHistogram(in[i]);
225 // Reorder histograms in *out so that the new symbols in *symbol
250 ClusterHistograms(const std::vector<Histogram<kSize> >& in, int num_contexts, int num_blocks, int max_histograms, std::vector<Histogram<kSize> >* out, std::vector<int>* histogram_symbols) argument
[all...]
/external/chromium_org/third_party/brotli/src/woff2/
H A Dtransform.cc4 // you may not use this file except in compliance with the License.
9 // Unless required by applicable law or agreed to in writing, software
40 void WriteBytes(std::vector<uint8_t>* out, const std::vector<uint8_t>& in) { argument
41 for (int i = 0; i < in.size(); ++i) {
42 out->push_back(in[i]);
/external/chromium_org/third_party/cython/src/Tools/
H A Dcython-mode.el46 "Keymap used in `cython-mode'.")
49 `(;; new keywords in Cython language
79 ;; Some functions defined differently in the different python modes
86 (defun cython-in-string/comment ()
87 "Return non-nil if point is in a comment or string."
159 (let ((in (current-indentation)))
160 (or (and (zerop ci) (zerop in))
162 ;; Not sure why it was like this -- fails in case of
165 ;;(and def-line (= in ci))
166 (= in c
[all...]
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
H A DBrailleInputEvent.java5 * use this file except in compliance with the License. You may obtain a copy of
10 * Unless required by applicable law or agreed to in writing, software
273 public BrailleInputEvent createFromParcel(Parcel in) {
274 return new BrailleInputEvent(in);
295 private BrailleInputEvent(Parcel in) { argument
296 mCommand = in.readInt();
297 mArgument = in.readInt();
298 mEventTime = in.readLong();
/external/chromium_org/third_party/icu/source/common/
H A Dpunycode.cpp31 and distribute it in any way that does not diminish the rights
88 * (when used for representing integers) is d, which must be in the
90 * nonzero, in which case the uppercase form is used.
109 * point (for use in representing integers) in the range 0 to
156 * The following code omits the {parts} of the pseudo-algorithm in the spec
203 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit):
379 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
440 for(in
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsdetect.cpp195 void CharsetDetector::setText(const char *in, int32_t len) argument
197 textIn->setText(in, len);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dspreptst.c108 const char *in; member in struct:ConformanceTestCases
324 const char* src = conformanceTestCases[i].in;
353 understood universally, rather than in the context of a particular
376 appended "@" and should appear in the form "xxxx@" (note: no domain
411 "\\u0c15\\u0c36\\u0c30\\u0c2c\\u0c3e\\u0c26@cs7.dillons.co.uk.203.119.193.in-addr.arpa",
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dpunyref.c24 and distribute it in any way that does not diminish the rights
37 /* Implementation (would normally go in its own .c file): */
60 /* point (for use in representing integers) in the range 0 to */
70 /* (when used for representing integers) is d, which needs to be in */
72 /* nonzero, in which case the uppercase form is used. The behavior */
223 b, j, in, oldi, w, k, digit, t; local
248 for (in = b > 0 ? b + 1 : 0; in < input_length; ++out) {
250 /* in i
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_gencmn.c46 All item names are stored as char * strings in one block between the ToC table
53 The data items are stored in the sorted order of their names.
124 FileStream *in, *file; local
150 in = T_FileStream_stdin();
152 in = T_FileStream_open(dataFile, "r");
153 if(in == NULL) {
168 while((s != NULL && *s != 0) || (s=T_FileStream_readLine(in, (line=linePtr),
208 if(in!=T_FileStream_stdin()) {
209 T_FileStream_close(in);
213 fprintf(stderr, "gencmn: no files listed in
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
H A DAppRTCClient.java5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
304 // Return the constraints specified for |type| of "audio" or "video" in
444 private static String drainStream(InputStream in) { argument
445 Scanner s = new Scanner(in).useDelimiter("\\A");
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dstringutil.cc4 // you may not use this file except in compliance with the License.
9 // Unless required by applicable law or agreed to in writing, software
110 bool TryStripPrefixString(const string& in, const string& prefix, string* out) { argument
112 const bool has_prefix = in.compare(0, prefix.length(), prefix) == 0;
113 out->assign(has_prefix ? in.substr(prefix.length()) : in);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dfdct4x4_test.cc5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
30 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
31 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
32 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride,
34 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
40 void fdct4x4_ref(const int16_t *in, tran_low_ argument
45 fht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) argument
49 fwht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) argument
55 idct4x4_10(const tran_low_t *in, uint8_t *out, int stride) argument
59 idct4x4_12(const tran_low_t *in, uint8_t *out, int stride) argument
63 iht4x4_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
67 iht4x4_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
71 iwht4x4_10(const tran_low_t *in, uint8_t *out, int stride) argument
75 iwht4x4_12(const tran_low_t *in, uint8_t *out, int stride) argument
288 RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) argument
333 RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) argument
379 RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) argument
[all...]
H A Dfdct8x8_test.cc5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
28 void reference_8x8_dct_1d(const double in[8], double out[8], int stride) { argument
33 out[k] += in[n] * cos(kPi * (2 * n + 1) * k / 16.0);
65 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
66 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
67 typedef void (*FhtFunc)(const int16_t *in, tran_low_
75 fdct8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) argument
79 fht8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) argument
84 idct8x8_10(const tran_low_t *in, uint8_t *out, int stride) argument
88 idct8x8_12(const tran_low_t *in, uint8_t *out, int stride) argument
92 iht8x8_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
96 iht8x8_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
456 RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) argument
506 RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) argument
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dfilters.c4 // that can be found in the COPYING file in the root of the source
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
22 # define SANITY_CHECK(in, out) \
23 assert(in != NULL); \
44 static WEBP_INLINE void DoHorizontalFilter(const uint8_t* in, argument
51 SANITY_CHECK(in, out);
52 in
91 DoVerticalFilter(const uint8_t* in, int width, int height, int stride, int row, int num_rows, int inverse, uint8_t* out) argument
144 DoGradientFilter(const uint8_t* in, int width, int height, int stride, int row, int num_rows, int inverse, uint8_t* out) argument
[all...]

Completed in 541 milliseconds

<<31323334353637383940>>