Searched defs:in (Results 1 - 25 of 1569) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dmmx-inline-asm-error.c4 vec256 foo(vec256 in) { argument
7 asm("something %0" : : "y"(in)); // expected-error {{invalid type 'vec256' in asm input for constraint 'y'}}
8 asm("something %0" : "=y"(out)); // expected-error {{invalid type 'vec256' in asm input for constraint 'y'}}
9 asm("something %0, %0" : "+y"(out)); // expected-error {{invalid type 'vec256' in asm input for constraint 'y'}}
/external/dropbear/libtomcrypt/src/pk/asn1/der/boolean/
H A Dder_decode_boolean.c4 * algorithms in a highly modular and flexible manner.
23 @param in The destination for the DER encoded BOOLEAN
28 int der_decode_boolean(const unsigned char *in, unsigned long inlen, argument
31 LTC_ARGCHK(in != NULL);
34 if (inlen != 3 || in[0] != 0x01 || in[1] != 0x01 || (in[2] != 0x00 && in[2] != 0xFF)) {
38 *out = (in[2]==0xFF) ? 1 : 0;
H A Dder_encode_boolean.c4 * algorithms in a highly modular and flexible manner.
23 @param in The boolean to encode
25 @param outlen [in/out] The max size and resulting size of the DER BOOLEAN
28 int der_encode_boolean(int in, argument
42 out[2] = in ? 0xFF : 0x00;
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
H A Dder_sequence_free.c4 * algorithms in a highly modular and flexible manner.
22 @param in The list to free
24 void der_sequence_free(ltc_asn1_list *in) argument
29 while (in->prev != NULL || in->parent != NULL) {
30 if (in->parent != NULL) {
31 in = in->parent;
33 in = in
[all...]
/external/dropbear/libtomcrypt/src/pk/pkcs1/
H A Dpkcs_1_os2ip.c4 * algorithms in a highly modular and flexible manner.
22 @param in The binary string to read
26 int pkcs_1_os2ip(void *n, unsigned char *in, unsigned long inlen) argument
28 return mp_read_unsigned_bin(n, in, inlen);
/external/libvorbis/doc/
H A Da2-encapsulation-rtp.tex4 \section{Vorbis encapsulation in RTP} \label{vorbis:over:rtp}
9 Audio''} for description of how to embed Vorbis audio in an RTP stream.
/external/dropbear/libtomcrypt/src/hashes/helper/
H A Dhash_filehandle.c4 * algorithms in a highly modular and flexible manner.
21 @param in The FILE* handle of the file you want to hash
23 @param outlen [in/out] The max size and resulting size of the digest
26 int hash_filehandle(int hash, FILE *in, unsigned char *out, unsigned long *outlen) argument
38 LTC_ARGCHK(in != NULL);
54 x = fread(buf, 1, sizeof(buf), in);
/external/dropbear/libtomcrypt/src/mac/hmac/
H A Dhmac_process.c4 * algorithms in a highly modular and flexible manner.
23 @param in The data to send through HMAC
27 int hmac_process(hmac_state *hmac, const unsigned char *in, unsigned long inlen) argument
31 LTC_ARGCHK(in != NULL);
35 return hash_descriptor[hmac->hash].process(&hmac->md, in, inlen);
/external/e2fsprogs/lib/uuid/
H A Dunpack.c7 * Redistribution and use in source and binary forms, with or without
11 * notice, and the entire permission notice in its entirety,
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
38 void uuid_unpack(const uuid_t in, struct uuid *uu) argument
40 const uint8_t *ptr = in;
/external/openssh/openbsd-compat/
H A Dinet_ntoa.c6 * 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 the
42 #include <netinet/in.h>
47 inet_ntoa(struct in_addr in) argument
52 p = (char *)&in;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-encblock.c19 * @in: Input data (16 bytes)
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) argument
29 aes_encrypt(ctx, in, out);
H A Dmd5_i.h15 u8 in[64]; member in struct:MD5Context
/external/wpa_supplicant_8/src/crypto/
H A Daes-encblock.c19 * @in: Input data (16 bytes)
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) argument
29 aes_encrypt(ctx, in, out);
H A Dmd5_i.h15 u8 in[64]; member in struct:MD5Context
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-encblock.c19 * @in: Input data (16 bytes)
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) argument
29 aes_encrypt(ctx, in, out);
H A Dmd5_i.h15 u8 in[64]; member in struct:MD5Context
/external/chromium/net/base/
H A Ddns_util_unittest.cc3 // found in the LICENSE file.
14 // NUL in the result.
15 static std::string IncludeNUL(const char* in) { argument
16 return std::string(in, strlen(in) + 1);
38 // 253 characters in the name: still valid
42 // 254 characters in the name: invalid
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dinet_ntoa.cc3 // found in the LICENSE file.
18 char* inet_ntoa(struct in_addr in) { argument
21 GetByte(&in, 0), GetByte(&in, 1),
22 GetByte(&in, 2), GetByte(&in, 3));
/external/chromium_org/net/base/
H A Ddns_util_unittest.cc3 // found in the LICENSE file.
14 // NUL in the result.
15 static std::string IncludeNUL(const char* in) { argument
16 return std::string(in, strlen(in) + 1);
40 // 253 characters in the name: still valid
44 // 254 characters in the name: invalid
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dmd5.h4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
19 // Made context first parameter in MD5Final for consistency with Sha1.
26 // Canonical name for a MD5 context structure, used in many crypto libs.
32 uint32 in[16]; member in struct:MD5Context
38 void MD5Transform(uint32 buf[4], const uint32 in[16]);
/external/chromium_org/third_party/openssl/openssl/crypto/aes/
H A Daes_cbc.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_cbc_encrypt(const unsigned char *in, unsigned char *out, argument
60 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)AES_encrypt);
62 CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)AES_decrypt);
H A Daes_ecb.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/)"
62 void AES_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, ou
[all...]
H A Daes_ofb.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_ofb128_encrypt(const unsigned char *in, unsigned char *out, argument
59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
/external/chromium_org/third_party/opus/src/silk/
H A Dresampler_private_AR2.c3 Redistribution and use in source and binary forms, with or without
8 - Redistributions in binary form must reproduce the above copyright
9 notice, this list of conditions and the following disclaimer in the
39 const opus_int16 in[], /* I Input signal */
48 out32 = silk_ADD_LSHIFT32( S[ 0 ], (opus_int32)in[ k ], 8 );
36 silk_resampler_private_AR2( opus_int32 S[], opus_int32 out_Q8[], const opus_int16 in[], const opus_int16 A_Q14[], opus_int32 len ) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dmd5.h19 unsigned char in[64]; member in struct:yasm_md5_context
30 void yasm_md5_transform(unsigned long buf[4], const unsigned char in[64]);

Completed in 762 milliseconds

1234567891011>>