Home
last modified time | relevance | path

Searched refs:sigRem (Results 1 – 7 of 7) sorted by relevance

/dports/audio/faust/faust-2.37.3/compiler/generator/
H A Dlibfaust-signal.h273 Signal sigRem(Signal x, Signal y);
/dports/audio/faust/faust-2.37.3/compiler/parser/
H A Dfaustparser.y453 | infixexp MOD infixexp { $$ = boxSeq(boxPar($1,$3),boxPrim2(sigRem)); }
501 | MOD { $$ = boxPrim2(sigRem); }
H A Dfaustparser.cpp2504 … { (yyval.exp) = boxSeq(boxPar((yyvsp[(1) - (3)].exp),(yyvsp[(3) - (3)].exp)),boxPrim2(sigRem)); ;}
2679 { (yyval.exp) = boxPrim2(sigRem); ;}
/dports/audio/faust/faust-2.37.3/compiler/boxes/
H A Dppbox.cpp53 if (ptr == sigRem) return "%"; in prim2name()
/dports/audio/faust/faust-2.37.3/compiler/signals/
H A Dsignals.cpp51 Tree sigRem(Tree x, Tree y) in sigRem() function
395 Tree sigRem(Tree x, Tree y);
H A Dsignals.hh155 Tree sigRem(Tree x, Tree y);
/dports/audio/faust/faust-2.37.3/compiler/
H A Dlibcode.cpp2434 return sigRem(x, y); in CsigRem()
2722 sigAdd, sigSub, sigMul, sigDiv, sigRem, in boxBinOp()
2751 return boxPrim2(sigRem); in boxRem()