Searched defs:in (Results 26 - 50 of 1566) sorted by relevance

1234567891011>>

/external/openssl/crypto/aes/
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DStreamUtil.java18 * @param in input stream of interest
21 static int findLimit(InputStream in) argument
23 if (in instanceof LimitedInputStream)
25 return ((LimitedInputStream)in).getRemaining();
27 else if (in instanceof ASN1InputStream)
29 return ((ASN1InputStream)in).getLimit();
31 else if (in instanceof ByteArrayInputStream)
33 return ((ByteArrayInputStream)in).available();
35 else if (in instanceof FileInputStream)
39 FileChannel channel = ((FileInputStream)in)
[all...]
/external/chromium_org/chrome/browser/net/
H A Ddisk_cache_dir_policy_handler_unittest.cc3 // found in the LICENSE file.
41 // Use a variable in the value. It should be expanded by the handler.
42 const std::string in = "${user_name}/foo"; local
46 new base::StringValue(in),
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dofb.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_ofb128_encrypt(const uint8_t *in, uint8_t *out, size_t len, argument
62 assert(in && out && key && ivec && num);
68 *(out++) = *(in++) ^ ivec[n];
74 ((size_t)in | (size_
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
H A Dpp_colors.c8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
34 pp_nocolor(struct pp_queue_t *ppq, struct pipe_resource *in, argument
40 pp_filter_setup_in(p, in);
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix2_fs.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,
22 const OMX_F32 *in0 = in + i;
14 x86SP_FFT_CToC_FC32_Fwd_Radix2_fs( const OMX_F32 *in, OMX_F32 *out, OMX_INT n) argument
H A Dx86SP_FFT_CToC_FC32_Inv_Radix2_fs.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,
23 const OMX_F32 *in0 = in + i;
14 x86SP_FFT_CToC_FC32_Inv_Radix2_fs( const OMX_F32 *in, OMX_F32 *out, OMX_INT n) argument
/external/chromium_org/third_party/opus/src/silk/
H A Dresampler_down2.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 [ len ] */
49 /* Internal variables and state are in Q10 format */
52 in32 = silk_LSHIFT( (opus_int32)in[ 2 * k ], 10 );
61 in32 = silk_LSHIFT( (opus_int32)in[ 2 * k + 1 ], 10 );
36 silk_resampler_down2( opus_int32 *S, opus_int16 *out, const opus_int16 *in, opus_int32 inLen ) argument
H A Dresampler_down2_3.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
42 const opus_int16 *in, /* I Input signal [ inLen ] */
60 /* Second-order AR filter (output in Q8) */
61 silk_resampler_private_AR2( &S[ ORDER_FIR ], &buf[ ORDER_FIR ], in,
74 /* Scale down, saturate and store in output array */
82 /* Scale down, saturate and store in output array */
89 in += nSamplesIn;
39 silk_resampler_down2_3( opus_int32 *S, opus_int16 *out, const opus_int16 *in, opus_int32 inLen ) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dabs_quant.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.
35 int16_t *in, /* (i) vector to encode */
52 /* Perform the quantization loop in two sections of length quantLen[i],
67 in, in_weighted,
70 &in[quantLen[0]], &in_weighted[quantLen[0]],
29 WebRtcIlbcfix_AbsQuant( iLBC_Enc_Inst_t *iLBCenc_inst, iLBC_bits *iLBC_encbits, int16_t *in, int16_t *weightDenum ) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dgenstring.c7 * 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 the
37 FILE *in, *out; local
63 in = fopen(argv[i], "rt");
64 if (!in) {
71 while (fgets(str, MAXLINE, in)) {
93 fclose(in);
/external/clang/test/Analysis/
H A Dptr-arith.cpp9 void reset(int *in) { argument
10 while (in != p) // Loop must be entered.
15 int test (int *in) { argument
18 littleX.p = in;
/external/clang/test/CodeGen/
H A Darm64-vrsqrt.c5 uint32x2_t test_vrsqrte_u32(uint32x2_t in) { argument
7 // CHECK: call <2 x i32> @llvm.aarch64.neon.ursqrte.v2i32(<2 x i32> %in)
8 return vrsqrte_u32(in);
11 float32x2_t test_vrsqrte_f32(float32x2_t in) { argument
13 // CHECK: call <2 x float> @llvm.aarch64.neon.frsqrte.v2f32(<2 x float> %in)
14 return vrsqrte_f32(in);
18 uint32x4_t test_vrsqrteq_u32(uint32x4_t in) { argument
20 // CHECK: call <4 x i32> @llvm.aarch64.neon.ursqrte.v4i32(<4 x i32> %in)
21 return vrsqrteq_u32(in);
24 float32x4_t test_vrsqrteq_f32(float32x4_t in) { argument
[all...]
/external/clang/test/SemaCXX/
H A Dwchar_t.cpp31 wchar_t in[] = L"\x434" "\x434"; // No warning variable
/external/fio/
H A Dfifo.h11 * This program is distributed in the hope that it will be useful,
24 unsigned int in; /* data is added at offset (in % size) */ member in struct:fifo
35 return fifo->in - fifo->out;
40 return fifo->size - fifo->in + fifo->out;
/external/javassist/src/main/javassist/bytecode/
H A DDeprecatedAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
31 DeprecatedAttribute(ConstPool cp, int n, DataInputStream in) argument
34 super(cp, n, in);
H A DSyntheticAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
31 SyntheticAttribute(ConstPool cp, int n, DataInputStream in) argument
34 super(cp, n, in);
/external/javassist/src/main/javassist/util/proxy/
H A DProxyObjectInputStream.java6 * 1.1 (the "License"); you may not use this file except in compliance with
37 * @param in
41 * @throws NullPointerException if in is null
43 public ProxyObjectInputStream(InputStream in) throws IOException argument
45 super(in);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DTextFilter.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
26 void filter(String in, Appendable out) throws IOException; argument
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DJsValidateUnquotedLiteral.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
33 public void filter(String in, Appendable out) throws IOException { argument
35 if (in.equals("true") || in.equals("false")) {
36 out.append(in);
41 if (in.startsWith("0x") || in.startsWith("0X")) {
47 for (int i = 2; i < in.length(); i++) {
48 char c = in
[all...]
H A DNullEscapeFunction.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
31 public void filter(String in, Appendable out) throws IOException { argument
32 out.append(in);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DCssUrlValidateFunction.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
24 * inserted in a CSS URL context. In particular:
43 protected void applyEscaping(String in, Appendable out) throws IOException { argument
44 for (int i = 0; i < in.length(); i++) {
45 char ch = in.charAt(i);
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/
H A Dsetg.pass.cpp41 char in[] = "ABC"; local
42 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setg(in, in+1, in
[all...]
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
H A Dsetp.pass.cpp41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[
[all...]
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
H A Dxsputn.pass.cpp37 char in[] = "123456"; local
38 assert(t.sputn(in, sizeof(in)) == 0);
39 char out[sizeof(in)] = {0};
41 assert(t.sputn(in, sizeof(in)) == sizeof(in));
42 assert(strcmp(in, out) == 0);

Completed in 460 milliseconds

1234567891011>>