Home
last modified time | relevance | path

Searched refs:boxWire (Results 1 – 9 of 9) sorted by relevance

/dports/audio/faust/faust-2.37.3/tools/benchmark/
H A Dbox-tester.cpp128 Box box = boxSeq(boxPar(boxWire(), boxWire()), boxAdd()); in test4()
141 Box box = boxSeq(boxWire(), boxMul()); in test5()
153 Box box = boxDelay(boxWire(), boxInt(7)); in test6()
164 Box box = boxDelay(boxWire(), boxInt(7)); in test7()
177 … Box box = boxSplit(boxWire(), boxPar(boxAdd(boxDelay(boxWire(), boxReal(500)), boxReal(0.5)), in test8()
288 Box box = boxSplit(boxPar(boxWire(), boxWire()), in test14()
289 boxMerge(boxPar4(boxCut(), boxWire(), boxWire(), boxCut()), in test14()
290 boxPar(boxWire(), boxWire()))); in test14()
302 Box box = boxRec(boxAdd(), boxWire()); in test15()
319 return boxSub(boxWire(), boxIntCast(boxWire())); in decimalpart()
[all …]
/dports/audio/faust/faust-2.37.3/compiler/draw/
H A Ddrawschema.cpp313 gInverter[0] = boxSeq(boxPar(boxWire(), boxInt(-1)), boxPrim2(sigMul)); in isInverter()
314 gInverter[1] = boxSeq(boxPar(boxInt(-1), boxWire()), boxPrim2(sigMul)); in isInverter()
315 gInverter[2] = boxSeq(boxPar(boxWire(), boxReal(-1.0)), boxPrim2(sigMul)); in isInverter()
316 gInverter[3] = boxSeq(boxPar(boxReal(-1.0), boxWire()), boxPrim2(sigMul)); in isInverter()
317 gInverter[4] = boxSeq(boxPar(boxInt(0), boxWire()), boxPrim2(sigSub)); in isInverter()
318 gInverter[5] = boxSeq(boxPar(boxReal(0.0), boxWire()), boxPrim2(sigSub)); in isInverter()
/dports/audio/faust/faust-2.37.3/compiler/boxes/
H A Dboxes.cpp144 EXPORT Tree boxWire() in boxWire() function
427 return (n <= 1) ? boxWire() : boxPar(boxWire(), makeBus(n - 1)); in makeBus()
454 Tree op = (i == 0) ? boxWire() : boxCut(); in makeSelector()
H A Dboxes.hh98 EXPORT Tree boxWire();
/dports/audio/faust/faust-2.37.3/compiler/generator/
H A Dlibfaust-box.h97 Box boxWire();
/dports/audio/faust/faust-2.37.3/compiler/parser/
H A Dfaustparser.y488 | WIRE { $$ = boxWire(); }
H A Dfaustparser.cpp2629 { (yyval.exp) = boxWire(); ;}
/dports/audio/faust/faust-2.37.3/compiler/evaluate/
H A Deval.cpp1030 l = cons(boxWire(), l); in nwires()
/dports/audio/faust/faust-2.37.3/compiler/
H A Dlibcode.cpp3238 return boxWire(); in CboxWire()