Searched defs:in (Results 251 - 275 of 1566) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
H A Du_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
28 static void translate_memcpy_ushort( const void *in, argument
32 memcpy(out, in, nr*sizeof(short));
35 static void translate_memcpy_uint( const void *in, argument
39 memcpy(out, in, nr*sizeof(int));
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_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_Radix4_fs( const OMX_F32 *in, OMX_F32 *out, OMX_INT n) argument
/external/chromium_org/third_party/opus/src/silk/
H A Dresampler_private_down_FIR.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
82 /* Scale down, saturate and store in output array */
105 /* Scale down, saturate and store in output array */
134 /* Scale down, saturate and store in output array */
148 const opus_int16 in[], /* I Input signal */
171 /* Second-order AR filter (output in Q8) */
172 silk_resampler_private_AR2( S->sIIR, &buf[ S->FIR_Order ], in, S->Coefs, nSamplesIn );
180 in
145 silk_resampler_private_down_FIR( void *SS, opus_int16 out[], const opus_int16 in[], opus_int32 inLen ) argument
[all...]
H A Dshell_coder.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
38 const opus_int *in, /* I input vector [2 * len] */
44 out[ k ] = in[ 2 * k ] + in[ 2 * k + 1 ];
36 combine_pulses( opus_int *out, const opus_int *in, const opus_int len ) argument
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Dcompare_to_expectations_test.py7 found in the LICENSE file.
11 TODO(epoger): Create a command to update the expected results (in
13 1. examine the results in self.output_dir_actual and make sure they are ok
28 import gm_json # must import results first, so that gm_json will be in sys.path namespace
/external/chromium_org/third_party/skia/tests/
H A DColorFilterTest.cpp5 * found in the LICENSE file.
48 // allow for no filter if we're in Dst mode (its a no op)
97 SkPMColor in, out; local
102 in = SkPackARGB32(i, i, i, i);
103 lf->filterSpan(&in, 1, &out);
112 in = SkPackARGB32(i, 0, 0, 0);
113 lf->filterSpan(&in, 1, &out);
119 in = SkPackARGB32(i, i, i / 2, i / 3);
120 lf->filterSpan(&in, 1, &out);
121 REPORTER_ASSERT(reporter, out != in);
[all...]
/external/chromium_org/third_party/speex/libspeex/
H A Dvq.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
51 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries) argument
54 while (i<entries-1 && in>boundary[0])
62 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries) argument
65 while (i<entries-1 && in>boundary[0])
75 /*Finds the indices of the n-best entries in a codebook*/
76 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
84 dist = MAC16_16(dist,in[
110 vq_nbest_sign(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
[all...]
/external/chromium_org/third_party/webrtc/common_audio/
H A Dfir_filter.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.
28 virtual void Filter(const float* in, size_t length, float* out) OVERRIDE;
91 void FIRFilterC::Filter(const float* in, size_t length, float* out) { argument
94 // Convolves the input signal |in| with the filter kernel |coefficients_|
103 out[i] += in[j + i - state_length_] * coefficients_[j];
110 state_.get(), &in[lengt
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilterbanks_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.
78 int16_t in[kSamples]; local
98 in[i] = WEBRTC_SPL_WORD32_MAX / (i + 1);
101 WebRtcIsacfix_HighpassFilterFixDec32(in, kSamples,
105 EXPECT_EQ(out[i], in[i]);
H A Dpitch_estimator_c.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.
22 void WebRtcIsacfix_PCorr2Q32(const int16_t* in, int32_t* logcorQ8) { argument
29 oneQ8 = WEBRTC_SPL_LSHIFT_W32((int32_t)1, 8); // 1.00 in Q8
31 x = in + PITCH_MAX_LAG / 2 + 2;
32 scaling = WebRtcSpl_GetScalingSquare((int16_t*)in,
37 x = in
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dscanner.h8 FILE *in; member in struct:Scanner
/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h10 void cause_div_by_zero_in_header(int in) { argument
12 h = in/h;
16 void do_something (int in) { argument
17 in++;
18 in++;
21 void cause_div_by_zero_in_header2(int in) { argument
23 h2 = in/h2;
29 void cause_div_by_zero_in_header3(int in) { argument
31 h3 = in/h3;
37 void cause_div_by_zero_in_header4(int in) { argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dconstructors.cpp99 void test(C &in) { argument
100 C tmp = in;
/external/e2fsprogs/lib/e2p/
H A Duuid.c36 static void e2p_unpack_uuid(void *in, struct uuid *uu) argument
38 __u8 *ptr = in;
/external/elfutils/0.153/libebl/
H A Deblobjnote.c10 Red Hat elfutils is distributed in the hope that it will be useful, but
26 those well defined interfaces identified in the file named EXCEPTION
27 found in the source code files (the "Approved Interfaces"). The files
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
47 included package. Should you wish to participate in the Open Invention
182 Elf_Data in = local
198 if (elf32_xlatetom (&out, &in, ebl->data) != NULL)
/external/guava/guava/src/com/google/common/io/
H A DCountingInputStream.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
40 * @param in the input stream to be wrapped
42 public CountingInputStream(InputStream in) { argument
43 super(in);
52 int result = in.read();
60 int result = in.read(b, off, len);
68 long result = in.skip(n);
74 in.mark(readlimit);
80 if (!in
[all...]
H A DLimitInputStream.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
41 * @param in the input stream to be wrapped
44 public LimitInputStream(InputStream in, long limit) { argument
45 super(in);
46 Preconditions.checkNotNull(in);
52 return (int) Math.min(in.available(), left);
56 in.mark(readlimit);
66 int result = in.read();
79 int result = in
[all...]
H A DMultiInputStream.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 private InputStream in; field in class:MultiInputStream
48 if (in != null) {
50 in.close();
52 in = null;
63 in = it.next().getInput();
68 if (in == null) {
71 return in.available();
79 if (in
[all...]
/external/javassist/sample/evolve/
H A DDemoServer.java20 * in VersionManager so that WebPage.class is loaded into the JVM
47 public void doReply(InputStream in, OutputStream out, String cmd) argument
72 super.doReply(in, out, cmd);
/external/jmdns/src/javax/jmdns/impl/tasks/
H A DDNSTask.java16 * This is the root class for all task scheduled by the timer in JmDNS.
103 * @param in
110 public DNSOutgoing addAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) throws IOException { argument
113 newOut.addAnswer(in, rec);
125 newOut.addAnswer(in, rec);
196 * @param in
203 public DNSOutgoing addAdditionalAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) throws IOException { argument
206 newOut.addAdditionalAnswer(in, rec);
218 newOut.addAdditionalAnswer(in, rec);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DHtmlStripFunction.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
35 // The state the strip function can be, normal, in an amp escaped entity or
95 public void filter(String in, Appendable out) throws IOException { argument
96 char[] inChars = in.toCharArray();
123 // When in a tag, all input is ignored until the end of the tag.
137 // If this is not the last character in the input, append to the
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DCompositeResourceLoader.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
82 * CompositeResourceLoader is in use, then there won't be another ResourceLoader that we are
114 public ReaderTracer(Reader in, ResourceLoader originalLoader) { argument
115 super(in);
120 originalLoader.close(in);
/external/libopus/silk/
H A Dresampler_private_down_FIR.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
82 /* Scale down, saturate and store in output array */
105 /* Scale down, saturate and store in output array */
134 /* Scale down, saturate and store in output array */
148 const opus_int16 in[], /* I Input signal */
171 /* Second-order AR filter (output in Q8) */
172 silk_resampler_private_AR2( S->sIIR, &buf[ S->FIR_Order ], in, S->Coefs, nSamplesIn );
180 in
145 silk_resampler_private_down_FIR( void *SS, opus_int16 out[], const opus_int16 in[], opus_int32 inLen ) argument
[all...]
H A Dshell_coder.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
38 const opus_int *in, /* I input vector [2 * len] */
44 out[ k ] = in[ 2 * k ] + in[ 2 * k + 1 ];
36 combine_pulses( opus_int *out, const opus_int *in, const opus_int len ) argument
/external/libpcap/tests/
H A Dfindalldevstest.c8 #include <netinet/in.h>
15 static char *iptos(bpf_u_int32 in);
27 fprintf(stderr,"Error in pcap_findalldevs: %s\n",errbuf);
37 fprintf(stderr,"Error in pcap_lookupdev: %s\n",errbuf);
46 fprintf(stderr,"Error in pcap_lookupnet: %s\n",errbuf);
121 static char *iptos(bpf_u_int32 in) argument
127 p = (u_char *)&in;

Completed in 719 milliseconds

<<11121314151617181920>>