Searched refs:op (Results 1 - 25 of 1703) sorted by path

1234567891011>>

/external/aac/libFDK/include/
H A Dfixpoint_math.h104 FIXP_DBL CalcLdData(FIXP_DBL op);
108 FIXP_DBL CalcInvLdData(FIXP_DBL op);
162 FIXP_DBL sqrtFixp(FIXP_DBL op);
166 FIXP_DBL invSqrtNorm2(FIXP_DBL op, INT *shift);
171 description: delivers 1/(op)
174 inline FIXP_DBL invFixp(FIXP_DBL op) argument
177 FIXP_DBL tmp_inv = invSqrtNorm2(op, &tmp_exp) ;
/external/aac/libFDK/src/
H A Dfixpoint_math.cpp131 description: Delivers the Logarithm Dualis ld(op)/LD_DATA_SCALING with polynomial approximation.
132 input: Input op is assumed to be double precision fractional 0 < op < 1.0
134 output: For op == 0, the result is saturated to -1.0
142 FIXP_DBL CalcLdData(FIXP_DBL op) argument
144 return fLog2(op, 0);
236 Delivers 2^(op*LD_DATA_SCALING)
237 input: Input op is assumed to be fractional -1.0 < op < 1.0
238 output: For op
426 invSqrtNorm2(FIXP_DBL op, INT *shift) argument
470 sqrtFixp(FIXP_DBL op) argument
[all...]
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
H A DANTLRv3.g263 atom: range ( (op='^'|op='!') -> ^($op range) | -> range )
265 | notSet ( (op='^'|op='!') -> ^($op notSet) | -> notSet )
266 | RULE_REF ( arg=ARG_ACTION )? ( (op='^'|op='!') )?
267 -> {$arg!=null&&op!=null}? ^($op RULE_RE
[all...]
/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 DTokenRewriteStream.as131 var op:RewriteOperation = new InsertBeforeOp(index,text);
133 op.instructionIndex = rewrites.length;
134 rewrites.push(op);
145 var op:RewriteOperation = new ReplaceOp(fromIndex, toIndex, text);
147 op.instructionIndex = rewrites.length;
148 rewrites.push(op);
240 var op:RewriteOperation = RewriteOperation(indexToOp[i]);
243 if ( op==null ) {
249 i = op.execute(state); // execute operation and skip
259 for each (op i
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs269 RewriteOperation op = new InsertBeforeOp(this, index, text);
271 op.instructionIndex = rewrites.Count;
272 rewrites.Add(op);
295 RewriteOperation op = new ReplaceOp(this, from, to, text);
297 op.instructionIndex = rewrites.Count;
298 rewrites.Add(op);
412 RewriteOperation op;
413 bool exists = indexToOp.TryGetValue(i, out op);
420 if (!exists || op == null) {
427 i = op
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs306 RewriteOperation op = new InsertBeforeOp( this, index, text );
308 op.instructionIndex = rewrites.Count;
309 rewrites.Add( op );
338 RewriteOperation op = new ReplaceOp( this, from, to, text );
340 op.instructionIndex = rewrites.Count;
341 rewrites.Add( op );
477 RewriteOperation op;
478 bool exists = indexToOp.TryGetValue( i, out op );
486 if ( !exists || op == null )
496 i = op
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas637 // for compiler, Abs(Low(Integer)) is a null op.
H A DAntlr.Runtime.pas2764 /// I.i.u = insert u before op @ index i
2767 /// First we need to examine replaces. For any replace op:
2769 /// 1. wipe out any insertions before op within that range.
2770 /// 2. Drop any replace op before that is contained completely within
2781 /// Don't actually delete; make op null in list. Easier to walk list.
2782 /// Later we can throw as we add to index -> op map.
6030 // delete insert as it's a no-op.
6042 // delete replace as it's a no-op.
6092 raise EArgumentOutOfRangeException.Create('insert op '
6103 raise Exception.Create('should only be one op pe
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java241 RewriteOperation op = new InsertBeforeOp(index,text);
243 op.instructionIndex = rewrites.size();
244 rewrites.add(op);
267 RewriteOperation op = new ReplaceOp(from, to, text);
269 op.instructionIndex = rewrites.size();
270 rewrites.add(op);
379 RewriteOperation op = (RewriteOperation)indexToOp.get(new Integer(i));
382 if ( op==null ) {
388 i = op.execute(buf); // execute operation and skip
400 RewriteOperation op
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js185 * the binary search. A ReplaceOp kills any previous replace op. Since
191 op;
194 op = arguments[0];
197 op = arguments[1];
204 if (searchOp.index===op.index) {
205 // now pos is the index in rewrites of first op with op.index
209 if (op instanceof trs.ReplaceOp) {
214 if (prevOp.index!==op.index) {
218 rewrites[pos] = op; // replac
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DLexer.pm64 my $op = '';
71 $op = 'next';
74 $op = 'return';
77 return $rv if $op eq 'return';
78 next if $op eq 'next';
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py1162 op = InsertBeforeOp(self, index, text)
1164 op.instructionIndex = len(rewrites)
1165 rewrites.append(op)
1203 op = ReplaceOp(self, first, last, text)
1205 op.instructionIndex = len(rewrites)
1206 rewrites.append(op)
1303 op = indexToOp.get(i)
1311 if op is None:
1318 i = op.execute(buf) # execute operation and skip
1327 op
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb99 add string <tt>op.text</tt> to the rewrite output immediately before adding the
100 text content of the token at index <tt>op.index</tt>
122 add text <tt>op.text</tt> to the rewrite buffer in lieu of the text of tokens
123 indexed within the range <tt>op.index .. op.last_index</tt>
160 skip over the tokens indexed within the range <tt>op.index .. op.last_index</tt>
183 op = Replace.new( @stream, range, text )
184 @operations << op
185 return op
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
H A Dauto-ast.rb343 a : ID (op^ ID)* ;
344 op : {
H A Drewrites.rb424 a : op INT -> ^(op INT);
425 op : '+'|'-' ;
439 a : op INT -> ^(INT op);
440 op : '+'|'-' ;
653 a : (atom -> atom) (op='+' r=atom -> ^($op $a $r) )* ;
789 op : '+'|'-' ;
804 op
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
H A Dtemplate-output.rb57 [<%= @args.join( @op.to_s ) %>]
69 -> expr( op={$OP.text}, args={$r} )
181 [<%= @args.join( @op.to_s ) %>]
194 $st = %({"expr"})(args={[1, 2, 3]}, op={"+"})
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DANTLRv3.g257 ( (op='^'|op='!') -> ^($op range)
261 ( (op='^'|op='!') -> ^($op notSet)
265 ( (op='^'|op='!') -> ^($op RULE_REF ARG_ACTION?)
323 ( op
[all...]
H A DLeftRecursiveRuleWalker.g185 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel op=token recurse EOA ) {setTokenPrec($op.t, outerAlt);}
189 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel ^( BLOCK ( ^( ALT op=token EOA {setTokenPrec($op.t, outerAlt);} ) )+ EOB ) recurse EOA )
193 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel op=token recurse token recurse EOA ) {setTokenPrec($op.t, outerAlt);}
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DBasicPoolEntry.java58 * @param op the connection operator
63 public BasicPoolEntry(ClientConnectionOperator op, argument
66 super(op, route);
H A DConnPoolByRoute.java476 * @param op the operator for creating a connection
481 ClientConnectionOperator op) {
489 new BasicPoolEntry(op, rospl.getRoute(), refQueue);
480 createEntry(RouteSpecificPool rospl, ClientConnectionOperator op) argument
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java108 * @param op The operation object.
111 public boolean visitBinaryOperation(ExpressionOwner owner, Operation op) argument
120 * @param op The operation object.
123 public boolean visitUnaryOperation(ExpressionOwner owner, UnaryOperation op) argument
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DWalkerFactory.java432 int op = compiler.getOp(opPos);
434 switch(op)
455 int leftPos = OpMap.getFirstChildPos(op);
810 * @param compiler The compiler that holds the syntax tree/op map to
812 * @param stepOpCodePos The current op code position within the opmap.
961 * @param compiler The compiler that holds the syntax tree/op map to
963 * @param stepOpCodePos The current op code position within the opmap.
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java69 * of operation codes (op map) and then builds from that into an Expression
117 int op = getOp(opPos);
120 // System.out.println(getPatternString()+"op: "+op);
121 switch (op)
187 new Object[]{ "quo" }); //"ERROR! Unknown op code: "+m_opMap[opPos]);
191 new Object[]{ Integer.toString(getOp(opPos)) }); //"ERROR! Unknown op code: "+m_opMap[opPos]);
203 * @param opPos The op map position of the parent operation.
225 * @param opPos The position in the op map of the parent operation.
569 // no-op
[all...]
H A DXPathParser.java742 * @param pos The position where the op is to be inserted.
743 * @param length The length of the operation space in the op map.
744 * @param op The op code to the inserted.
746 void insertOp(int pos, int length, int op) argument
756 m_ops.setOp(pos,op);
766 * @param op The op code to the inserted.
768 void appendOp(int length, int op) argument
773 m_ops.setOp(totalLen, op);
[all...]

Completed in 981 milliseconds

1234567891011>>