Searched refs:current (Results 1 - 25 of 3914) sorted by path

1234567891011>>

/external/aac/libSBRdec/src/
H A Dsbrdec_freq_sca.cpp533 int current; local
549 current = (LONG)temp >> (FRACT_BITS-8);
552 diff[i] = previous - current;
553 previous = current;
/external/aac/libSBRenc/src/
H A Dsbrenc_freq_sca.cpp563 INT current; local
573 current = (INT)scaleValue(tmp, qtmp-23);
574 current = (current+1) >> 1; /* rounding*/
575 diff[i-1] = current-previous;
576 previous = current;
/external/android-clat/
H A Dchecksum.c31 * current - the current checksum (or 0 to start a new checksum)
35 uint32_t ip_checksum_add(uint32_t current, const void *data, int len) { argument
36 uint32_t checksum = current;
96 uint32_t current = 0; local
97 current = ip_checksum_add(current, &(ip6->ip6_src), sizeof(struct in6_addr));
98 current = ip_checksum_add(current, &(ip6->ip6_dst), sizeof(struct in6_addr));
99 current
116 uint32_t current = 0; local
[all...]
H A Dchecksum.h25 uint32_t ip_checksum_add(uint32_t current, const void *data, int len);
/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/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as53 /** Match current input symbol against ttype. Attempt
106 // if current token is consistent with what could come after set
353 /* Compute the error recovery set for the current rule. During
448 /** Compute the context-sensitive FOLLOW set for current rule.
452 * given the current call chain. Contrast this with the
538 * If current token is consistent with what could come after
604 /** Match needs to return the current input symbol, which gets put
608 * a simple method to ask the recognizer to tell me what the current
732 /** Has this rule already parsed input at the current index in the
H A DParser.as61 var current:Token = TokenStream(input).LT(1);
62 if ( current.type == TokenConstants.EOF ) {
63 current = TokenStream(input).LT(-1);
65 t.line = current.line;
66 t.charPositionInLine = current.charPositionInLine;
H A DRecognizerSharedState.as69 /** What character index in the stream did the current token start at?
70 * Needed, for example, to get the text for current token. Set at
81 /** The channel number for the current token */
84 /** The token type for the current token */
87 /** You can set the text for the current token to override what is in
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3collections.h291 /** Count of the vector pools allocated so far (current active pool)
378 pANTLR3_INT_TRIE_NODE current; /* Used to traverse the TRIE with the next() method */ member in struct:ANTLR3_INT_TRIE_struct
H A Dantlr3defs.h472 #define ANTLR3_REALLOC(current, request) realloc ((void *)(current), (size_t)(request))
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c405 /// Match current input symbol against ttype. Upon error, do one token
449 // Pick up the current input token/node for assignment to labels
561 // hence we must say that the current one we found is not a member of the
601 /// if current token is consistent with what could come after set
785 /// Compute the error recovery set for the current rule.
884 /// Compute the context-sensitive FOLLOW set for current rule.
890 /// given the current call chain. Contrast this with the
944 /// Compute the current followset for the input stream.
1218 // you should. It means that at the point where the current token occurred
1409 /// If current toke
2171 pANTLR3_COMMON_TOKEN current; local
[all...]
H A Dantlr3treeparser.c210 pANTLR3_BASE_TREE current; local
220 // Create a new empty node, by stealing the current one, or the previous one if the current one is EOF
222 current = tns->_LT(tns, 1);
225 if (current == &ctns->EOF_NODE.baseTree)
227 current = tns->_LT(tns, -1);
230 while (((pANTLR3_COMMON_TREE)(current->super))->factory == NULL)
232 current = tns->_LT(tns, i--);
235 node = current->dupNode(current);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DParser.cs77 IToken current = ((ITokenStream)input).LT(1);
78 if (current.Type == TokenTypes.EndOfFile) {
79 current = ((ITokenStream)input).LT(-1);
81 t.Line = current.Line;
82 t.CharPositionInLine = current.CharPositionInLine;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DParser.cs84 IToken current = ( (ITokenStream)input ).LT( 1 );
85 if ( current.Type == TokenTypes.EndOfFile )
87 current = ( (ITokenStream)input ).LT( -1 );
89 t.Line = current.Line;
90 t.CharPositionInLine = current.CharPositionInLine;
92 t.InputStream = current.InputStream;
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas350 /// Get tree node at current input pointer + i ahead where i=1 is next node.
1378 /// The index into the nodes list of the current node (next node
1877 /// class wraps up the current state of the UnBufferedTreeNodeStream.
1954 /// a child, push current node and current index.
3221 FCalls.Push(FP); // save current index
3804 // current node is a subtree, skip to corresponding UP.
H A DAntlr.Runtime.pas73 /// Get int at current input pointer + I ahead (where I=1 is next int)
87 /// <see cref="IIntStream.Rewind(Integer)"/> to return to the current position.
88 /// This could be the current input position, a value return from
93 /// Return the current input symbol index 0..N where N indicates the
215 /// The current line in the character stream (ANTLR tracks the
323 /// Get Token at current input pointer + I ahead (where I=1 is next
601 /// What character index in the stream did the current token start at?
604 /// Needed, for example, to get the text for current token. Set at
617 /// <summary>The channel number for the current token</summary>
620 /// <summary>The token type for the current toke
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DParser.java68 Token current = ((TokenStream)input).LT(1);
69 if ( current.getType() == Token.EOF ) {
70 current = ((TokenStream)input).LT(-1);
72 t.line = current.getLine();
73 t.charPositionInLine = current.getCharPositionInLine();
75 t.input = current.getInputStream();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBufferedTreeNodeStream.java68 int current = i;
70 if ( current < nodes.size() ) {
71 return nodes.get(current);
111 /** The index into the nodes list of the current node (next node
347 calls.push(p); // save current index
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DParser.js30 var current = input.LT(1);
32 if ( current.getType() === org.antlr.runtime.Token.EOF ) {
33 old_current = current;
34 current = input.LT(-1);
36 if (!current) {
37 current = old_current;
40 t.line = current.getLine();
41 t.charPositionInLine = current.getCharPositionInLine();
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.js33 /** The index into the nodes list of the current node (next node
66 var current = i;
68 if ( current < nodes.length ) {
69 return nodes[current];
270 this.calls.push(this.p); // save current index
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DParser.pm48 my $current = $input->LT(1);
49 if ($current->get_type() == ANTLR::Runtime::Token->EOF) {
50 $current = $input->LT(-1);
52 $t->set_line($current->get_line());
53 $t->set_char_position_in_line($current->get_char_position_in_line());
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Drecognizers.py104 ## What character index in the stream did the current token start at?
105 # Needed, for example, to get the text for current token. Set at
115 ## The channel number for the current token
118 ## The token type for the current token
121 ## You can set the text for the current token to override what is in
199 Match current input symbol against ttype. Attempt
251 # if current token is consistent with what could come after set
496 Compute the error recovery set for the current rule. During
593 Compute the context-sensitive FOLLOW set for current rule.
597 given the current cal
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddfa.rb55 value against the transition parameters associated with the current state, and
58 further and the current state is defined as an <i>accept state</i>, an
60 the current state is not an <i>accept state</i>, the prediction has failed and
76 the current input symbol.
H A Derror.rb89 # knows its state (such as current input symbol and line info) that
90 # state can change before the exception is reported so current token index
212 The recognizer expected to match a symbol <tt>x</tt> at the current input
343 A recognizer expects the current input symbol to be a member of a set of
344 possible symbol values, but the current symbol does not match.
384 upon the current and future input symbols, but it has determined that
393 symbols. Thus, NoViableAlternative errors indicate that the current input does
398 current input does not appear to be part of any token specification.
493 token, but the current tree node's token type does not match. It's essentially

Completed in 1563 milliseconds

1234567891011>>