Home
last modified time | relevance | path

Searched refs:MULT (Results 1 – 25 of 83) sorted by relevance

1234

/external/mesa3d/src/compiler/glsl/glcpp/tests/
D085-incorrect-argument-count.c.expected1 0:2(1): preprocessor error: Error: macro MULT invoked with 1 arguments (expected 2)
3 0:3(1): preprocessor error: Error: macro MULT invoked with 1 arguments (expected 2)
5 0:4(1): preprocessor error: Error: macro MULT invoked with 3 arguments (expected 2)
8 MULT()
9 MULT(1)
10 MULT(1,2,3)
D085-incorrect-argument-count.c1 #define MULT(x,y) ((x)*(y)) macro
2 MULT()
3 MULT(1)
4 MULT(1,2,3)
/external/libxaac/decoder/
Dixheaacd_mps_smoothing.c44 #ifndef MULT
45 #define MULT(a, b) (a * b) macro
77 (MULT(delta, self->m1_param_re[ps][pb][row][col]) + in ixheaacd_mps_pre_matrix_mix_matrix_smoothing()
78 MULT(one_minus_delta, self->m1_param_re_prev[pb][row][col])); in ixheaacd_mps_pre_matrix_mix_matrix_smoothing()
80 (MULT(delta, self->m1_param_im[ps][pb][row][col]) + in ixheaacd_mps_pre_matrix_mix_matrix_smoothing()
81 MULT(one_minus_delta, self->m1_param_im_prev[pb][row][col])); in ixheaacd_mps_pre_matrix_mix_matrix_smoothing()
83 (MULT(delta, self->m2_decor_re[ps][pb][row][col]) + in ixheaacd_mps_pre_matrix_mix_matrix_smoothing()
84 MULT(one_minus_delta, self->m2_decor_re_prev[pb][row][col])); in ixheaacd_mps_pre_matrix_mix_matrix_smoothing()
86 (MULT(delta, self->m2_decor_im[ps][pb][row][col]) + in ixheaacd_mps_pre_matrix_mix_matrix_smoothing()
87 MULT(one_minus_delta, self->m2_decor_im_prev[pb][row][col])); in ixheaacd_mps_pre_matrix_mix_matrix_smoothing()
[all …]
/external/antlr/runtime/ObjC/Framework/examples/polydiff/
DPolyDifferentiator.g11 | ^(MULT INT ID) -> INT
12 | ^(MULT c=INT ^('^' ID e=INT))
17 -> ^(MULT[@"*"] INT[c2] ^('^' ID INT[e2]))
23 -> ^(MULT[@"*"] INT[c2] ^('^' ID INT[e2]))
DPolyDifferentiator.m144 @"ID", @"INT", @"MULT", @"WS", @"'+'", @"'^'", nil] retain]];
193 …) | ^( MULT INT ID ) -> INT | ^( MULT c= INT ^( '^' ID e= INT ) ) -> ^( MULT[@\"*\"] INT[c2] ^( '^…
249 description:@"token MULT"] retain];
257 …) | ^( MULT INT ID ) -> INT | ^( MULT c= INT ^( '^' ID e= INT ) ) -> ^( MULT[@\"*\"] INT[c2] ^( '^…
266 case MULT: ;
388 …/antlr3/runtime/ObjC/Framework/examples/polydiff/PolyDifferentiator.g:11:4: ^( MULT INT ID ) // alt
400 … MULT4=(CommonTree *)[self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly55];
455 …r3/runtime/ObjC/Framework/examples/polydiff/PolyDifferentiator.g:12:4: ^( MULT c= INT ^( '^' ID e=…
467 … MULT7=(CommonTree *)[self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly71];
526 // elements: INT, 9, INT, ID, MULT
[all …]
DPoly.g6 tokens { MULT; } // imaginary token
11 term: INT ID -> ^(MULT[@"*"] INT ID)
12 | INT exp -> ^(MULT[@"*"] INT exp)
DPolyParser.m211 @"ID", @"INT", @"MULT", @"WS", @"'+'", @"'^'", nil] retain]];
373 …k/examples/polydiff/Poly.g:11:1: term : ( INT ID -> ^( MULT[@\"*\"] INT ID ) | INT exp -> ^( MULT[…
413 …ramework/examples/polydiff/Poly.g:11:5: ( INT ID -> ^( MULT[@\"*\"] INT ID ) | INT exp -> ^( MULT[…
496 // 11:15: -> ^( MULT[@\"*\"] INT ID )
498 …e/antlr/code/antlr3/runtime/ObjC/Framework/examples/polydiff/Poly.g:11:18: ^( MULT[@\"*\"] INT ID )
502 [[treeAdaptor createTree:MULT FromToken:@"*" Text:@"MULT"] retain]
558 // 12:15: -> ^( MULT[@\"*\"] INT exp )
560 …/antlr/code/antlr3/runtime/ObjC/Framework/examples/polydiff/Poly.g:12:18: ^( MULT[@\"*\"] INT exp )
564 [[treeAdaptor createTree:MULT FromToken:@"*" Text:@"MULT"] retain]
DSimplifier.g28 | ^(MULT INT poly) -> {$INT.int==1}? poly
29 -> ^(MULT INT poly)
DPolyPrinter.m124 @"MULT", @"INT", @"ID", @"WS", @"'+'", @"'^'", nil] retain]];
186 …: ( ^( '+' a= poly b= poly ) -> template(a=$a.stb=$b.st) \"<a>+<b>\" | ^( MULT a= poly b= poly ) -…
203 …: ( ^( '+' a= poly b= poly ) -> template(a=$a.stb=$b.st) \"<a>+<b>\" | ^( MULT a= poly b= poly ) -…
211 case MULT: ;
273 // PolyPrinter.g:10:4: ^( MULT a= poly b= poly ) // alt
275 [self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly74];
DPolyPrinter.tokens3 MULT=4
DSimplifier.tokens5 MULT=6
DPoly.tokens5 MULT=6
DPolyDifferentiator.tokens5 MULT=6
/external/icu/icu4j/perf-tests/perldriver/
DFormat.pm97 my @MULT = (1 , 1e3, 1e6, 1e9);
103 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
105 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
/external/cronet/third_party/icu/source/test/perf/perldriver/
DFormat.pm99 my @MULT = (1 , 1e3, 1e6, 1e9);
105 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
107 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
/external/icu/icu4c/source/test/perf/perldriver/
DFormat.pm99 my @MULT = (1 , 1e3, 1e6, 1e9);
105 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
107 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/sym/
DTestHashCollisionChars.java121 final static int MULT = CharsToNameCanonicalizer.HASH_MULT; field in TestHashCollisionChars.CollisionGenerator
124 int p1 = MULT; in generate3()
125 int p0 = MULT * MULT; in generate3()
/external/antlr/runtime/Perl5/examples/simplecalc/
DSimpleCalc.g7 MULT = '*' ;
17 term : factor ( ( MULT | DIV ) factor )* ;
/external/icu/icu4j/perf-tests/
Dnormperf.pl482 my @MULT = (1 , 1e3, 1e6, 1e9);
487 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
489 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
Dconverterperf.pl450 my @MULT = (1 , 1e3, 1e6, 1e9, 1e12);
455 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
457 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
Ddateformatperf.pl432 my @MULT = (1 , 1e3, 1e6, 1e9);
437 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
439 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
Ddecimalformatperf.pl427 my @MULT = (1 , 1e3, 1e6, 1e9);
432 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
434 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
Ducharacterperf.pl429 my @MULT = (1 , 1e3, 1e6, 1e9);
434 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
436 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
Dunicodesetperf.pl419 my @MULT = (1 , 1e3, 1e6, 1e9);
424 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
426 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
/external/antlr/runtime/Perl5/t/examples/
Dsimplecalc.t19 MULT = '*' ;
29 term : factor ( ( MULT | DIV ) factor )* ;

1234