Searched defs:in (Results 376 - 400 of 1566) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/opus/src/celt/tests/
H A Dtest_unit_mdct.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_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse) argument
69 ansr += in[k] * re;
84 void check_inv(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse) argument
99 ansr += in[k] * re;
120 kiss_fft_scalar * in = (kiss_fft_scalar*)malloc(buflen); local
128 in[k] = (rand() % 32768) - 16384;
135 in[
[all...]
/external/chromium_org/third_party/opus/src/doc/
H A Dtrivial_example.c3 Redistribution and use in source and binary forms, with or without
10 - Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
54 opus_int16 in[FRAME_SIZE*CHANNELS]; local
80 in worse quality, but better. */
123 in[i]=pcm_bytes[2*i+1]<<8|pcm_bytes[2*i];
126 nbBytes = opus_encode(encoder, in, FRAME_SIZE, cbits, MAX_PACKET_SIZE);
/external/chromium_org/third_party/opus/src/silk/
H A DInlines.h3 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
41 static OPUS_INLINE opus_int32 silk_CLZ64( opus_int64 in )
45 in_upper = (opus_int32)silk_RSHIFT64(in, 32);
47 /* Search in the lower 32 bits */
48 return 32 + silk_CLZ32( (opus_int32) in );
50 /* Search in the upper 32 bits */
57 opus_int32 in, /* I input */
62 opus_int32 lzeros = silk_CLZ32(in);
56 silk_CLZ_FRAC( opus_int32 in, opus_int32 *lz, opus_int32 *frac_Q7 ) argument
[all...]
/external/chromium_org/third_party/skia/src/images/
H A DSkImageEncoder_argb.cpp5 * found in the LICENSE file.
22 typedef void (*ScanlineImporter)(const uint8_t* in, uint8_t* argb, int width,
25 static void ARGB_8888_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { argument
26 const uint32_t* SK_RESTRICT src = (const uint32_t*)in;
37 static void RGB_565_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { argument
38 const uint16_t* SK_RESTRICT src = (const uint16_t*)in;
49 static void ARGB_4444_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { argument
50 const SkPMColor16* SK_RESTRICT src = (const SkPMColor16*)in;
61 static void Index8_To_ARGB(const uint8_t* in, uint8_t* argb, int width, argument
63 const uint8_t* SK_RESTRICT src = (const uint8_t*)in;
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dmd5.cc4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
59 t = (t >> 3) & 0x3f; // Bytes already in shsInfo->data.
63 uint8* p = reinterpret_cast<uint8*>(ctx->in) + t;
71 ByteReverse(ctx->in, 16);
72 MD5Transform(ctx->buf, ctx->in);
77 // Process data in 64-byte chunks.
79 memcpy(ctx->in, buf, 64);
80 ByteReverse(ctx->in, 16);
81 MD5Transform(ctx->buf, ctx->in);
143 MD5Transform(uint32 buf[4], const uint32 in[16]) argument
[all...]
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dilbc_specific_functions.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.
24 void WebRtcSpl_ReverseOrderMultArrayElements(int16_t *out, const int16_t *in, argument
31 const int16_t *inptr = in;
40 void WebRtcSpl_ElementwiseVectorMult(int16_t *out, const int16_t *in, argument
46 const int16_t *inptr = in;
69 void WebRtcSpl_AddAffineVectorToVector(int16_t *out, int16_t *in, argument
86 WebRtcSpl_AffineTransformVector(int16_t *out, int16_t *in, int16_t gain, int32_t add_constant, int16_t right_shifts, int vector_length) argument
[all...]
H A Dresample_by_2.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
42 // The reason to introduce this function is that, in case we can't use smlawb
43 // instruction (in MUL_ACCUM_1) due to input value range, we can still use
70 void WebRtcSpl_DownsampleBy2(const int16_t* in, int len, argument
86 in32 = (int32_t)(*in
128 WebRtcSpl_UpsampleBy2(const int16_t* in, int len, int16_t* out, int32_t* filtState) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters.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 // Autocorrelation function in fixed point.
16 // NOTE! Different from SPLIB-version in how it scales the signal.
93 void WebRtcIsacfix_DecimateAllpass32(const int16_t *in, argument
102 memcpy(data_vec+1, in, WEBRTC_SPL_MUL_16_16(sizeof(int16_t), (N-1)));
106 state_in[WEBRTC_SPL_MUL_16_16(2, ALLPASSSECTIONS)] = WEBRTC_SPL_LSHIFT_W32((uint32_t)in[
[all...]
H A Dfilters_mips.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.
13 // MIPS optimized implementation of the Autocorrelation function in fixed point.
14 // NOTE! Different from SPLIB-version in how it scales the signal.
22 int16_t* in = (int16_t*)x; local
37 // Loop is unrolled 8 times, set accumulator to zero in branch delay slot.
43 "ulw %[r0], 0(%[in]) \
[all...]
H A Dpitch_estimator_mips.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.
17 void WebRtcIsacfix_PCorr2Q32(const int16_t* in, int32_t* logcorQ8) { argument
24 oneQ8 = WEBRTC_SPL_LSHIFT_W32((int32_t)1, 8); // 1.00 in Q8
25 x = in + PITCH_MAX_LAG / 2 + 2;
26 scaling = WebRtcSpl_GetScalingSquare((int16_t*)in,
31 x = in
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dgenmodule.c3 * Generate module.c from module.in and Makefile.am or Makefile.
7 * 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
48 FILE *in, *out; local
63 fprintf(stderr, "Usage: %s <module.in> <Makefile[.am]> <outfile>\n", argv[0]);
85 in = fopen(inc->filename, "rt");
86 if (!in) {
93 while (fgets(str, MAXLINE, in)) {
168 fclose(in);
[all...]
/external/chromium_org/third_party/zlib/
H A Dinffast.c3 * For conditions of distribution and use, see copyright notice in zlib.h
38 inflate execution time is spent in this routine.
52 BAD -- error in block data
72 unsigned char FAR *in; /* local strm->next_in */ local
73 unsigned char FAR *last; /* while in < last, enough input available */
81 unsigned whave; /* valid bytes in the window */
99 in = strm->next_in - OFF;
100 last = in + (strm->avail_in - 5);
122 hold += (unsigned long)(PUP(in)) << bits;
124 hold += (unsigned long)(PUP(in)) << bit
[all...]
/external/clang/test/Analysis/
H A Dmalloc-interprocedural.c77 static char *reshape(char *in) { argument
H A Doutofbound.c90 int overflow_binary_search(double in) { argument
92 if (in < 1e-8 || in > 1e23) {
99 if (in < ins[eee]) {
104 if (in < ins[eee]) {
109 if (in < ins[eee]) {
114 if (in < ins[eee]) {
119 if (in < ins[eee]) { // expected-warning {{Access out-of-bound array element (buffer overflow)}}
/external/clang/test/SemaCXX/
H A Derr_init_conversion_failed.cpp42 void test14(const float2 in, const float2 out) { argument
43 const float4 V = (float4){ in, out };
/external/emma/core/java12/com/vladium/emma/data/
H A DCoverageData.java163 static CoverageData readExternal (final DataInput in) argument
166 final int size = in.readInt ();
171 final String classVMName = in.readUTF ();
172 final long stamp = in.readLong ();
174 final int length = in.readInt ();
178 coverage [c] = DataFactory.readBooleanArray (in);
/external/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 */
353 /* adjust contours count in newest outline */
376 FT_Outline* in = &source->base.outline; local
379 FT_ARRAY_COPY( out->points, in->points,
381 FT_ARRAY_COPY( out->tags, in->tags,
383 FT_ARRAY_COPY( out->contours, in->contours,
/external/guava/guava/src/com/google/common/io/
H A DLittleEndianDataInputStream.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
50 * @param in the stream to delegate to
52 public LittleEndianDataInputStream(InputStream in) { argument
53 super(Preconditions.checkNotNull(in));
76 return (int) in.skip(n);
81 int b1 = in.read();
95 * unsigned 16-bit integer in little-endian byte order
111 * {@code int} in little-endian byte order
129 * {@code long} in littl
[all...]
/external/icu/icu4c/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/jarjar/src/main/com/tonicsystems/jarjar/
H A DMain.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
36 private static String readIntoString(InputStream in) throws IOException { argument
38 BufferedReader r = new BufferedReader(new InputStreamReader(in, "UTF-8"));
/external/javassist/src/main/javassist/bytecode/
H A DExceptionsAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
31 ExceptionsAttribute(ConstPool cp, int n, DataInputStream in) argument
34 super(cp, n, in);
H A DLineNumberAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
31 LineNumberAttribute(ConstPool cp, int n, DataInputStream in) argument
34 super(cp, n, in);
43 * This represents the number of entries in the table.
52 * for a new line in the original source file begins.
62 * This represents the corresponding line number in the original
170 * Adjusts start_pc if bytecode is inserted in a method body.
H A DParameterAnnotationsAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
35 * in <code>MethodInfo</code>.
90 ParameterAnnotationsAttribute(ConstPool cp, int n, DataInputStream in) argument
93 super(cp, n, in);
/external/javassist/src/main/javassist/tools/reflect/
H A DMetaobject.java6 * 1.1 (the "License"); you may not use this file except in compliance with
80 private void readObject(ObjectInputStream in) argument
83 baseobject = (Metalevel)in.readObject();
199 * is invoked by a constructor in the super class. For example,
217 * the invocation of initialize() in B is intercepted only once.
218 * The first invocation by the constructor in A is not intercepted.
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DVariableTranslator.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
36 * Translates a variable name (e.g. search.results.3.title) into the Java code for use as a key in
55 * @param csVariable Variable node in template's AST.
99 * Inserts dots between each component in the path.
103 private List<JavaExpression> joinComponentsWithDots(List<JavaExpression> in) { argument
104 List<JavaExpression> out = new ArrayList<JavaExpression>(in.size() * 2);
105 for (JavaExpression component : in) {
121 private List<JavaExpression> combineAdjacentStrings(List<JavaExpression> in) { argument
122 assert !in
[all...]

Completed in 2165 milliseconds

<<11121314151617181920>>