Searched defs:output (Results 226 - 250 of 1376) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daccelerate.cc20 AudioMultiVector* output,
27 // from input to output.
28 output->PushBackInterleaved(input, input_length);
31 return TimeStretch::Process(input, input_length, output,
46 AudioMultiVector* output) const {
57 output->PushBackInterleaved(input, fs_mult_120 * num_channels_);
62 // Cross-fade |temp_vector| onto the end of |output|.
63 output->CrossFade(temp_vector, peak_index);
65 output->PushBackInterleaved(
76 output
17 Process( const int16_t* input, size_t input_length, AudioMultiVector* output, int16_t* length_change_samples) argument
[all...]
H A Daudio_multi_vector_unittest.cc194 int16_t* output = new int16_t[interleaved_length_]; local
198 vec.ReadInterleaved(read_samples, output));
200 memcmp(array_interleaved_, output, read_samples * sizeof(int16_t)));
204 vec.ReadInterleaved(array_length() + 1, output));
206 memcmp(array_interleaved_, output, read_samples * sizeof(int16_t)));
208 delete [] output;
215 int16_t* output = NULL; local
218 EXPECT_EQ(0u, vec.ReadInterleaved(read_samples, output));
H A Dcomfort_noise.cc53 AudioMultiVector* output) {
58 if (output->Channels() != 1) {
69 output->AssertSize(number_of_samples);
76 // The expression &(*output)[0][0] is a pointer to the first element in
78 if (WebRtcCng_Generate(cng_inst, &(*output)[0][0],
82 output->Zeros(requested_length);
119 // The expression (*output)[0][i] is the i-th element in the first
123 ((*output)[0][i] * unmuting_window) + 16384) >> 15;
127 // Remove |overlap_length_| samples from the front of |output| since they
129 output
52 Generate(size_t requested_length, AudioMultiVector* output) argument
[all...]
H A Ddtmf_tone_generator.cc151 // Generate num_samples of DTMF signal and write to |output|.
153 AudioMultiVector* output) {
158 if (num_samples < 0 || !output) {
162 output->AssertSize(num_samples);
181 (*output)[0][i] =
185 for (size_t channel = 1; channel < output->Channels(); ++channel) {
186 output->CopyChannel(0, channel);
152 Generate(int num_samples, AudioMultiVector* output) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dwork_unit.py119 def output( self, func_cb = None ): member in class:WorkUnit
/external/chromium_org/ui/display/chromeos/x11/
H A Ddisplay_snapshot_x11.cc24 RROutput output,
38 output_(output),
46 "[type=%d, output=%ld, crtc=%ld, mode=%ld, dim=%dx%d]",
12 DisplaySnapshotX11( int64_t display_id, bool has_proper_display_id, const gfx::Point& origin, const gfx::Size& physical_size, DisplayConnectionType type, bool is_aspect_preserving_scaling, bool has_overscan, std::string display_name, const std::vector<const DisplayMode*>& modes, const DisplayMode* current_mode, const DisplayMode* native_mode, RROutput output, RRCrtc crtc, int index) argument
/external/chromium_org/url/
H A Durl_canon_filesystemurl.cc25 CanonOutput* output,
38 new_parsed->scheme.begin = output->length();
39 output->Append("filesystem:", 11);
47 new_inner_parsed.scheme.begin = output->length();
48 output->Append("file://", 7);
50 success &= CanonicalizePath(spec, inner_parsed->path, output,
55 output, &new_inner_parsed);
57 // TODO(ericu): The URL is wrong, but should we try to output more of what
65 success &= CanonicalizePath(source.path, parsed.path, output,
70 output,
21 DoCanonicalizeFileSystemURL(const CHAR* spec, const URLComponentSource<CHAR>& source, const Parsed& parsed, CharsetConverter* charset_converter, CanonOutput* output, Parsed* new_parsed) argument
80 CanonicalizeFileSystemURL(const char* spec, int spec_len, const Parsed& parsed, CharsetConverter* charset_converter, CanonOutput* output, Parsed* new_parsed) argument
91 CanonicalizeFileSystemURL(const base::char16* spec, int spec_len, const Parsed& parsed, CharsetConverter* charset_converter, CanonOutput* output, Parsed* new_parsed) argument
102 ReplaceFileSystemURL(const char* base, const Parsed& base_parsed, const Replacements<char>& replacements, CharsetConverter* charset_converter, CanonOutput* output, Parsed* new_parsed) argument
115 ReplaceFileSystemURL(const char* base, const Parsed& base_parsed, const Replacements<base::char16>& replacements, CharsetConverter* charset_converter, CanonOutput* output, Parsed* new_parsed) argument
[all...]
H A Durl_canon_internal_file.h24 // letter and colon to the output, if one is found. If there is not a drive
30 CanonOutput* output) {
44 output->push_back(spec[after_slashes] - 'a' + 'A');
46 output->push_back(static_cast<char>(spec[after_slashes]));
49 output->push_back(':');
50 output->push_back('/');
58 CanonOutput* output) {
71 // Give it a fake output component to write into. DoCanonicalizeFile will
75 spec, sub_path, output, &fake_output_path);
82 CanonOutput* output,
29 FileDoDriveSpec(const CHAR* spec, int begin, int end, CanonOutput* output) argument
57 FileDoPath(const CHAR* spec, int begin, int end, CanonOutput* output) argument
80 DoCanonicalizeFileURL(const URLComponentSource<CHAR>& source, const ParsedURL& parsed, CanonOutput* output, ParsedURL* new_parsed) argument
[all...]
H A Durl_canon_mailtourl.cc19 CanonOutput* output,
30 new_parsed->scheme.begin = output->length();
31 output->Append("mailto:", 7);
38 new_parsed->path.begin = output->length();
47 success &= AppendUTF8EscapedChar(source.path, &i, end, output);
49 output->push_back(static_cast<char>(uch));
52 new_parsed->path.len = output->length() - new_parsed->path.begin;
60 output, &new_parsed->query);
70 CanonOutput* output,
73 URLComponentSource<char>(spec), parsed, output, new_parse
17 DoCanonicalizeMailtoURL(const URLComponentSource<CHAR>& source, const Parsed& parsed, CanonOutput* output, Parsed* new_parsed) argument
67 CanonicalizeMailtoURL(const char* spec, int spec_len, const Parsed& parsed, CanonOutput* output, Parsed* new_parsed) argument
76 CanonicalizeMailtoURL(const base::char16* spec, int spec_len, const Parsed& parsed, CanonOutput* output, Parsed* new_parsed) argument
85 ReplaceMailtoURL(const char* base, const Parsed& base_parsed, const Replacements<char>& replacements, CanonOutput* output, Parsed* new_parsed) argument
97 ReplaceMailtoURL(const char* base, const Parsed& base_parsed, const Replacements<base::char16>& replacements, CanonOutput* output, Parsed* new_parsed) argument
[all...]
H A Durl_canon_query.cc54 // Appends the given string to the output, escaping characters that do not
60 CanonOutput* output) {
63 AppendEscapedChar(static_cast<unsigned char>(source[i]), output); local
65 output->push_back(static_cast<char>(source[i]));
74 CanonOutput* output) {
79 converter->ConvertFromUTF16(utf16.data(), utf16.length(), output);
88 CanonOutput* output) {
89 converter->ConvertFromUTF16(&spec[query.begin], query.len, output);
96 CanonOutput* output) {
99 AppendRaw8BitQueryString(&spec[query.begin], query.len, output);
59 AppendRaw8BitQueryString(const CHAR* source, int length, CanonOutput* output) argument
71 RunConverter(const char* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
85 RunConverter(const base::char16* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
93 DoConvertToQueryEncoding(const CHAR* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
118 DoCanonicalizeQuery(const CHAR* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
138 CanonicalizeQuery(const char* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
147 CanonicalizeQuery(const base::char16* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
156 ConvertUTF16ToQueryEncoding(const base::char16* input, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
[all...]
/external/chromium_org/v8/tools/testrunner/local/
H A Dcommands.py37 from ..objects import output namespace
151 return output.Output(exit_code, timed_out, out, errors)
/external/deqp/framework/opengl/simplereference/
H A DsglrShaderProgram.cpp215 void ShaderProgram::shadePrimitives (rr::GeometryEmitter& output, int verticesIn, const rr::PrimitivePacket* packets, const int numPackets, int invocationID) const argument
217 DE_UNREF(output);
/external/deqp/modules/glshared/
H A DglsShaderConstExprTests.hpp60 float output; member in struct:deqp::gls::ShaderConstExpr::TestParams
/external/e2fsprogs/lib/ss/
H A Dlist_rqs.c34 FILE *output; local
52 output = fdopen(fd, "w");
55 fprintf (output, "Available %s requests:\n\n",
75 fputs(buffer, output);
82 fputs(buffer, output);
85 fclose(output);
/external/jsilver/src/com/google/clearsilver/jsilver/compatibility/
H A DClearsilverRenderer.java59 public void render(String templateName, Data data, Appendable output, argument
77 output.append(cs.render());
87 public void render(String templateName, Data data, Appendable output) throws IOException, argument
89 render(templateName, data, output, defaultResourceLoader);
94 Appendable output = new StringBuilder(8192);
95 render(templateName, data, output);
96 return output.toString();
100 public void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader) argument
107 public void render(Template template, Data data, Appendable output) throws IOException, argument
109 render(template, data, output, defaultResourceLoade
120 renderFromContent(String content, Data data, Appendable output) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DParser.java48 * @param output Data object that the read data structure will be dumped into.
56 void parse(Reader reader, Data output, ErrorHandler errorHandler, ResourceLoader resourceLoader, argument
/external/libpcap/tests/
H A Dfindalldevstest.c123 static char output[IPTOSBUFFERS][3*4+3+1]; local
129 sprintf(output[which], "%d.%d.%d.%d", p[0], p[1], p[2], p[3]);
130 return output[which];
/external/libvpx/libvpx/vp8/encoder/
H A Ddct.c14 void vp8_short_fdct4x4_c(short *input, short *output, int pitch) argument
19 short *op = output;
38 ip = output;
39 op = output;
58 void vp8_short_fdct8x4_c(short *input, short *output, int pitch) argument
60 vp8_short_fdct4x4_c(input, output, pitch);
61 vp8_short_fdct4x4_c(input + 4, output + 16, pitch);
64 void vp8_short_walsh4x4_c(short *input, short *output, int pitch) argument
70 short *op = output;
88 ip = output;
[all...]
/external/nanopb-c/examples/network_server/
H A Dclient.c43 pb_ostream_t output = pb_ostream_from_socket(fd); local
62 if (!pb_encode(&output, ListFilesRequest_fields, &request))
69 pb_write(&output, &zero, 1);
H A Dserver.c53 pb_ostream_t output = pb_ostream_from_socket(connfd); local
81 if (!pb_encode(&output, ListFilesResponse_fields, &response))
/external/opencv/cvaux/src/
H A Dextendededges.cpp65 CvSeq* output = 0; local
88 output = tail_seq = new_seq;
117 return output;
136 CvSeq* output = 0; local
192 output = tail = newseq;
212 output = tail = newseq;
217 return output;
/external/openssl/crypto/des/
H A Decb_enc.c108 void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, argument
114 unsigned char *out = &(*output)[0];
H A Dpcbc_enc.c61 void DES_pcbc_encrypt(const unsigned char *input, unsigned char *output, argument
71 out=output;
/external/openssl/crypto/rc4/
H A Drc4test.c100 static unsigned char output[7][30]={ variable
134 if (memcmp(obuf,output[i],data_len[i]+1) != 0)
137 printf("output:");
142 p= &(output[i][0]);
157 if ((memcmp(obuf,output[3],i) != 0) || (obuf[i] != 0))
160 printf("output:");
165 p= &(output[3][0]);
185 if (memcmp(obuf,output[3],data_len[3]+1) != 0)
188 printf("output:");
193 p= &(output[
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DEncoding.java156 * Writes the HTML equivalent of the given plain text to output.
164 static void encodeHtmlOnto(String plainText, Appendable output) argument
173 output.append(plainText, pos, i).append(repl);
186 output.append(plainText, pos, i);
187 appendNumericEntity(codepoint, output);
191 output.append(plainText, pos, i);
196 output.append(plainText, pos, i);
203 appendNumericEntity(ch, output);
208 output.append(plainText, pos, n);
212 static void appendNumericEntity(int codepoint, Appendable output) argument
[all...]

Completed in 5219 milliseconds

1234567891011>>