Searched defs:in (Results 351 - 375 of 1566) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A D__init__.py3 # Redistribution and use in source and binary forms, with or without
9 # * Redistributions in binary form must reproduce the above
11 # in the documentation and/or other materials provided with the
31 import builders # Why is this in port? namespace
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_d2i_fp.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
66 static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb);
71 void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, voi argument
88 ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x) argument
107 ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x) argument
125 ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x) argument
143 asn1_d2i_read_bio(BIO *in, BUF_MEM **pb) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dsocket.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
110 static int sock_write(BIO *b, const char *in, int inl) { argument
114 ret = send(b->num, in, in
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dsqrt.c6 * Redistribution and use in source and binary forms, with or without
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
21 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
29 * nor may "OpenSSL" appear in their names without prior written
35 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
63 * in Algebraic Computational Number Theory", algorithm 1.5.1).
65 BIGNUM *BN_mod_sqrt(BIGNUM *in, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) { argument
66 BIGNUM *ret = in;
81 if (ret != in) {
432 BN_sqrt(BIGNUM *out_sqrt, const BIGNUM *in, BN_CTX *ctx) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bytestring/
H A Dber.c5 * copyright notice and this permission notice appear in all copies.
25 /* cbs_find_ber walks an ASN.1 structure in |orig_in| and sets |*ber_found|
27 * |in| is not changed. It returns one on success (i.e. |*ber_found| was set)
30 CBS in; local
36 CBS_init(&in, CBS_data(orig_in), CBS_len(orig_in));
39 while (CBS_len(&in) > 0) {
44 if (!CBS_get_any_asn1_element(&in, &contents, &tag, &header_len)) {
65 * one can just test the "constructed" bit in the tag but, in BER, even
81 /* cbs_convert_ber reads BER data from |in| an
87 cbs_convert_ber(CBS *in, CBB *out, char squash_header, char looking_for_eoc, unsigned depth) argument
192 CBS_asn1_ber_to_der(CBS *in, uint8_t **out, size_t *out_len) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/chacha/
H A Dchacha_generic.c5 * copyright notice and this permission notice appear in all copies.
51 /* Defined in chacha_vec.c */
52 void CRYPTO_chacha_20_neon(uint8_t *out, const uint8_t *in, size_t in_len,
57 /* chacha_core performs |num_rounds| rounds of ChaCha20 on the input words in
83 void CRYPTO_chacha_20(uint8_t *out, const uint8_t *in, size_t in_len, argument
91 if (CRYPTO_is_NEON_capable() && ((intptr_t)in & 15) == 0 &&
93 CRYPTO_chacha_20_neon(out, in, in_len, key, nonce, counter);
126 out[i] = in[i] ^ buf[i];
130 in += todo;
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A Daead.c5 * copyright notice and this permission notice appear in all copies.
52 /* check_alias returns 0 if |out| points within the buffer determined by |in|
55 * When processing, there's only an issue if |out| points within in[:in_len]
56 * and isn't equal to |in|. If that's the case then writing the output will
60 static int check_alias(const uint8_t *in, size_t in_len, const uint8_t *out) { argument
61 if (out <= in) {
63 } else if (in + in_len <= out) {
71 size_t nonce_len, const uint8_t *in, size_t in_len,
80 if (!check_alias(in, in_len, out)) {
85 if (ctx->aead->seal(ctx, out, out_len, max_out_len, nonce, nonce_len, in,
69 EVP_AEAD_CTX_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
98 EVP_AEAD_CTX_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...]
H A De_des.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
82 static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in, argument
87 DES_ncbc_encrypt(in, ou
131 des_ede3_cbc_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in, size_t in_len) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dcfb.c4 * Redistribution and use in source and binary forms, with or without
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in
19 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
27 * nor may "OpenSSL" appear in their names without prior written
33 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
56 void CRYPTO_cfb128_encrypt(const uint8_t *in, uint8_t *out, size_t len, argument
62 assert(in && out && key && ivec && num);
69 *(out++) = ivec[n] ^= *(in++);
73 if (STRICT_ALIGNMENT && ((size_t)in | (size_
155 cfbr_encrypt_block(const uint8_t *in, uint8_t *out, unsigned nbits, const void *key, uint8_t ivec[16], int enc, block128_f block) argument
197 CRYPTO_cfb128_1_encrypt(const uint8_t *in, uint8_t *out, size_t bits, const void *key, uint8_t ivec[16], int *num, int enc, block128_f block) argument
214 CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dpkcs7.c5 * copyright notice and this permission notice appear in all copies.
28 CBS in, content_info, content_type, wrapped_signed_data, signed_data, local
34 /* The input may be in BER format. */
39 CBS_init(&in, der_bytes, der_len);
41 CBS_init(&in, CBS_data(cbs), CBS_len(cbs));
45 if (!CBS_get_asn1(&in, &content_info, CBS_ASN1_SEQUENCE) ||
/external/chromium_org/third_party/boringssl/src/ssl/test/
H A Dasync_bio.cc5 * copyright notice and this permission notice appear in all copies.
37 static int async_write(BIO *bio, const char *in, int inl) { argument
46 return BIO_write(bio->next_bio, in, inl);
60 int ret = BIO_write(bio->next_bio, in, inl);
H A Dpacketed_bio.cc5 * copyright notice and this permission notice appear in all copies.
25 static int packeted_write(BIO *bio, const char *in, int inl) { argument
45 ret = BIO_write(bio->next_bio, in, inl);
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dstreams.c4 you may not use this file except in compliance with the License.
9 Unless required by applicable law or agreed to in writing, software
82 BrotliInput in; local
83 in.cb_ = BrotliStdinInputFunction;
84 in.data_ = NULL;
85 return in;
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
H A DBrailleDisplayProperties.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
70 * Returns an unmodifiable map mapping key names in {@link BrailleKeyBinding}
90 public BrailleDisplayProperties createFromParcel(Parcel in) {
91 return new BrailleDisplayProperties(in);
117 private BrailleDisplayProperties(Parcel in) { argument
118 mNumTextCells = in.readInt();
119 mNumStatusCells = in.readInt();
120 mKeyBindings = in.createTypedArray(BrailleKeyBinding.CREATOR);
121 int size = in
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftgloadr.c50 /* several glyphs (those `in the stack'). */
62 /* re-implement it in one way or the other, which wasted code and */
350 /* adjust contours count in newest outline */
373 FT_Outline* in = &source->base.outline; local
376 FT_ARRAY_COPY( out->points, in->points,
378 FT_ARRAY_COPY( out->tags, in->tags,
380 FT_ARRAY_COPY( out->contours, in->contours,
/external/chromium_org/third_party/icu/source/i18n/
H A Dinputext.cpp49 void InputText::setText(const char *in, int32_t len) argument
53 fRawInput = (const uint8_t *) in;
54 fRawLength = len == -1? (int32_t)uprv_strlen(in) : len;
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dmd5_utils.c4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
20 * Still in the public domain.
76 t = 64 - (t & 0x3f); /* Space available in ctx->in (at least 1) */
79 memcpy((md5byte *)ctx->in + 64 - t, buf, len);
84 memcpy((md5byte *)ctx->in + 64 - t, buf, t);
85 byteSwap(ctx->in, 16);
86 MD5Transform(ctx->buf, ctx->in);
90 /* Process data in 6
159 MD5Transform(UWORD32 buf[4], UWORD32 const in[16]) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
H A Du_unfilled_indices.c7 * to deal in the Software without restriction, including without limitation
13 * paragraph) shall be included in all copies or substantial portions of the
29 static void translate_ubyte_ushort( const void *in, argument
33 const ubyte *in_ub = (const ubyte *)in;
40 static void translate_memcpy_ushort( const void *in, argument
44 memcpy(out, in, nr*sizeof(short));
47 static void translate_memcpy_uint( const void *in, argument
51 memcpy(out, in, nr*sizeof(int));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
H A Dpp_run.c8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
38 * Runs all requested filters in order and handles shuffling the temp
39 * buffers in between.
42 pp_run(struct pp_queue_t *ppq, struct pipe_resource *in, argument
48 if (in->width0 != ppq->p->framebuffer.width ||
49 in->height0 != ppq->p->framebuffer.height) {
52 pp_init_fbos(ppq, in->width0, in->height0);
55 if (in
114 pp_filter_setup_in(struct program *p, struct pipe_resource *in) argument
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_fs_sse.c5 * 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.
16 const OMX_F32 *in,
34 const OMX_F32 *in0 = in + i;
15 x86SP_FFT_CToC_FC32_Fwd_Radix4_fs_sse( const OMX_F32 *in, OMX_F32 *out, OMX_INT n) argument
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ls.c5 * 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.
15 const OMX_F32 *in,
36 const OMX_F32 *in0 = in + (i << 1);
14 x86SP_FFT_CToC_FC32_Fwd_Radix4_ls( const OMX_F32 *in, OMX_F32 *out, const OMX_F32 *twiddle, OMX_INT n) argument
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_fs_sse.c5 * 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.
16 const OMX_F32 *in,
33 const OMX_F32 *in0 = in + i;
15 x86SP_FFT_CToC_FC32_Inv_Radix4_fs_sse( const OMX_F32 *in, OMX_F32 *out, OMX_INT n) argument
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ls.c5 * 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.
15 const OMX_F32 *in,
36 const OMX_F32 *in0 = in + (i << 1);
14 x86SP_FFT_CToC_FC32_Inv_Radix4_ls( const OMX_F32 *in, OMX_F32 *out, const OMX_F32 *twiddle, OMX_INT n) argument
/external/chromium_org/third_party/opus/src/celt/
H A Dopus_custom_demo.c5 Redistribution and use in source and binary forms, with or without
12 - Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
61 opus_int16 *in, *out; local
128 in = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
134 err = fread(in, sizeof(short), frame_size*channels, fin);
137 len = opus_custom_encode(enc, in, frame_size, data, bytes_per_packet);
175 out[i] = in[i];
180 rmsd += (in[i]-out[i])*1.0*(in[
[all...]
/external/chromium_org/third_party/opus/src/celt/tests/
H A Dtest_unit_dft.c4 Redistribution and use in source and binary forms, with or without
11 - Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
54 void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse) argument
78 ansr += in[k].r * re - in[k].i * im;
79 ansi += in[k].r * im + in[k].i * re;
99 kiss_fft_cpx * in = (kiss_fft_cpx*)malloc(buflen); local
105 in[
[all...]

Completed in 9343 milliseconds

<<11121314151617181920>>