Searched refs:output (Results 1 - 25 of 3704) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Dldfiltbank.cpp102 static void multE2_DinvF_fdk(INT_PCM *output, FIXP_DBL* x, const FIXP_WTB* fb, FIXP_DBL* z, const int N, const int stride) argument
122 output[(N*3/4-1-i)*stride] = (INT_PCM)SATURATE_RIGHT_SHIFT(tmp, -WTS1-1 + scale, SAMPLE_BITS);
125 output[(N*3/4-1-i)*stride] = (INT_PCM)SATURATE_LEFT_SHIFT(tmp, WTS1+1 - scale, SAMPLE_BITS);
146 output[(i-N/4)*stride] = (INT_PCM)SATURATE_RIGHT_SHIFT(tmp0, -WTS0-1 + scale, SAMPLE_BITS);
147 output[(N*3/4-1-i)*stride] = (INT_PCM)SATURATE_RIGHT_SHIFT(tmp1, -WTS1-1 + scale, SAMPLE_BITS);
150 output[(i-N/4)*stride] = (INT_PCM)SATURATE_LEFT_SHIFT(tmp0, WTS0+1 - scale, SAMPLE_BITS);
151 output[(N*3/4-1-i)*stride] = (INT_PCM)SATURATE_LEFT_SHIFT(tmp1, WTS1+1 - scale, SAMPLE_BITS);
164 output[(N*3/4 + i)*stride] = (INT_PCM)SATURATE_RIGHT_SHIFT(tmp0, -WTS0-1 + scale, SAMPLE_BITS);
167 output[(N*3/4 + i)*stride] = (INT_PCM)SATURATE_LEFT_SHIFT(tmp0, WTS0+1 - scale, SAMPLE_BITS);
172 int InvMdctTransformLowDelay_fdk (FIXP_DBL *mdctData, const int mdctData_e, INT_PCM *output, FIXP_DB argument
[all...]
/external/aac/libFDK/include/
H A Dmdct.h167 * \brief add/multiply 2/N transform gain and MPEG4 part 3 defined output gain (see definition
180 * \brief drain buffered output samples into given buffer. Changes the MDCT state.
206 * \param noOutSamples desired number of output samples.
214 * \param output pointer to where the output time domain signal will be stored into.
215 * \param stride the stride factor for accessing time domain samples in output.
219 * \param noOutSamples desired number of output samples.
225 * \param gain factor to apply to output samples (if != 0).
226 * \return number of output samples returned.
230 FIXP_DBL *output,
[all...]
/external/aac/libFDK/src/
H A Dmdct.cpp154 FIXP_DBL *output,
166 FDKmemcpy(output, hMdct->overlap.time, buffered_samples*sizeof(FIXP_DBL));
250 FIXP_DBL *output,
264 FIXP_DBL *pOut0 = output, *pOut1;
283 /* Purge buffered output. */
317 /* Divert output first half to overlap buffer if we already got enough output samples. */
321 /* Account output samples */
325 /* NR output samples 0 .. NR. -overlap[TL/2..TL/2-NR] */
333 /* Divert output secon
152 imdct_drain( H_MDCT hMdct, FIXP_DBL *output, INT nrSamplesRoom ) argument
248 imdct_block( H_MDCT hMdct, FIXP_DBL *output, FIXP_DBL *spectrum, const SHORT scalefactor[], const INT nSpec, const INT noOutSamples, const INT tl, const FIXP_WTP *wls, INT fl, const FIXP_WTP *wrs, const INT fr, FIXP_DBL gain ) argument
[all...]
/external/aac/libSBRenc/src/
H A Dresampler.cpp359 INT_PCM output; local
413 /* Feedback output to next section. */
453 /* Feedback output to next section. */
464 /* Apply final gain/scaling to output */
466 output = (INT_PCM) SATURATE_RIGHT_SHIFT(y+(FIXP_DBL)(1<<(DFRACT_BITS-SAMPLE_BITS-BIQUAD_SCALE-1)), DFRACT_BITS-SAMPLE_BITS-BIQUAD_SCALE, SAMPLE_BITS);
467 //output = (INT_PCM) SATURATE_RIGHT_SHIFT(y, DFRACT_BITS-SAMPLE_BITS-BIQUAD_SCALE, SAMPLE_BITS);
469 output = SATURATE_LEFT_SHIFT(y, BIQUAD_SCALE, SAMPLE_BITS);
473 return output;
481 Returns number of output samples in numOutSamples
490 INT_PCM *outSamples, /*!< pointer to output sample
[all...]
/external/android-clat/
H A Ddump.c227 char output[PACKETLEN*3+2]; local
230 output[0] = '\0';
232 snprintf(output + i*3, 4, " %02x", data[i]);
234 output[len*3+3] = '\0';
236 logmsg(ANDROID_LOG_WARN,"info %s len %d data%s", info, len, output);
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
H A DgUnit.g156 | '->' output {if ( !$testsuite::isLexicalRule ) $out = new OutputTest($output.token);}
159 output returns [Token token]
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
H A DANTLRv3.g33 output=AST;
H A DStGUnit.g82 | '->' output {$out = adapter.createStdOutput($output.text);}
92 output
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitTestResult.java33 private String output; // stdout field in class:gUnitTestResult
38 public gUnitTestResult(boolean success, String output) { argument
40 this.output = output;
43 public gUnitTestResult(boolean success, String output, boolean isLexerTest) { argument
44 this(success, output);
48 public gUnitTestResult(boolean success, String output, String returned) { argument
49 this(success, output);
58 return output;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DTestCaseEditController.java236 ITestCaseOutput output = this.currentTestCase.getOutput();
238 if(output instanceof TestCaseOutputAST) {
240 this.editOutputAST.setText(output.getScript());
244 } else if(output instanceof TestCaseOutputResult) {
246 this.editOutputResult.setValue(output.getScript());
250 } else if(output instanceof TestCaseOutputStdOut) {
252 this.editOutputStd.setText(output.getScript());
256 } else if(output instanceof TestCaseOutputReturn) {
258 this.editOutputReturn.setText(output.getScript());
296 ITestCaseOutput output ;
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCase.java33 private ITestCaseOutput output; field in class:TestCase
49 return this.output;
52 public TestCase(ITestCaseInput input, ITestCaseOutput output) { argument
54 this.output = output;
59 return String.format("[%s]->[%s]", input.getScript(), output.getScript());
67 this.output = out;
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammar.g338 output=AST;
H A DProfileGrammar.g338 output=AST;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DFastSimpleExpression.g339 output=AST;
H A DSimpleExpression.g338 output=AST;
H A DTestDotTreeGenerator.cs56 string output = gen.ToDot( tree, adaptor );
82 Assert.AreEqual( expected, output );
H A DTestExpressionFeatures.g338 output=AST;
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas407 /// rule text attribute or output=template and rewrite=true options.
1072 /// a different tree and have it stitched into the output tree probably.
H A DAntlr.Runtime.pas1179 /// <summary>Has a value potentially if output=AST; </summary>
1183 /// Has a value potentially if output=template;
1195 /// available depending on output option such as template and tree.
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A Drhino-python.prog33 var output = [];
35 output.push(msg);
71 var expected = loadFile("rhino-python.output");
73 var actual = output.join("\n")+"\n";
H A Dt012lexerXML.g9 this.output = function(line) {
21 {this.output("ROOTELEMENT: "+$rootElementName.text)}
25 {this.output("SYSTEM: "+$sys1.text)}
28 {this.output("PUBLIC: "+$pub.text)}
29 {this.output("SYSTEM: "+$sys2.text)}
34 {this.output("INTERNAL DTD: "+$dtd.text)}
43 {this.output("PI: "+$target.text)}
49 {this.output("XML declaration")}
58 {this.output("PCDATA: \""+$t.text+"\"")}
60 {this.output("CDAT
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py860 self.output = None
885 self.output = self.connection.makefile('w', 0)
895 self.output.write("%s\n" % msg)
896 self.output.flush()
916 self.output.close()
/external/antlr/antlr-3.4/runtime/Python/
H A Dhudson-build.sh49 python setup.py unittest --xml-output=testout/
50 python setup.py functest --xml-output=testout/ --antlr-jar="$JAR"
58 pylint --rcfile=pylintrc --output-format=parseable --include-ids=yes antlr3 | tee pylint-report.txt
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt012lexerXML.py39 output = unicode(lexer.outbuf.getvalue(), 'utf-8')
41 outputPath = os.path.splitext(__file__)[0] + '.output'
44 success = (output == testOutput)
47 r = d.compare(output.splitlines(1), testOutput.splitlines(1))

Completed in 1151 milliseconds

1234567891011>>