/external/mesa3d/src/compiler/glsl/glcpp/tests/ |
D | 085-incorrect-argument-count.c.expected | 1 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)
|
D | 085-incorrect-argument-count.c | 1 #define MULT(x,y) ((x)*(y)) macro 2 MULT() 3 MULT(1) 4 MULT(1,2,3)
|
/external/libxaac/decoder/ |
D | ixheaacd_mps_smoothing.c | 44 #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/ |
D | PolyDifferentiator.g | 11 | ^(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]))
|
D | PolyDifferentiator.m | 144 @"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 …]
|
D | Poly.g | 6 tokens { MULT; } // imaginary token 11 term: INT ID -> ^(MULT[@"*"] INT ID) 12 | INT exp -> ^(MULT[@"*"] INT exp)
|
D | PolyParser.m | 211 @"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]
|
D | Simplifier.g | 28 | ^(MULT INT poly) -> {$INT.int==1}? poly 29 -> ^(MULT INT poly)
|
D | PolyPrinter.m | 124 @"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];
|
D | PolyPrinter.tokens | 3 MULT=4
|
D | Simplifier.tokens | 5 MULT=6
|
D | Poly.tokens | 5 MULT=6
|
D | PolyDifferentiator.tokens | 5 MULT=6
|
/external/icu/icu4j/perf-tests/perldriver/ |
D | Format.pm | 97 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/ |
D | Format.pm | 99 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/ |
D | Format.pm | 99 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/ |
D | TestHashCollisionChars.java | 121 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/ |
D | SimpleCalc.g | 7 MULT = '*' ; 17 term : factor ( ( MULT | DIV ) factor )* ;
|
/external/icu/icu4j/perf-tests/ |
D | normperf.pl | 482 my @MULT = (1 , 1e3, 1e6, 1e9); 487 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT); 489 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
|
D | converterperf.pl | 450 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];
|
D | dateformatperf.pl | 432 my @MULT = (1 , 1e3, 1e6, 1e9); 437 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT); 439 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
|
D | decimalformatperf.pl | 427 my @MULT = (1 , 1e3, 1e6, 1e9); 432 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT); 434 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
|
D | ucharacterperf.pl | 429 my @MULT = (1 , 1e3, 1e6, 1e9); 434 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT); 436 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
|
D | unicodesetperf.pl | 419 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/ |
D | simplecalc.t | 19 MULT = '*' ; 29 term : factor ( ( MULT | DIV ) factor )* ;
|