Searched defs:in (Results 226 - 250 of 1566) sorted by relevance

1234567891011>>

/external/speex/libspeex/
H A Dvq_bfin.h8 Redistribution and use in source and binary forms, with or without
15 - Redistributions in binary form must reproduce the above copyright
16 notice, this list of conditions and the following disclaimer in the
37 void vq_nbest(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack) argument
68 : "a" (len-1), "a" (in), "a" (2), "d" (entries), "d" (len<<1), "1" (codebook), "4" (E), "2" (best_dist[0]), "3" (nbest[0])
91 : "a" (len-1), "a" (in), "a" (2), "1" (codebook), "0" (E[i])
/external/valgrind/main/none/tests/s390x/
H A Dbfp-2.c10 void sqebr(float in) argument
14 __asm__ volatile("sqebr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
15 printf("sqebr %f -> %f\n", in, out);
18 void sqdbr(double in) argument
22 __asm__ volatile("sqdbr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
23 printf("sqdbr %f -> %f\n", in, ou
26 lnebr(float in) argument
34 lndbr(double in) argument
42 lpebr(float in) argument
50 lpdbr(double in) argument
58 lcebr(float in) argument
66 lcdbr(double in) argument
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dfilter_ar_fast_q12.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.
14 * The description header can be found in signal_processing_library.h
20 void WebRtcSpl_FilterARFastQ12(WebRtc_Word16 *in, WebRtc_Word16 *out, WebRtc_Word16 *A, argument
26 WebRtc_Word16 *x_ptr = &in[0];
H A Dresample_48khz.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.
14 * The description header can be found in signal_processing_library.h
27 void WebRtcSpl_Resample48khzTo16khz(const WebRtc_Word16* in, WebRtc_Word16* out, argument
31 // WebRtc_Word16 in[480]
34 WebRtcSpl_LPBy2ShortToInt(in, 480, tmpmem + 16, state->S_48_48);
37 // WebRtc_Word32 in[48
65 WebRtcSpl_Resample16khzTo48khz(const WebRtc_Word16* in, WebRtc_Word16* out, WebRtcSpl_State16khzTo48khz* state, WebRtc_Word32* tmpmem) argument
103 WebRtcSpl_Resample48khzTo8khz(const WebRtc_Word16* in, WebRtc_Word16* out, WebRtcSpl_State48khzTo8khz* state, WebRtc_Word32* tmpmem) argument
148 WebRtcSpl_Resample8khzTo48khz(const WebRtc_Word16* in, WebRtc_Word16* out, WebRtcSpl_State8khzTo48khz* state, WebRtc_Word32* tmpmem) argument
[all...]
H A Dresample_by_2_internal.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.
31 void WebRtcSpl_DownBy2IntToShort(WebRtc_Word32 *in, WebRtc_Word32 len, WebRtc_Word16 *out, argument
42 tmp0 = in[i << 1];
64 in[i << 1] = (state[3] >> 1);
67 in++;
72 tmp0 = in[
124 WebRtcSpl_DownBy2ShortToInt(const WebRtc_Word16 *in, WebRtc_Word32 len, WebRtc_Word32 *out, WebRtc_Word32 *state) argument
200 WebRtcSpl_UpBy2ShortToInt(const WebRtc_Word16 *in, WebRtc_Word32 len, WebRtc_Word32 *out, WebRtc_Word32 *state) argument
270 WebRtcSpl_UpBy2IntToInt(const WebRtc_Word32 *in, WebRtc_Word32 len, WebRtc_Word32 *out, WebRtc_Word32 *state) argument
340 WebRtcSpl_UpBy2IntToShort(const WebRtc_Word32 *in, WebRtc_Word32 len, WebRtc_Word16 *out, WebRtc_Word32 *state) argument
419 WebRtcSpl_LPBy2ShortToInt(const WebRtc_Word16* in, WebRtc_Word32 len, WebRtc_Word32* out, WebRtc_Word32* state) argument
552 WebRtcSpl_LPBy2IntToInt(const WebRtc_Word32* in, WebRtc_Word32 len, WebRtc_Word32* out, WebRtc_Word32* state) argument
[all...]
H A Dspl_sqrt.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.
14 * The description header can be found in signal_processing_library.h
20 WebRtc_Word32 WebRtcSpl_SqrtLocal(WebRtc_Word32 in);
22 WebRtc_Word32 WebRtcSpl_SqrtLocal(WebRtc_Word32 in) argument
29 y=in/2
36 B = in;
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
H A Disacfix_unittest.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.
74 int16_t in[kSamples]; local
87 in[i] = WEBRTC_SPL_WORD32_MAX / (i + 1);
90 WebRtcIsacfix_HighpassFilterFixDec32(in, kSamples,
94 EXPECT_EQ(out[i], in[i]);
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCase.java6 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
62 public void setInput(ITestCaseInput in) { argument
63 this.input = in;
/external/apache-http/src/org/apache/http/impl/conn/
H A DLoggingSessionInputBuffer.java12 * (the "License"); you may not use this file except in compliance with
17 * Unless required by applicable law or agreed to in writing, software
56 private final SessionInputBuffer in; field in class:LoggingSessionInputBuffer
63 * @param in The session input buffer.
66 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) { argument
68 this.in = in;
73 return this.in.isDataAvailable(timeout);
77 int l = this.in.read(b, off, len);
85 int l = this.in
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthInputStream.java12 * "License"); you may not use this file except in compliance
17 * Unless required by applicable law or agreed to in writing,
94 private SessionInputBuffer in = null; field in class:ContentLengthInputStream
99 * @param in The session input buffer to wrap
103 public ContentLengthInputStream(final SessionInputBuffer in, long contentLength) { argument
105 if (in == null) {
111 this.in = in;
152 return this.in.read();
179 int count = this.in
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1StreamParser.java14 InputStream in)
16 this(in, StreamUtil.findLimit(in));
20 InputStream in,
23 this._in = in;
13 ASN1StreamParser( InputStream in) argument
19 ASN1StreamParser( InputStream in, int limit) argument
H A DIndefiniteLengthInputStream.java16 InputStream in,
20 super(in, limit);
22 _b1 = in.read();
23 _b2 = in.read();
15 IndefiniteLengthInputStream( InputStream in, int limit) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DStreamBlockCipher.java58 * @param in the byte to be processed.
62 byte in)
64 oneByte[0] = in;
72 * process a block of bytes from in putting the result into out.
74 * @param in the input byte array.
75 * @param inOff the offset into the in array where the data to be processed starts.
82 byte[] in,
91 throw new DataLengthException("output buffer too small in processBytes()");
96 cipher.processBlock(in, inOff + i, out, outOff + i);
101 * reset the underlying cipher. This leaves it in th
61 returnByte( byte in) argument
81 processBytes( byte[] in, int inOff, int len, byte[] out, int outOff) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DRSABlindedEngine.java79 * @param in the input array.
86 byte[] in,
95 BigInteger input = core.convertInput(in, inOff, inLen);
85 processBlock( byte[] in, int inOff, int inLen) argument
H A DRSACoreEngine.java86 byte[] in,
101 if (inOff != 0 || inLen != in.length)
105 System.arraycopy(in, inOff, block, 0, inLen);
109 block = in;
189 h = h.mod(p); // mod (in Java) returns the positive residual
85 convertInput( byte[] in, int inOff, int inLen) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DCTSBlockCipher.java78 * @param in the input byte.
82 * @exception DataLengthException if there isn't enough space in out.
86 byte in,
101 buf[bufOff++] = in;
109 * @param in the input byte array.
115 * @exception DataLengthException if there isn't enough space in out.
119 byte[] in,
147 System.arraycopy(in, inOff, buf, bufOff, gapLen);
159 System.arraycopy(in, inOff, buf, bufOff, blockSize);
168 System.arraycopy(in, inOf
85 processByte( byte in, byte[] out, int outOff) argument
118 processBytes( byte[] in, int inOff, int len, byte[] out, int outOff) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DPaddedBufferedBlockCipher.java12 * A wrapper class that allows block ciphers to be used to process data in
15 * or on a doFinal (unless the current block in the buffer is a pad block).
16 * The default padding mechanism used is the one outlined in PKCS5/PKCS7.
137 * @param in the input byte.
141 * @exception DataLengthException if there isn't enough space in out.
145 byte in,
158 buf[bufOff++] = in;
166 * @param in the input byte array.
172 * @exception DataLengthException if there isn't enough space in out.
176 byte[] in,
144 processByte( byte in, byte[] out, int outOff) argument
175 processBytes( byte[] in, int inOff, int len, byte[] out, int outOff) argument
[all...]
/external/chromium_org/base/json/
H A Dstring_escape_unittest.cc3 // found in the LICENSE file.
47 std::string in = cases[0].to_escape; local
49 EscapeJSONString(in, false, &out);
54 EscapeJSONString(in, true, &out_quoted);
59 // now try with a NULL in the string
62 in = null_prepend + in;
66 EscapeJSONString(in, false, &out);
85 string16 in = WideToUTF16(cases[i].to_escape); local
88 EscapeJSONString(in, fals
97 string16 in = WideToUTF16(cases[0].to_escape); local
166 std::string in = std::string(cases[i].to_escape); local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dcbc.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/)"
59 void CRYPTO_cbc128_encrypt(const uint8_t *in, uint8_t *out, size_t len, argument
65 assert(in && out && key && ivec);
68 ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
71 out[n] = in[
112 CRYPTO_cbc128_decrypt(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], block128_f block) argument
[all...]
H A Dctr.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/)"
76 * contained in *num, and the encrypted counter is kept in ecount_buf. Both
80 * This algorithm assumes that the counter is in the x lower bits of the IV
84 void CRYPTO_ctr128_encrypt(const uint8_t *in, uint8_ argument
156 CRYPTO_ctr128_encrypt_ctr32(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], uint8_t ecount_buf[16], unsigned int *num, ctr128_f func) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dby_file.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
128 BIO *in=NULL; local
133 in
194 BIO *in=NULL; local
261 BIO *in; local
[all...]
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dstreams.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
38 /* Reads len bytes into buf, using the in callback. */
39 static BROTLI_INLINE int BrotliRead(BrotliInput in, uint8_t* buf, size_t len) { argument
40 return in.cb_(in.data_, buf, len);
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DEmbed.c14 /* 754 requires that FP exceptions run in "no stop" mode by default,
69 unsigned char *in; local
95 /* Overallocate; as multi-byte characters are in the argument, the
100 in = (unsigned char*)arg;
104 size_t converted = mbrtowc(out, (char*)in, argsize, &mbs);
111 unless there is a bug in the C library, or I
118 in the initial shift state. */
119 *out++ = 0xdc00 + *in++;
129 *out++ = 0xdc00 + *in++;
133 in
[all...]
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
H A DBrailleKeyBinding.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
24 * command as declared in {@link BrailleInputEvent}.
75 public BrailleKeyBinding createFromParcel(Parcel in) {
76 return new BrailleKeyBinding(in);
96 private BrailleKeyBinding(Parcel in) { argument
97 mCommand = in.readInt();
98 mKeyNames = in.createStringArray();
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dlogging.cc3 // found in the LICENSE file. See the AUTHORS file for names of contributors.
48 bool ConsumeChar(Slice* in, char c) { argument
49 if (!in->empty() && (*in)[0] == c) {
50 in->remove_prefix(1);
57 bool ConsumeDecimalNumber(Slice* in, uint64_t* val) { argument
60 while (!in->empty()) {
61 char c = (*in)[0];
72 in->remove_prefix(1);

Completed in 664 milliseconds

1234567891011>>