Searched defs:line (Results 1 - 25 of 1454) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Dconceal.cpp1319 int line, sfb, scaleFactorBandsTotal = 0; local
1323 line = 0;
1340 for ( ; line < pSfbOffset[sfb+1]; line++) {
1341 enAccu += fPow2Div2(*(spectrum + line)) >> sfbScale;
1355 for (; line < pSfbOffset[sfb+1] << 3; line++) {
1356 enAccu += (enAccu + (fPow2Div2(*(spectrum + line)) >> sfbScale)) >> 3;
1374 for ( ; line < pSfbOffset[sfb+1]; line
1419 int sfb, line = 0; local
[all...]
/external/aac/libAACenc/src/
H A Dgrp_data.cpp119 INT line; /* counts through lines */ local
138 for (line = sfbOffset[sfb+1]-1; line >= sfbOffset[sfb]; line--)
140 if ( mdctSpectrum[wnd*granuleLength_short+line] != FL2FXCONST_SPC(0.0) ) break; /* this band is not completely zero */
142 if (line >= sfbOffset[sfb]) break; /* this band was not completely zero */
258 for (line = width; line > 0; line--)
H A Dpsy_main.cpp456 INT line; /* counts through lines */ local
633 for(line=0; (line<psyData[ch]->lowpassLine) && (zeroSpec==TRUE); line++) {
634 if (psyData[ch]->mdctSpectrum[line+wOffset] != (FIXP_DBL)0) {
735 for(line=0; line<psyData[ch]->lowpassLine; line++) {
736 psyData[ch]->mdctSpectrum[line+wOffset] <<= finalShift;
859 hThisPsyConf[ch]->sfbOffset[psyData[ch]->sfbActive],/*hThisPsyConf[ch]->lowpassLine*/ /* filter stops before that line ! */
[all...]
H A Dqc_main.cpp1305 INT line; local
1307 for (line = sfbOffset[sfbOffs+sfb]; line < sfbOffset[sfbOffs+sfb+1]; line++)
1309 INT tmp = fixp_abs(quantSpectrum[line]);
H A Dquantize.cpp109 int line; local
115 for (line = 0; line < noOfLines; line++)
117 FIXP_DBL accu = fMultDiv2(mdctSpectrum[line],quantizer);
131 quaSpectrum[line] = (SHORT)(-((LONG)(k + accu) >> (DFRACT_BITS-1-16)));
144 quaSpectrum[line] = (SHORT)((LONG)(k + accu) >> (DFRACT_BITS-1-16));
147 quaSpectrum[line]=0;
169 INT line; local
174 for (line
[all...]
/external/aac/libSYS/src/
H A Dcmdl_parser.cpp87 Description: command line parser
142 FDKprintf("No command line arguments\n");
148 FDKprintf("Error allocating memory line %d, file %s\n", __LINE__, __FILE__);
161 FDKprintf("Error allocating memory line %d, file %s\n", __LINE__, __FILE__);
501 static char line[CMDL_MAX_STRLEN*CMDL_MAX_ARGC]; variable
535 /* Obtain a command line from config file */
536 while (FDKfgets(line, CMDL_MAX_STRLEN*CMDL_MAX_ARGC, config_fp) != NULL)
541 line_ptr = (char*)FDKstrchr(line, '\n');
545 line_ptr = line;
547 /* Scan the line an
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DAbstractTest.java66 public void setHeader(String rule, String lexicalRule, String treeRule, int numOfTest, int line) { argument
73 buf.append(lexicalRule + ", line"+line+")" + " - ");
75 else buf.append(rule + ", line"+line+")" + " - ");
H A DgUnitBaseTest.java64 public String execLexer(String testRuleName, int line, String testInput, boolean isFile) throws Exception { argument
90 input.setLine(line);
155 public Object execParser(String testRuleName, int line, String testInput, boolean isFile) throws Exception { argument
184 input.setLine(line);
H A DgUnitTestInput.java34 public int line; // line number in the script field in class:gUnitTestInput
36 public gUnitTestInput(String input, boolean isFile, int line) { argument
39 this.line = line;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DTestSuiteAdapter.java72 public static ITestCaseInput createStringInput(String line) { argument
73 if(line == null) throw new IllegalArgumentException("null");
75 return new TestCaseInputString(trimChars(line, 1));
/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/ActionScript/project/src/org/antlr/runtime/
H A DCharStreamState.as32 * line, etc...) so that we can rewind the state after scanning ahead.
40 /** What line number is the scanner at before processing buffer[p]? */
41 public var line:int; variable
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
H A DRecognitionException.as56 * knows its state (such as current input symbol and line info) that
59 * perhaps print an entire line of input not just a single token, for example.
84 /** Track the line at which the error occurred in case this is
86 * unexpected char doesn't carry the line info.
88 public var line:int; variable
93 * imaginary nodes w/o line/col info. We now search backwards looking
94 * for most recent token with line/col info, but notify getErrorHeader()
107 this.line = token.line;
115 this.line
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontoken.h125 /** The line number in the input stream where this token was derived from
127 ANTLR3_UINT32 line; member in struct:ANTLR3_COMMON_TOKEN_struct
129 /** The offset into the input stream that the line in which this
134 /** The character position in the line that this token was derived from
252 /** Pointer to a function that gets the 'line' number where this token resides
256 /** Pointer to a function that sets the 'line' number where this token reside
258 void (*setLine)(struct ANTLR3_COMMON_TOKEN_struct * token, ANTLR3_UINT32 line);
260 /** Pointer to a function that gets the offset in the line where this token exists
264 /** Pointer to a function that sets the offset in the line where this token exists
H A Dantlr3exception.h169 /** Track the line at which the error occurred in case this is
171 * unexpected char doesn't carry the line info.
173 ANTLR3_UINT32 line; member in struct:ANTLR3_EXCEPTION_struct
175 /** Character position in the line where the error occurred.
H A Dantlr3input.h98 /** The line number we are traversing in the input file. This gets incremented
101 ANTLR3_UINT32 line; member in struct:ANTLR3_INPUT_STREAM_struct
103 /** Pointer into the input buffer where the current line
108 /** The offset within the current line of the current character
172 /** Pointer to function to return the current line number in the input stream
176 /** Pointer to function to return the current line buffer in the input stream
182 * is no way at the moment to position the input stream at a particular line
187 /** Pointer to function to return the current offset in the current input stream line
191 /** Pointer to function to set the current line number in the input stream
193 void (*setLine) (struct ANTLR3_INPUT_STREAM_struct * input, ANTLR3_UINT32 line);
255 ANTLR3_UINT32 line; member in struct:ANTLR3_LEX_STATE_struct
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontoken.c46 static void setLine (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 line);
476 return token->line;
479 static void setLine (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 line) argument
481 token->line = line;
557 * return "[@"+getTokenIndex()+","+start+":"+stop+"='"+txt+"',<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+"]";
H A Dantlr3debughandlers.c71 static void location (pANTLR3_DEBUG_EVENT_LISTENER delboy, int line, int pos);
337 // Ack terminates in a line feed, so we just wait for
751 location (pANTLR3_DEBUG_EVENT_LISTENER delboy, int line, int pos) argument
755 sprintf(buffer, "location\t%d\t%d\n", line, pos);
767 sprintf(buffer, "exception\t%s\t%d\t%d\t%d\n", (char *)(e->name), (ANTLR3_INT32)(e->index), e->line, e->charPositionInLine);
H A Dantlr3inputstream.c64 static void antlr38BitSetLine (pANTLR3_INPUT_STREAM input, ANTLR3_UINT32 line);
168 input->getLine = antlr38BitGetLine; // Return the current line number in the input stream
169 input->getLineBuf = antlr38BitGetLineBuf; // Return a pointer to the start of the current line being consumed
170 input->getCharPositionInLine = antlr38BitGetCharPosition; // Return the offset into the current line of input
171 input->setLine = antlr38BitSetLine; // Set the input stream line number (does not set buffer pointers)
172 input->setCharPositionInLine = antlr38BitSetCharPosition; // Set the offset in to the current line (does not set any pointers)
186 /* Install default line separator character (it can be replaced
265 input->line = 1; /* starts at line 1 */
323 /* Indicate one more character in this line
654 antlr38BitSetLine(pANTLR3_INPUT_STREAM input, ANTLR3_UINT32 line) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DBlankDebugEventListener.cs69 public virtual void Location(int line, int pos) { argument
H A DDebugEventHub.cs121 public virtual void Location(int line, int pos) { argument
124 listener.Location(line, pos);
H A DDebugEventRepeater.cs77 public virtual void Location(int line, int pos) { argument
78 _listener.Location(line, pos);
H A DDebugEventSocketProxy.cs48 * one event per line. ANTLRWorks listens on server socket with a
216 public override void Location(int line, int pos) { argument
217 Transmit("location\t" + line + "\t" + pos);
279 int line = -1;
282 line = token.Line;
286 buf.Append(line);
378 // escape \n and \r all text for token appears to exist on one line
H A DIDebugEventListener.cs152 * inform the debugger what line/charPos it is passing in the grammar.
159 * the parser whenever it hits this line/pos.
162 void Location(int line, int pos); argument
H A DProfiler.cs150 public override void Location(int line, int pos) { argument
151 currentLine.Push(line);
174 descriptor.line = currentLine.Peek();
611 buf.Append(LocationDescription(s.fileName, s.ruleName, s.line, s.pos)); // decision number
660 protected virtual string LocationDescription(string file, string rule, int line, int pos) { argument
661 return file + ":" + line + ":" + pos + "(" + rule + ")";
709 public int line; field in class:Antlr.Runtime.Debug.Profiler.DecisionDescriptor

Completed in 660 milliseconds

1234567891011>>