Index: head/audio/csound/Makefile =================================================================== --- head/audio/csound/Makefile (revision 289952) +++ head/audio/csound/Makefile (revision 289953) @@ -1,91 +1,201 @@ # New ports collection makefile for: csound # Date created: 2000-10-11 # Whom: trevor # # $FreeBSD$ # PORTNAME= csound -PORTVERSION= 5.13 +PORTVERSION= 5.15.0 CATEGORIES= audio lang -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}5.13/:src \ - SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}5.13/manual:manual -MASTER_SITE_SUBDIR= ${PORTNAME:S/$/:src/} -DISTNAME= ${PORTNAME:S/c/C/}${PORTVERSION}.0 -DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:src +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R} \ + SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R}/manual:manual +DISTNAME= ${PORTNAME:S/c/C/}${PORTVERSION} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} DIST_SUBDIR= csound MAINTAINER= ports@FreeBSD.org COMMENT= Sound synthesizer -LIB_DEPENDS= sndfile:${PORTSDIR}/audio/libsndfile +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/COPYING + BUILD_DEPENDS= ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13 \ - ${LOCALBASE}/bin/bison:${PORTSDIR}/devel/bison + ${LOCALBASE}/include/gmm/gmm.h:${PORTSDIR}/math/gmm++ \ + ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex +LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile -BROKEN= does not package +OPTIONS= ALSA "Build ALSA I/O module" off \ + DSSI "Build DSSI/LADSPA host opcodes" off \ + FLUIDSYNTH "Building FluidSynth opcodes" off \ + JACK "Build Jack I/O module and opcodes" off \ + OSC "Build OSC opcodes" off \ + PORTAUDIO "Build the PortAudio I/O module" off \ + PULSEAUDIO "Build the PulseAudio I/O module" off \ + FLTKGUI "Build FLTK plugin and GUI" on -WRKSRC= ${WRKDIR}/${DISTNAME}/ +CONFLICTS_INSTALL= outguess-* + USE_PYTHON= 2.6+ +USE_BISON= build +USE_GETTEXT= yes USE_SCONS= yes -SCONS_ARGS+= prefix=${PREFIX} CC=${CC} CXX=${CXX} \ - usePortAudio=0 usePortMIDI=0 useALSA=0 \ - useJack=0 buildCsoundAC=0 buildCsoundVST=0 \ - buildRelease=1 install=1 useCoreAudio=1 \ - buildWinsound=1 buildInterfaces=1 \ - buildVirtual=1 buildCSEditor=1 buildDSSI=0 \ - useGettext=1 dynamicCsoundLibrary=1 useDouble=1 +SCONS_BUILDENV= PATH=${LOCALBASE}/bin:$$PATH +SCONS_ARGS= prefix="${PREFIX}" CC="${CC}" CXX="${CXX}" \ + CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ + buildCsoundAC=0 buildCsoundVST=0 buildInterfaces=1 \ + buildRelease=1 buildVirtual=1 dynamicCsoundLibrary=1 \ + install=1 noDebug=1 useDouble=1 \ + useGettext=1 usePortMIDI=0 +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes -CONFLICTS_INSTALL= outguess-* +SUB_FILES= pkg-message -OPTIONS= FLTKGUI "Build fltk plugin and GUI" on +.include -.include +.if defined(WITH_ALSA) +LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib +SCONS_ARGS+= useALSA=1 +PLIST_SUB+= ALSA="" +ALSA_H= alsa/asoundlib.h +.else +SCONS_ARGS+= useALSA=0 +PLIST_SUB+= ALSA="@comment " +ALSA_H= ##alsa/asoundlib.h## +.endif -USE_GETTEXT= yes -SUB_FILES= custom.py pkg-message -SUB_LIST+= PYTHON_INCLUDEDIR=${PYTHON_INCLUDEDIR} \ - PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} -USE_LDCONFIG= yes +.if defined(WITH_DSSI) +BUILD_DEPENDS+= dssi>=0:${PORTSDIR}/audio/dssi +RUN_DEPENDS+= dssi>=0:${PORTSDIR}/audio/dssi +SCONS_ARGS+= buildDSSI=1 +PLIST_SUB+= DSSI="" +.else +SCONS_ARGS+= buildDSSI=0 +PLIST_SUB+= DSSI="@comment " +.endif +.if defined(WITH_FLUIDSYNTH) +LIB_DEPENDS+= fluidsynth.1:${PORTSDIR}/audio/fluidsynth +PLIST_SUB+= FLUIDSYNTH="" +FLUIDSYNTH_H= fluidsynth.h +.else +PLIST_SUB+= FLUIDSYNTH="@comment " +FLUIDSYNTH_H= ##fluidsynth.h## +.endif + +.if defined(WITH_JACK) +LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack +SCONS_ARGS+= useJack=1 +PLIST_SUB+= JACK="" +.else +SCONS_ARGS+= useJack=0 +PLIST_SUB+= JACK="@comment " +.endif + +.if defined(WITH_OSC) +LIB_DEPENDS+= lo.7:${PORTSDIR}/audio/liblo +SCONS_ARGS+= useOSC=1 +PLIST_SUB+= OSC="" +.else +SCONS_ARGS+= useOSC=0 +PLIST_SUB+= OSC="@comment " +.endif + +.if defined(WITH_PORTAUDIO) +BUILD_DEPENDS+= portaudio>=19:${PORTSDIR}/audio/portaudio2 +RUN_DEPENDS+= portaudio>=19:${PORTSDIR}/audio/portaudio2 +SCONS_ARGS+= usePortAudio=1 +PLIST_SUB+= PORTAUDIO="" +PORTAUDIO_L= "${LOCALBASE}/lib/portaudio2" +PORTAUDIO_R= "-Wl,-rpath,${LOCALBASE}/lib/portaudio2" +.else +SCONS_ARGS+= usePortAudio=0 +PLIST_SUB+= PORTAUDIO="@comment " +PORTAUDIO_L= # empty +PORTAUDIO_R= # empty +.endif + +.if defined(WITH_PULSEAUDIO) +LIB_DEPENDS+= pulse-simple.0:${PORTSDIR}/audio/pulseaudio +PLIST_SUB+= PULSEAUDIO="" +PULSEAUDIO_H= pulse/simple.h +.else +PLIST_SUB+= PULSEAUDIO="@comment " +PULSEAUDIO_H= ##pulse/simple.h## +.endif + .if !defined(WITHOUT_FLTKGUI) LIB_DEPENDS+= fltk.1:${PORTSDIR}/x11-toolkits/fltk PLIST_SUB+= FLTKGUI="" -SCONS_ARGS+= useFLTK=1 buildCsound5GUI=1 +SCONS_ARGS+= buildCsound5GUI=1 buildCSEditor=1 buildWinsound=1 useFLTK=1 .else PLIST_SUB+= FLTKGUI="@comment " -SCONS_ARGS+= useFLTK=0 buildCsound5GUI=0 +SCONS_ARGS+= buildCsound5GUI=0 buildCSEditor=0 buildWinsound=0 useFLTK=0 .endif .if !defined(NOPORTDOCS) BUILD_DEPENDS+= ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip -DISTFILES+= Csound5.13_manual_html.zip:manual +DISTFILES+= Csound${PORTVERSION:R}_manual_html.zip:manual .endif -post-patch: apply-slist - @${MV} ${WRKDIR}/custom.py ${WRKSRC} +.include + +.if ${ARCH} == amd64 || ${ARCH} == sparc64 || ${ARCH} == ia64 +CMAKE_ARGS+= Word64=1 +.endif + +post-patch: + @${SED} -e "s|%%LOCALBASE%%|${LOCALBASE}|g; \ + s|%%PYTHON_INCLUDEDIR%%|${PYTHON_INCLUDEDIR}|; \ + s|%%PORTAUDIO_L%%|${PORTAUDIO_L}|; \ + s|%%PORTAUDIO_R%%|${PORTAUDIO_R}|; \ + s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|" \ + < ${FILESDIR}/custom.py.in > ${WRKSRC}/custom.py @${REINPLACE_CMD} -e "s|'unsupported'|'linux'|; \ - s|ENV = {'PATH' : os.environ\['PATH'\]}|ENV = os.environ|; \ - s|'csPerfThread.hpp'|'interfaces/csPerfThread.hpp'|; \ + s|Exit(-1)|print \"\"|; \ + /CCFLAGS/s|\['-Wno-format'\]|Split('${CFLAGS}')|; \ + /CXXFLAGS/s|\['-Wno-format'\]|Split('${CXXFLAGS}')|; \ + s|/usr/local|${LOCALBASE}|; \ + s|/usr/X11R6|${LOCALBASE}|; \ + /\"pthread\"/d; \ + s|'pthread'|''|; \ + s|\"portaudio.h\"|\"portaudio2/portaudio.h\"|; \ + s|\"boost/any.hpp\"|\"##boost/any.hpp##\"|; \ + s|\"alsa/asoundlib.h\"|\"${ALSA_H}\"|; \ + s|'xmlfile.h'|'##xmlfile.h##'|; \ + s|\"pulse/simple.h\"|\"${PULSEAUDIO_H}\"|; \ + s|\"m_pd.h\"|\"##m_pd.h##\"|; \ + s|\"tcl.h\"|\"##tcl.h##\"|; \ s|'5.2'|'5'|; \ s|'dl'|''|; \ - s|'asound'|''|;" \ - ${WRKSRC}/SConstruct - @${REINPLACE_CMD} 's|linux/if.h|net/if.h|' ${WRKSRC}/OOps/remote.c - @${REINPLACE_CMD} 's|malloc.h|stdlib.h|' \ + s|'stdc++'|''|; \ + s|'-DNO_FLTK_THREADS'|''|; \ + s|\"fluidsynth.h\"|\"${FLUIDSYNTH_H}\"|; \ + /mixer_main.c/s|'mixer'|'csmixer'|; \ + /jpluginEnvironment/s|'asound'|''|; \ + /portaudioEnvironment/s|'asound'|''|; \ + /jackEnvironment/s|'asound'|''|; \ + s| stdc++ | |; \ + s| pthread | |" ${WRKSRC}/SConstruct + @${REINPLACE_CMD} -e "s|||" \ + ${WRKSRC}/InOut/rtpa.c + @${REINPLACE_CMD} -e "s|linux/if.h|sys/socket.h|" \ + ${WRKSRC}/OOps/remote.c + @${REINPLACE_CMD} -e "s|values.h|limits.h|" \ + ${WRKSRC}/Opcodes/cpumeter.c + @${REINPLACE_CMD} -e "s|malloc.h|stdlib.h|" \ ${WRKSRC}/frontends/CsoundAC/Counterpoint.hpp post-install: - ${LN} -s libcsound64.so.5 ${PREFIX}/lib/libcsound64.so + @${LN} -s libcsound64.so.5 ${PREFIX}/lib/libcsound64.so .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + @${MKDIR} ${DOCSDIR} @${ECHO_MSG} " Installing the manual." - cd ${WRKDIR}/html && ${COPYTREE_SHARE} . ${DOCSDIR} + @(cd ${WRKDIR}/Csound${PORTVERSION:R}_manual_html \ + && ${COPYTREE_SHARE} . ${DOCSDIR}) @${ECHO_MSG} " Done." .endif - @${ECHO_MSG} " Moving ${PREFIX}/bin/mixer to ${PREFIX}/bin/csmixer" - @${ECHO_MSG} " This is to prevent conflicts with /usr/bin/mixer" - ${MV} ${PREFIX}/bin/mixer ${PREFIX}/bin/csmixer - @${ECHO_MSG} " Done." @${CAT} ${PKGMESSAGE} .include Property changes on: head/audio/csound/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.57 \ No newline at end of property +1.58 \ No newline at end of property Index: head/audio/csound/distinfo =================================================================== --- head/audio/csound/distinfo (revision 289952) +++ head/audio/csound/distinfo (revision 289953) @@ -1,4 +1,4 @@ -SHA256 (csound/Csound5.13.0.tar.gz) = 0552b5de4641bf95069422ed7c45b4aa613938c2fc643788be770dc82b213305 -SIZE (csound/Csound5.13.0.tar.gz) = 9813643 -SHA256 (csound/Csound5.13_manual_html.zip) = 4b040b03afb10215d22eb5deea482c5349aafc3d814c29322f137b28c6b1ed04 -SIZE (csound/Csound5.13_manual_html.zip) = 8411633 +SHA256 (csound/Csound5.15.0.tar.gz) = 86d3c2a880f1ab9b923912da60f71265253b68b4c8626ba62555a627908aafeb +SIZE (csound/Csound5.15.0.tar.gz) = 8721762 +SHA256 (csound/Csound5.15_manual_html.zip) = 5c4248941bce1e9876e798d6ca51e52d0de7da1fb0cdba7cf05e16959463a0fe +SIZE (csound/Csound5.15_manual_html.zip) = 9164637 Property changes on: head/audio/csound/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/audio/csound/files/patch-SliderBank.hpp =================================================================== --- head/audio/csound/files/patch-SliderBank.hpp (revision 289952) +++ head/audio/csound/files/patch-SliderBank.hpp (nonexistent) @@ -1,13 +0,0 @@ ---- InOut/virtual_keyboard/SliderBank.hpp.orig 2011-10-27 13:20:10.000000000 +0200 -+++ InOut/virtual_keyboard/SliderBank.hpp 2011-10-27 13:20:28.000000000 +0200 -@@ -26,8 +26,8 @@ - - #include - #include --#include --#include -+#include -+#include - #include "csdl.h" - #include "SliderData.hpp" - Property changes on: head/audio/csound/files/patch-SliderBank.hpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/audio/csound/files/custom.py.in =================================================================== --- head/audio/csound/files/custom.py.in (revision 289952) +++ head/audio/csound/files/custom.py.in (revision 289953) @@ -1,12 +1,12 @@ # Order is important: place local paths ahead of system paths. import sys customCPPPATH = [ '%%LOCALBASE%%/include', '%%PYTHON_INCLUDEDIR%%' ] customCCFLAGS = [ ] customCXXFLAGS = [ ] -customLIBS = [ '-lintl' ] -customLIBPATH = [ '%%LOCALBASE%%/lib/portaudio2', '%%LOCALBASE%%/lib' ] -customSHLINKFLAGS = [] +customLIBS = [ 'intl' ] +customLIBPATH = [ '%%PORTAUDIO_L%%', '%%LOCALBASE%%/lib' ] +customSHLINKFLAGS = [ '%%PORTAUDIO_R%%', '%%PTHREAD_LIBS%%' ] customSWIGFLAGS = [] platform = 'linux' Property changes on: head/audio/csound/files/custom.py.in ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/audio/csound/files/patch-Engine-csound_orc.l =================================================================== --- head/audio/csound/files/patch-Engine-csound_orc.l (revision 289952) +++ head/audio/csound/files/patch-Engine-csound_orc.l (revision 289953) @@ -1,47 +1,56 @@ ---- Engine/csound_orc.l.old 2011-02-03 05:49:04.000000000 -0600 -+++ Engine/csound_orc.l 2011-02-03 05:49:33.000000000 -0600 -@@ -202,7 +202,7 @@ - alt_stack[macro_stack_ptr++] = macros; - /* printf("Push %p macro stack; new body #%s#\n", macros, mm->body); */ +--- Engine/csound_orc.l.orig 2011-12-22 19:41:53.000000000 +0900 ++++ Engine/csound_orc.l 2011-12-27 21:28:55.000000000 +0900 +@@ -288,7 +288,7 @@ + /* printf("Push %p macro stack; new body #%s#\n", + PARM->macros, mm->body); */ /* printf("Push buffer %p -> ", YY_CURRENT_BUFFER); */ -- yypush_buffer_state(YY_CURRENT_BUFFER); -+ //yypush_buffer_state(YY_CURRENT_BUFFER); - yy_scan_string(mm->body); +- yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); ++ //yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); + yy_scan_string(mm->body, yyscanner); /* printf("%p\n", YY_CURRENT_BUFFER); */ } -@@ -228,7 +228,7 @@ - alt_stack[macro_stack_ptr++] = macros; - /* printf("Push %p macro stack\n", mm_save); */ - /* printf("Push buffer %p -> ", YY_CURRENT_BUFFER); */ -- yypush_buffer_state(YY_CURRENT_BUFFER); -+ //yypush_buffer_state(YY_CURRENT_BUFFER); - yy_scan_string(mm->body); +@@ -313,7 +313,7 @@ + PARM->alt_stack[PARM->macro_stack_ptr].n = 0; + PARM->alt_stack[PARM->macro_stack_ptr++].s = NULL; + /* printf("Push buffer %p -> ", YY_CURRENBUFFER_TOKEN); */ +- yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); ++ //yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); + yy_scan_string(mm->body, yyscanner); /* printf("%p\n", YY_CURRENT_BUFFER); */ } -@@ -280,7 +280,7 @@ - //include_stack[include_stack_ptr++] = YY_CURRENT_BUFFER; - alt_stack[macro_stack_ptr++] = mm_save; - /* printf("Push %p macro stack\n", mm_save); */ -- yypush_buffer_state(YY_CURRENT_BUFFER); -+ //yypush_buffer_state(YY_CURRENT_BUFFER); - yy_scan_string(mm->body); +@@ -367,7 +367,7 @@ + PARM->alt_stack[PARM->macro_stack_ptr].n = mm->acnt; + PARM->alt_stack[PARM->macro_stack_ptr++].s = PARM->macros; + /* printf("Push %p macro stack\n",PARM->macros); */ +- yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); ++ //yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); + yy_scan_string(mm->body, yyscanner); } - {MACRONAMEDA} { printf("Macro with arguments call not written\n");} -@@ -307,7 +307,7 @@ - <> { - MACRO *x, *y=macros; - /* printf("Leaving buffer %p\n", YY_CURRENT_BUFFER); */ -- yypop_buffer_state(); -+ //yypop_buffer_state(); + {MACRONAMEDA} { +@@ -419,7 +419,7 @@ + /* printf("New body: ...#%s#\n", mm->body); */ + PARM->alt_stack[PARM->macro_stack_ptr].n = mm->acnt; + PARM->alt_stack[PARM->macro_stack_ptr++].s = PARM->macros; +- yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); ++ //yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); + yy_scan_string(mm->body, yyscanner); + } + {INTGR} { +@@ -448,7 +448,7 @@ + MACRO *x, *y; + int n; + printf("Leaving buffer %p\n", YY_CURRENT_BUFFER); +- yypop_buffer_state(yyscanner); ++ //yypop_buffer_state(yyscanner); if ( !YY_CURRENT_BUFFER ) yyterminate(); - /* printf("End of input; popping to %p\n", YY_CURRENT_BUFFER); */ - macros = alt_stack[--macro_stack_ptr]; -@@ -388,7 +388,7 @@ - exit(1); - } - alt_stack[macro_stack_ptr++] = macros; -- yypush_buffer_state(yy_create_buffer( yyin, YY_BUF_SIZE ) ); -+ //yypush_buffer_state(yy_create_buffer( yyin, YY_BUF_SIZE ) ); + printf("End of input; popping to %p\n", YY_CURRENT_BUFFER); + if (PARM->clearBufferAfterEOF) +@@ -581,7 +581,7 @@ + PARM->alt_stack[PARM->macro_stack_ptr].n = 0; + PARM->alt_stack[PARM->macro_stack_ptr++].s = NULL; + PARM->isInclude = PARM->clearBufferAfterEOF = 1; +- yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); ++ //yypush_buffer_state(YY_CURRENT_BUFFER, yyscanner); + yy_scan_string(cf->body, yyscanner); } - static inline int isNameChar(int c, int pos) Property changes on: head/audio/csound/files/patch-Engine-csound_orc.l ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/audio/csound/files/patch-InOut-rtalsa.c =================================================================== --- head/audio/csound/files/patch-InOut-rtalsa.c (nonexistent) +++ head/audio/csound/files/patch-InOut-rtalsa.c (revision 289953) @@ -0,0 +1,18 @@ +--- InOut/rtalsa.c.orig 2011-12-22 19:41:53.000000000 +0900 ++++ InOut/rtalsa.c 2011-12-27 23:53:00.000000000 +0900 +@@ -22,6 +22,7 @@ + 02111-1307 USA + */ + ++/* + #ifndef _ISOC99_SOURCE + #define _ISOC99_SOURCE 1 + #endif +@@ -35,6 +36,7 @@ + #ifndef _POSIX_C_SOURCE + #define _POSIX_C_SOURCE 1 + #endif ++*/ + + #include "csdl.h" + Property changes on: head/audio/csound/files/patch-InOut-rtalsa.c ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/audio/csound/files/patch-Top-csound.c =================================================================== --- head/audio/csound/files/patch-Top-csound.c (revision 289952) +++ head/audio/csound/files/patch-Top-csound.c (revision 289953) @@ -1,68 +1,65 @@ ---- Top/csound.c.old 2011-01-30 01:43:37.000000000 -0600 -+++ Top/csound.c 2011-01-30 01:46:42.000000000 -0600 -@@ -58,7 +58,9 @@ - #include "namedins.h" - #include "pvfileio.h" - #include "fftlib.h" -- +--- Top/csound.c.orig 2011-10-16 22:59:03.000000000 +0900 ++++ Top/csound.c 2011-12-07 01:15:33.000000000 +0900 +@@ -67,11 +67,14 @@ + + /* **** MAJOR PROBLEM: PTHREAD_SPINLOCK_INITIALIZER is not defined in Linux */ + +-#ifdef linux ++#if defined(linux) || defined(__FreeBSD__) + #define PTHREAD_SPINLOCK_INITIALIZER 0 + #endif + #endif /* PARCS */ + +#if defined(__FreeBSD__) +#include +#endif #if defined(USE_OPENMP) #include + #endif /* USE_OPENMP */ +@@ -383,7 +386,7 @@ + 0.0, /* curBeat */ + 0.0, /* curBeat_inc */ + 0.0, /* beatTime */ +-#if defined(HAVE_PTHREAD_SPIN_LOCK) && defined(PARCS) ++#if defined(__GNUC__) && defined(HAVE_PTHREAD_SPIN_LOCK) && defined(PARCS) + PTHREAD_SPINLOCK_INITIALIZER, /* spoutlock */ + PTHREAD_SPINLOCK_INITIALIZER, /* spinlock */ + #else +@@ -2854,7 +2857,7 @@ + /* ------------------------------------ */ + + #if defined(HAVE_RDTSC) +-#if !(defined(LINUX) && defined(__GNUC__) && defined(__i386__)) ++#if !(defined(LINUX) && defined(__GNUC__) && defined(__i386__)) || !(defined(__FreeBSD__) && defined(__i386__)) + #undef HAVE_RDTSC #endif -@@ -2641,49 +2643,14 @@ - static int getTimeResolution(void) - { + #endif +@@ -2867,6 +2870,13 @@ + static int getTimeResolution(void) + { #if defined(HAVE_RDTSC) -- FILE *f; -- char buf[256]; -+ size_t size; -+ int timeResolutionSeconds; -+ size = sizeof timeResolutionSeconds; -+ sysctlbyname("hw.clockrate", &timeResolutionSeconds, &size, NULL, 0); ++#if defined(__FreeBSD__) ++ size_t size; ++ int timeResolutionSeconds; ++ size = sizeof timeResolutionSeconds; ++ sysctlbyname("hw.clockrate", &timeResolutionSeconds, &size, NULL, 0); ++ ++#else + FILE *f; + char buf[256]; -- /* if frequency is not known yet */ -- f = fopen("/proc/cpuinfo", "r"); -- if (UNLIKELY(f == NULL)) { -- fprintf(stderr, Str("Cannot open /proc/cpuinfo. " -- "Support for RDTSC is not available.\n")); -- return -1; -- } -- /* find CPU frequency */ -- while (fgets(buf, 256, f) != NULL) { -- int i; -- char *s = (char*) buf - 1; -- -- buf[255] = '\0'; /* safety */ -- if (strlen(buf) < 9) { -- continue; /* too short, skip */ -- } -- while (*++s != '\0') -- if (isupper(*s)) { -- *s = tolower(*s); /* convert to lower case */ -- } -- if (strncmp(buf, "cpu mhz", 7) != 0) { -- continue; /* check key name */ -- } -- s = strchr(buf, ':'); /* find frequency value */ -- if (s == NULL) { -- continue; /* invalid entry */ -- } -- do { -- s++; -- } while (*s == ' ' || *s == '\t'); /* skip white space */ -- i = sscanf(s, "%lf", &timeResolutionSeconds); -- if (i < 1 || timeResolutionSeconds < 1.0) { -- timeResolutionSeconds = -1.0; /* invalid entry */ -- continue; -- } -- } -- fclose(f); - if (UNLIKELY(timeResolutionSeconds <= 0.0)) { - fprintf(stderr, Str("No valid CPU frequency entry " -- "was found in /proc/cpuinfo.\n")); -+ "was found.\n")); - return -1; +@@ -2923,9 +2933,14 @@ } - /* MHz -> seconds */ + } + fclose(f); ++#endif /* __FreeBSD__ */ + if (UNLIKELY(timeResolutionSeconds <= 0.0)) { + fprintf(stderr, Str("No valid CPU frequency entry " ++#if defined(__FreeBSD__) ++ "was found.\n")); ++#else + "was found in /proc/cpuinfo.\n")); ++#endif /* __FreeBSD__ */ + return -1; + } + /* MHz -> seconds */ Property changes on: head/audio/csound/files/patch-Top-csound.c ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/audio/csound/files/pkg-message.in =================================================================== --- head/audio/csound/files/pkg-message.in (revision 289952) +++ head/audio/csound/files/pkg-message.in (revision 289953) @@ -1,9 +1,4 @@ ===================-Please Note:-==================================== -%%PREFIX%%/bin/mixer has been renamed to %%PREFIX%%/bin/cs_mixer so it +%%PREFIX%%/bin/mixer has been renamed to %%PREFIX%%/bin/csmixer so it won't conflict with /usr/bin/mixer -===================================================================== - -===================-Support:-======================================== -Due to the complexity of this port, support requests must be done using -http://www.cpetservices.com/site/tickets/misc.htm ===================================================================== Property changes on: head/audio/csound/files/pkg-message.in ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/audio/csound/pkg-plist =================================================================== --- head/audio/csound/pkg-plist (revision 289952) +++ head/audio/csound/pkg-plist (revision 289953) @@ -1,2469 +1,2690 @@ bin/atsa bin/cs bin/csb64enc -bin/cseditor bin/csmixer bin/csound %%FLTKGUI%%bin/csound5gui bin/cvanal bin/dnoise bin/envext bin/extract bin/extractor bin/het_export bin/het_import bin/hetro bin/lpanal bin/lpc_export bin/lpc_import bin/makecsd bin/pv_export bin/pv_import bin/pvanal bin/pvlook bin/scale bin/scot bin/scsort bin/sdif2ad bin/sndinfo bin/srconv -bin/winsound +%%FLTKGUI%%bin/winsound include/csound/CppSound.hpp include/csound/CsoundFile.hpp include/csound/OpcodeBase.hpp include/csound/cfgvar.h include/csound/csPerfThread.hpp include/csound/cscore.h include/csound/csdl.h include/csound/csound.h include/csound/csound.hpp include/csound/csoundCore.h include/csound/cwindow.h include/csound/filebuilding.h include/csound/float-version.h include/csound/msg_attr.h include/csound/pstream.h include/csound/pvfileio.h include/csound/soundio.h include/csound/sysdep.h include/csound/text.h include/csound/version.h -lib/csound/plugins64/libambicode1.so lib/csound/plugins64/libampmidid.so -lib/csound/plugins64/libbabo.so -lib/csound/plugins64/libbarmodel.so -lib/csound/plugins64/libchua.so -lib/csound/plugins64/libcompress.so lib/csound/plugins64/libcontrol.so -lib/csound/plugins64/libcrossfm.so lib/csound/plugins64/libcs_date.so -lib/csound/plugins64/libcs_pan2.so -lib/csound/plugins64/libcs_pvs_ops.so lib/csound/plugins64/libdoppler.so -lib/csound/plugins64/libeqfil.so -lib/csound/plugins64/libftest.so -lib/csound/plugins64/libgabnew.so -lib/csound/plugins64/libgrain4.so -lib/csound/plugins64/libharmon.so -lib/csound/plugins64/libhrtferX.so -lib/csound/plugins64/libhrtfnew.so +%%DSSI%%lib/csound/plugins64/libdssi4cs.so +lib/csound/plugins64/libfareygen.so +%%FLUIDSYNTH%%lib/csound/plugins64/libfluidOpcodes.so lib/csound/plugins64/libimage.so -lib/csound/plugins64/libloscilx.so -lib/csound/plugins64/libminmax.so lib/csound/plugins64/libmixer.so -lib/csound/plugins64/libmodal4.so -lib/csound/plugins64/libmodmatrix.so +%%JACK%%lib/csound/plugins64/libjackTransport.so +%%JACK%%lib/csound/plugins64/libjacko.so +lib/csound/plugins64/liblinear_algebra.so lib/csound/plugins64/libmutexops.so -lib/csound/plugins64/libpartikkel.so -lib/csound/plugins64/libphisem.so -lib/csound/plugins64/libphysmod.so -lib/csound/plugins64/libpitch.so -lib/csound/plugins64/libptrack.so -lib/csound/plugins64/libpvlock.so -lib/csound/plugins64/libpvoc.so -lib/csound/plugins64/libpvsbuffer.so +%%OSC%%lib/csound/plugins64/libosc.so +%%ALSA%%lib/csound/plugins64/librtalsa.so +%%JACK%%lib/csound/plugins64/librtjack.so +%%PORTAUDIO%%lib/csound/plugins64/librtpa.so +%%PULSEAUDIO%%lib/csound/plugins64/librtpulse.so lib/csound/plugins64/libscansyn.so -lib/csound/plugins64/libscoreline.so -lib/csound/plugins64/libsfont.so -lib/csound/plugins64/libshape.so +lib/csound/plugins64/libserial.so lib/csound/plugins64/libsignalflowgraph.so -lib/csound/plugins64/libstackops.so -lib/csound/plugins64/libstdopcod.so lib/csound/plugins64/libstdutil.so lib/csound/plugins64/libsystem_call.so -lib/csound/plugins64/libtabsum.so lib/csound/plugins64/libudprecv.so lib/csound/plugins64/libudpsend.so -lib/csound/plugins64/libugakbari.so lib/csound/plugins64/liburandom.so -lib/csound/plugins64/libvaops.so -lib/csound/plugins64/libvbap.so %%FLTKGUI%%lib/csound/plugins64/libvirtual.so -lib/csound/plugins64/libvosim.so %%FLTKGUI%%lib/csound/plugins64/libwidgets.so lib/libcsladspa.so lib/libcsnd.so.5 lib/libcsound64.so lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/ATSadd.html %%PORTDOCS%%%%DOCSDIR%%/ATSaddnz.html %%PORTDOCS%%%%DOCSDIR%%/ATSbufread.html %%PORTDOCS%%%%DOCSDIR%%/ATScross.html %%PORTDOCS%%%%DOCSDIR%%/ATSinfo.html %%PORTDOCS%%%%DOCSDIR%%/ATSinterpread.html %%PORTDOCS%%%%DOCSDIR%%/ATSpartialtap.html %%PORTDOCS%%%%DOCSDIR%%/ATSread.html %%PORTDOCS%%%%DOCSDIR%%/ATSreadnz.html %%PORTDOCS%%%%DOCSDIR%%/ATSsinnoi.html %%PORTDOCS%%%%DOCSDIR%%/BeatsTop.html %%PORTDOCS%%%%DOCSDIR%%/BuildingCsound.html %%PORTDOCS%%%%DOCSDIR%%/CommandCsoundVST.html %%PORTDOCS%%%%DOCSDIR%%/CommandDesc.html %%PORTDOCS%%%%DOCSDIR%%/CommandEnvironment.html %%PORTDOCS%%%%DOCSDIR%%/CommandFlags.html %%PORTDOCS%%%%DOCSDIR%%/CommandFlagsCategory.html %%PORTDOCS%%%%DOCSDIR%%/CommandPreindie.html %%PORTDOCS%%%%DOCSDIR%%/CommandPreproc.html %%PORTDOCS%%%%DOCSDIR%%/CommandTop.html %%PORTDOCS%%%%DOCSDIR%%/CommandUnifile.html %%PORTDOCS%%%%DOCSDIR%%/CommandUnifileExample.html %%PORTDOCS%%%%DOCSDIR%%/CommandUnifileParFile.html %%PORTDOCS%%%%DOCSDIR%%/Configuring.html %%PORTDOCS%%%%DOCSDIR%%/ControlConditional.html %%PORTDOCS%%%%DOCSDIR%%/ControlDurctl.html %%PORTDOCS%%%%DOCSDIR%%/ControlFltkAppearance.html %%PORTDOCS%%%%DOCSDIR%%/ControlFltkGeneral.html %%PORTDOCS%%%%DOCSDIR%%/ControlFltkIntro.html %%PORTDOCS%%%%DOCSDIR%%/ControlFltkOther.html %%PORTDOCS%%%%DOCSDIR%%/ControlFltkValuators.html %%PORTDOCS%%%%DOCSDIR%%/ControlInvocat.html %%PORTDOCS%%%%DOCSDIR%%/ControlPgmctl.html %%PORTDOCS%%%%DOCSDIR%%/ControlRealtime.html %%PORTDOCS%%%%DOCSDIR%%/ControlReinitn.html %%PORTDOCS%%%%DOCSDIR%%/ControlSensing.html %%PORTDOCS%%%%DOCSDIR%%/ControlStacks.html %%PORTDOCS%%%%DOCSDIR%%/ControlSubinstrument.html %%PORTDOCS%%%%DOCSDIR%%/ControlTimeread.html %%PORTDOCS%%%%DOCSDIR%%/ControlTop.html %%PORTDOCS%%%%DOCSDIR%%/CscoreAdvancd.html %%PORTDOCS%%%%DOCSDIR%%/CscoreCompile.html %%PORTDOCS%%%%DOCSDIR%%/CscoreMain.html %%PORTDOCS%%%%DOCSDIR%%/CscoreTop.html %%PORTDOCS%%%%DOCSDIR%%/CsoundLinks.html %%PORTDOCS%%%%DOCSDIR%%/Example.html %%PORTDOCS%%%%DOCSDIR%%/FLbox.html %%PORTDOCS%%%%DOCSDIR%%/FLbutBank.html %%PORTDOCS%%%%DOCSDIR%%/FLbutton.html %%PORTDOCS%%%%DOCSDIR%%/FLcloseButton.html %%PORTDOCS%%%%DOCSDIR%%/FLcolor.html %%PORTDOCS%%%%DOCSDIR%%/FLcolor2.html %%PORTDOCS%%%%DOCSDIR%%/FLcount.html %%PORTDOCS%%%%DOCSDIR%%/FLexecButton.html %%PORTDOCS%%%%DOCSDIR%%/FLgetsnap.html %%PORTDOCS%%%%DOCSDIR%%/FLgroup.html %%PORTDOCS%%%%DOCSDIR%%/FLgroupEnd.html %%PORTDOCS%%%%DOCSDIR%%/FLgroup_end.html %%PORTDOCS%%%%DOCSDIR%%/FLhide.html %%PORTDOCS%%%%DOCSDIR%%/FLhvsBox.html %%PORTDOCS%%%%DOCSDIR%%/FLhvsBoxSetValue.html %%PORTDOCS%%%%DOCSDIR%%/FLjoy.html %%PORTDOCS%%%%DOCSDIR%%/FLkeyIn.html %%PORTDOCS%%%%DOCSDIR%%/FLknob.html %%PORTDOCS%%%%DOCSDIR%%/FLlabel.html %%PORTDOCS%%%%DOCSDIR%%/FLloadsnap.html %%PORTDOCS%%%%DOCSDIR%%/FLmouse.html %%PORTDOCS%%%%DOCSDIR%%/FLpack.html %%PORTDOCS%%%%DOCSDIR%%/FLpackEnd.html %%PORTDOCS%%%%DOCSDIR%%/FLpack_end.html %%PORTDOCS%%%%DOCSDIR%%/FLpanel.html %%PORTDOCS%%%%DOCSDIR%%/FLpanelEnd.html %%PORTDOCS%%%%DOCSDIR%%/FLpanel_end.html %%PORTDOCS%%%%DOCSDIR%%/FLprintk.html %%PORTDOCS%%%%DOCSDIR%%/FLprintk2.html %%PORTDOCS%%%%DOCSDIR%%/FLroller.html %%PORTDOCS%%%%DOCSDIR%%/FLrun.html %%PORTDOCS%%%%DOCSDIR%%/FLsavesnap.html %%PORTDOCS%%%%DOCSDIR%%/FLscroll.html %%PORTDOCS%%%%DOCSDIR%%/FLscrollEnd.html %%PORTDOCS%%%%DOCSDIR%%/FLscroll_end.html %%PORTDOCS%%%%DOCSDIR%%/FLsetAlign.html %%PORTDOCS%%%%DOCSDIR%%/FLsetBox.html %%PORTDOCS%%%%DOCSDIR%%/FLsetColor.html %%PORTDOCS%%%%DOCSDIR%%/FLsetColor2.html %%PORTDOCS%%%%DOCSDIR%%/FLsetFont.html %%PORTDOCS%%%%DOCSDIR%%/FLsetPosition.html %%PORTDOCS%%%%DOCSDIR%%/FLsetSize.html %%PORTDOCS%%%%DOCSDIR%%/FLsetSnapGroup.html %%PORTDOCS%%%%DOCSDIR%%/FLsetText.html %%PORTDOCS%%%%DOCSDIR%%/FLsetTextColor.html %%PORTDOCS%%%%DOCSDIR%%/FLsetTextSize.html %%PORTDOCS%%%%DOCSDIR%%/FLsetTextType.html %%PORTDOCS%%%%DOCSDIR%%/FLsetVal.html %%PORTDOCS%%%%DOCSDIR%%/FLsetVal_i.html %%PORTDOCS%%%%DOCSDIR%%/FLsetsnap.html %%PORTDOCS%%%%DOCSDIR%%/FLshow.html %%PORTDOCS%%%%DOCSDIR%%/FLslidBnk.html %%PORTDOCS%%%%DOCSDIR%%/FLslidBnk2.html %%PORTDOCS%%%%DOCSDIR%%/FLslidBnk2Set.html %%PORTDOCS%%%%DOCSDIR%%/FLslidBnk2Setk.html %%PORTDOCS%%%%DOCSDIR%%/FLslidBnkGetHandle.html %%PORTDOCS%%%%DOCSDIR%%/FLslidBnkSet.html %%PORTDOCS%%%%DOCSDIR%%/FLslidBnkSetk.html %%PORTDOCS%%%%DOCSDIR%%/FLslider.html %%PORTDOCS%%%%DOCSDIR%%/FLtabs.html %%PORTDOCS%%%%DOCSDIR%%/FLtabsEnd.html %%PORTDOCS%%%%DOCSDIR%%/FLtabs_end.html %%PORTDOCS%%%%DOCSDIR%%/FLtext.html %%PORTDOCS%%%%DOCSDIR%%/FLupdate.html %%PORTDOCS%%%%DOCSDIR%%/FLvalue.html %%PORTDOCS%%%%DOCSDIR%%/FLvkeybd.html %%PORTDOCS%%%%DOCSDIR%%/FLvslidBnk.html %%PORTDOCS%%%%DOCSDIR%%/FLvslidBnk2.html %%PORTDOCS%%%%DOCSDIR%%/FLxyin.html %%PORTDOCS%%%%DOCSDIR%%/GEN01.html %%PORTDOCS%%%%DOCSDIR%%/GEN02.html %%PORTDOCS%%%%DOCSDIR%%/GEN03.html %%PORTDOCS%%%%DOCSDIR%%/GEN04.html %%PORTDOCS%%%%DOCSDIR%%/GEN05.html %%PORTDOCS%%%%DOCSDIR%%/GEN06.html %%PORTDOCS%%%%DOCSDIR%%/GEN07.html %%PORTDOCS%%%%DOCSDIR%%/GEN08.html %%PORTDOCS%%%%DOCSDIR%%/GEN09.html %%PORTDOCS%%%%DOCSDIR%%/GEN10.html %%PORTDOCS%%%%DOCSDIR%%/GEN11.html %%PORTDOCS%%%%DOCSDIR%%/GEN12.html %%PORTDOCS%%%%DOCSDIR%%/GEN13.html %%PORTDOCS%%%%DOCSDIR%%/GEN14.html %%PORTDOCS%%%%DOCSDIR%%/GEN15.html %%PORTDOCS%%%%DOCSDIR%%/GEN16.html %%PORTDOCS%%%%DOCSDIR%%/GEN17.html %%PORTDOCS%%%%DOCSDIR%%/GEN18.html %%PORTDOCS%%%%DOCSDIR%%/GEN19.html %%PORTDOCS%%%%DOCSDIR%%/GEN20.html %%PORTDOCS%%%%DOCSDIR%%/GEN21.html %%PORTDOCS%%%%DOCSDIR%%/GEN22.html %%PORTDOCS%%%%DOCSDIR%%/GEN23.html %%PORTDOCS%%%%DOCSDIR%%/GEN24.html %%PORTDOCS%%%%DOCSDIR%%/GEN25.html %%PORTDOCS%%%%DOCSDIR%%/GEN27.html %%PORTDOCS%%%%DOCSDIR%%/GEN28.html %%PORTDOCS%%%%DOCSDIR%%/GEN30.html %%PORTDOCS%%%%DOCSDIR%%/GEN31.html %%PORTDOCS%%%%DOCSDIR%%/GEN32.html %%PORTDOCS%%%%DOCSDIR%%/GEN33.html %%PORTDOCS%%%%DOCSDIR%%/GEN34.html %%PORTDOCS%%%%DOCSDIR%%/GEN40.html %%PORTDOCS%%%%DOCSDIR%%/GEN41.html %%PORTDOCS%%%%DOCSDIR%%/GEN42.html %%PORTDOCS%%%%DOCSDIR%%/GEN43.html %%PORTDOCS%%%%DOCSDIR%%/GEN49.html %%PORTDOCS%%%%DOCSDIR%%/GEN51.html %%PORTDOCS%%%%DOCSDIR%%/GEN52.html %%PORTDOCS%%%%DOCSDIR%%/GENexp.html %%PORTDOCS%%%%DOCSDIR%%/GENfarey.html %%PORTDOCS%%%%DOCSDIR%%/GENsone.html %%PORTDOCS%%%%DOCSDIR%%/GENtanh.html %%PORTDOCS%%%%DOCSDIR%%/ImageopcodesTop.html %%PORTDOCS%%%%DOCSDIR%%/Introduction.html %%PORTDOCS%%%%DOCSDIR%%/JackoAudioIn.html %%PORTDOCS%%%%DOCSDIR%%/JackoAudioInConnect.html %%PORTDOCS%%%%DOCSDIR%%/JackoAudioOut.html %%PORTDOCS%%%%DOCSDIR%%/JackoAudioOutConnect.html %%PORTDOCS%%%%DOCSDIR%%/JackoFreewheel.html %%PORTDOCS%%%%DOCSDIR%%/JackoInfo.html %%PORTDOCS%%%%DOCSDIR%%/JackoInit.html %%PORTDOCS%%%%DOCSDIR%%/JackoMidiInConnect.html %%PORTDOCS%%%%DOCSDIR%%/JackoMidiOut.html %%PORTDOCS%%%%DOCSDIR%%/JackoMidiOutConnect.html %%PORTDOCS%%%%DOCSDIR%%/JackoNoteOut.html %%PORTDOCS%%%%DOCSDIR%%/JackoOn.html %%PORTDOCS%%%%DOCSDIR%%/JackoOpcodes.html %%PORTDOCS%%%%DOCSDIR%%/JackoTransport.html %%PORTDOCS%%%%DOCSDIR%%/MathArtLogic.html %%PORTDOCS%%%%DOCSDIR%%/MathMatfunc.html %%PORTDOCS%%%%DOCSDIR%%/MathOpeqfunc.html %%PORTDOCS%%%%DOCSDIR%%/MathRndfunc.html %%PORTDOCS%%%%DOCSDIR%%/MathTop.html %%PORTDOCS%%%%DOCSDIR%%/MathTrig.html %%PORTDOCS%%%%DOCSDIR%%/MidiConvert.html %%PORTDOCS%%%%DOCSDIR%%/MidiExtender.html %%PORTDOCS%%%%DOCSDIR%%/MidiGeneric.html %%PORTDOCS%%%%DOCSDIR%%/MidiInput.html %%PORTDOCS%%%%DOCSDIR%%/MidiInterop.html %%PORTDOCS%%%%DOCSDIR%%/MidiOnoff.html %%PORTDOCS%%%%DOCSDIR%%/MidiOutput.html %%PORTDOCS%%%%DOCSDIR%%/MidiRealtime.html %%PORTDOCS%%%%DOCSDIR%%/MidiSlidrbk.html %%PORTDOCS%%%%DOCSDIR%%/MidiTop.html %%PORTDOCS%%%%DOCSDIR%%/MiscAmp.html %%PORTDOCS%%%%DOCSDIR%%/MiscCsound64.html %%PORTDOCS%%%%DOCSDIR%%/MiscExamples.html %%PORTDOCS%%%%DOCSDIR%%/MiscFormants.html %%PORTDOCS%%%%DOCSDIR%%/MiscGlossary.html %%PORTDOCS%%%%DOCSDIR%%/MiscModalFreq.html %%PORTDOCS%%%%DOCSDIR%%/MiscPitch.html %%PORTDOCS%%%%DOCSDIR%%/MiscQuickref.html %%PORTDOCS%%%%DOCSDIR%%/MiscSf2.html %%PORTDOCS%%%%DOCSDIR%%/MiscWindows.html %%PORTDOCS%%%%DOCSDIR%%/MiscopcodesTop.html %%PORTDOCS%%%%DOCSDIR%%/MixerClear.html %%PORTDOCS%%%%DOCSDIR%%/MixerGetLevel.html %%PORTDOCS%%%%DOCSDIR%%/MixerOpcodes.html %%PORTDOCS%%%%DOCSDIR%%/MixerReceive.html %%PORTDOCS%%%%DOCSDIR%%/MixerSend.html %%PORTDOCS%%%%DOCSDIR%%/MixerSetLevel.html %%PORTDOCS%%%%DOCSDIR%%/MixerSetLevel_i.html %%PORTDOCS%%%%DOCSDIR%%/Network.html %%PORTDOCS%%%%DOCSDIR%%/OSCNetwork.html %%PORTDOCS%%%%DOCSDIR%%/OSCinit.html %%PORTDOCS%%%%DOCSDIR%%/OSClisten.html %%PORTDOCS%%%%DOCSDIR%%/OSCsend.html %%PORTDOCS%%%%DOCSDIR%%/OpcodesTop.html %%PORTDOCS%%%%DOCSDIR%%/OrchDirFiles.html %%PORTDOCS%%%%DOCSDIR%%/OrchExpress.html %%PORTDOCS%%%%DOCSDIR%%/OrchIblock.html %%PORTDOCS%%%%DOCSDIR%%/OrchKvar.html %%PORTDOCS%%%%DOCSDIR%%/OrchMacros.html %%PORTDOCS%%%%DOCSDIR%%/OrchNamedInstruments.html %%PORTDOCS%%%%DOCSDIR%%/OrchNomen.html %%PORTDOCS%%%%DOCSDIR%%/OrchStatemnt.html %%PORTDOCS%%%%DOCSDIR%%/OrchTop.html %%PORTDOCS%%%%DOCSDIR%%/OrchUDO.html +%%PORTDOCS%%%%DOCSDIR%%/Orchtab.html %%PORTDOCS%%%%DOCSDIR%%/OviewFrontEnds.html %%PORTDOCS%%%%DOCSDIR%%/PartOpcodesOverview.html %%PORTDOCS%%%%DOCSDIR%%/PartOverview.html %%PORTDOCS%%%%DOCSDIR%%/PartReference.html %%PORTDOCS%%%%DOCSDIR%%/PitchTop.html %%PORTDOCS%%%%DOCSDIR%%/PitchTuning.html %%PORTDOCS%%%%DOCSDIR%%/PluginTop.html %%PORTDOCS%%%%DOCSDIR%%/PrefaceCopy.html %%PORTDOCS%%%%DOCSDIR%%/PrefaceGettingStarted.html %%PORTDOCS%%%%DOCSDIR%%/PrefaceHistory.html %%PORTDOCS%%%%DOCSDIR%%/PrefaceTop.html %%PORTDOCS%%%%DOCSDIR%%/PrefaceWhatsNew.html %%PORTDOCS%%%%DOCSDIR%%/PythonOpcodesSyntax.html %%PORTDOCS%%%%DOCSDIR%%/RealTimeMac.html %%PORTDOCS%%%%DOCSDIR%%/RealTimeWindows.html %%PORTDOCS%%%%DOCSDIR%%/RecentDevelopments.html %%PORTDOCS%%%%DOCSDIR%%/Remote.html %%PORTDOCS%%%%DOCSDIR%%/STKBandedWG.html %%PORTDOCS%%%%DOCSDIR%%/STKBeeThree.html %%PORTDOCS%%%%DOCSDIR%%/STKBlowBotl.html %%PORTDOCS%%%%DOCSDIR%%/STKBlowHole.html %%PORTDOCS%%%%DOCSDIR%%/STKBowed.html %%PORTDOCS%%%%DOCSDIR%%/STKBrass.html %%PORTDOCS%%%%DOCSDIR%%/STKClarinet.html %%PORTDOCS%%%%DOCSDIR%%/STKDrummer.html %%PORTDOCS%%%%DOCSDIR%%/STKFMVoices.html %%PORTDOCS%%%%DOCSDIR%%/STKFlute.html %%PORTDOCS%%%%DOCSDIR%%/STKHevyMetl.html %%PORTDOCS%%%%DOCSDIR%%/STKMandolin.html %%PORTDOCS%%%%DOCSDIR%%/STKModalBar.html %%PORTDOCS%%%%DOCSDIR%%/STKMoog.html %%PORTDOCS%%%%DOCSDIR%%/STKPercFlut.html %%PORTDOCS%%%%DOCSDIR%%/STKPlucked.html %%PORTDOCS%%%%DOCSDIR%%/STKResonate.html %%PORTDOCS%%%%DOCSDIR%%/STKRhodey.html %%PORTDOCS%%%%DOCSDIR%%/STKSaxofony.html %%PORTDOCS%%%%DOCSDIR%%/STKShakers.html %%PORTDOCS%%%%DOCSDIR%%/STKSimple.html %%PORTDOCS%%%%DOCSDIR%%/STKSitar.html %%PORTDOCS%%%%DOCSDIR%%/STKStifKarp.html %%PORTDOCS%%%%DOCSDIR%%/STKTubeBell.html %%PORTDOCS%%%%DOCSDIR%%/STKVoicForm.html %%PORTDOCS%%%%DOCSDIR%%/STKWhistle.html %%PORTDOCS%%%%DOCSDIR%%/STKWurley.html %%PORTDOCS%%%%DOCSDIR%%/ScoreEval.html %%PORTDOCS%%%%DOCSDIR%%/ScoreGenRef.html %%PORTDOCS%%%%DOCSDIR%%/ScoreMacros.html %%PORTDOCS%%%%DOCSDIR%%/ScoreMult.html %%PORTDOCS%%%%DOCSDIR%%/ScoreNextp.html %%PORTDOCS%%%%DOCSDIR%%/ScoreRamping.html %%PORTDOCS%%%%DOCSDIR%%/ScoreStatements.html %%PORTDOCS%%%%DOCSDIR%%/ScoreStrings.html %%PORTDOCS%%%%DOCSDIR%%/ScoreTop.html %%PORTDOCS%%%%DOCSDIR%%/ScoregensTop.html %%PORTDOCS%%%%DOCSDIR%%/SigProcConmorph.html %%PORTDOCS%%%%DOCSDIR%%/SiggenBasic.html %%PORTDOCS%%%%DOCSDIR%%/SiggenDynamic.html %%PORTDOCS%%%%DOCSDIR%%/SiggenEnvelope.html %%PORTDOCS%%%%DOCSDIR%%/SiggenFmsynth.html %%PORTDOCS%%%%DOCSDIR%%/SiggenGranular.html %%PORTDOCS%%%%DOCSDIR%%/SiggenHvs.html %%PORTDOCS%%%%DOCSDIR%%/SiggenLineexp.html %%PORTDOCS%%%%DOCSDIR%%/SiggenModels.html %%PORTDOCS%%%%DOCSDIR%%/SiggenNoise.html %%PORTDOCS%%%%DOCSDIR%%/SiggenPhasors.html %%PORTDOCS%%%%DOCSDIR%%/SiggenSample.html %%PORTDOCS%%%%DOCSDIR%%/SiggenScanTop.html %%PORTDOCS%%%%DOCSDIR%%/SiggenTableacc.html %%PORTDOCS%%%%DOCSDIR%%/SiggenTop.html %%PORTDOCS%%%%DOCSDIR%%/SiggenWaveterr.html %%PORTDOCS%%%%DOCSDIR%%/SiggenWavguide.html %%PORTDOCS%%%%DOCSDIR%%/SigioInput.html %%PORTDOCS%%%%DOCSDIR%%/SigioOutput.html %%PORTDOCS%%%%DOCSDIR%%/SigioPdisplay.html %%PORTDOCS%%%%DOCSDIR%%/SigioQueries.html %%PORTDOCS%%%%DOCSDIR%%/SigioTop.html %%PORTDOCS%%%%DOCSDIR%%/SigmodCompaccum.html %%PORTDOCS%%%%DOCSDIR%%/SigmodDelay.html %%PORTDOCS%%%%DOCSDIR%%/SigmodPanspatl.html %%PORTDOCS%%%%DOCSDIR%%/SigmodReverbtn.html %%PORTDOCS%%%%DOCSDIR%%/SigmodSample.html %%PORTDOCS%%%%DOCSDIR%%/SigmodSiglimit.html %%PORTDOCS%%%%DOCSDIR%%/SigmodSpeciale.html %%PORTDOCS%%%%DOCSDIR%%/SigmodSpeciali.html %%PORTDOCS%%%%DOCSDIR%%/SigmodStandard.html %%PORTDOCS%%%%DOCSDIR%%/SigmodTop.html %%PORTDOCS%%%%DOCSDIR%%/SigmodWavguide.html %%PORTDOCS%%%%DOCSDIR%%/SigmodWavshape.html %%PORTDOCS%%%%DOCSDIR%%/SignalFlowGraphOpcodes.html %%PORTDOCS%%%%DOCSDIR%%/SoftwareBus.html %%PORTDOCS%%%%DOCSDIR%%/SpectralATS.html %%PORTDOCS%%%%DOCSDIR%%/SpectralLpcresyn.html %%PORTDOCS%%%%DOCSDIR%%/SpectralNonstand.html %%PORTDOCS%%%%DOCSDIR%%/SpectralRealTime.html %%PORTDOCS%%%%DOCSDIR%%/SpectralTop.html %%PORTDOCS%%%%DOCSDIR%%/StringsTop.html %%PORTDOCS%%%%DOCSDIR%%/TableReadwrit.html %%PORTDOCS%%%%DOCSDIR%%/TableSelect.html %%PORTDOCS%%%%DOCSDIR%%/TableTop.html %%PORTDOCS%%%%DOCSDIR%%/Using.html %%PORTDOCS%%%%DOCSDIR%%/UsingDesign.html %%PORTDOCS%%%%DOCSDIR%%/UsingOptimizing.html %%PORTDOCS%%%%DOCSDIR%%/UsingRealTime.html %%PORTDOCS%%%%DOCSDIR%%/UtilityAtsa.html %%PORTDOCS%%%%DOCSDIR%%/UtilityConversion.html %%PORTDOCS%%%%DOCSDIR%%/UtilityOther.html %%PORTDOCS%%%%DOCSDIR%%/UtilityQueries.html %%PORTDOCS%%%%DOCSDIR%%/UtilitySoundfile.html %%PORTDOCS%%%%DOCSDIR%%/UtilityTop.html %%PORTDOCS%%%%DOCSDIR%%/ZakTop.html %%PORTDOCS%%%%DOCSDIR%%/Zerodbfs.html %%PORTDOCS%%%%DOCSDIR%%/a.html %%PORTDOCS%%%%DOCSDIR%%/abetarand.html %%PORTDOCS%%%%DOCSDIR%%/abexprnd.html %%PORTDOCS%%%%DOCSDIR%%/abs.html %%PORTDOCS%%%%DOCSDIR%%/acauchy.html %%PORTDOCS%%%%DOCSDIR%%/active.html %%PORTDOCS%%%%DOCSDIR%%/adds.html %%PORTDOCS%%%%DOCSDIR%%/adsr.html %%PORTDOCS%%%%DOCSDIR%%/adsyn.html %%PORTDOCS%%%%DOCSDIR%%/adsynt.html %%PORTDOCS%%%%DOCSDIR%%/adsynt2.html %%PORTDOCS%%%%DOCSDIR%%/aexprand.html %%PORTDOCS%%%%DOCSDIR%%/aftouch.html %%PORTDOCS%%%%DOCSDIR%%/agauss.html %%PORTDOCS%%%%DOCSDIR%%/agogobel.html %%PORTDOCS%%%%DOCSDIR%%/alinrand.html %%PORTDOCS%%%%DOCSDIR%%/alpass.html %%PORTDOCS%%%%DOCSDIR%%/alwayson.html %%PORTDOCS%%%%DOCSDIR%%/ampdb.html %%PORTDOCS%%%%DOCSDIR%%/ampdbfs.html %%PORTDOCS%%%%DOCSDIR%%/ampmidi.html %%PORTDOCS%%%%DOCSDIR%%/ampmidid.html %%PORTDOCS%%%%DOCSDIR%%/apcauchy.html %%PORTDOCS%%%%DOCSDIR%%/apoisson.html %%PORTDOCS%%%%DOCSDIR%%/apow.html %%PORTDOCS%%%%DOCSDIR%%/areson.html %%PORTDOCS%%%%DOCSDIR%%/aresonk.html %%PORTDOCS%%%%DOCSDIR%%/assign.html %%PORTDOCS%%%%DOCSDIR%%/atone.html %%PORTDOCS%%%%DOCSDIR%%/atonek.html %%PORTDOCS%%%%DOCSDIR%%/atonex.html %%PORTDOCS%%%%DOCSDIR%%/atrirand.html %%PORTDOCS%%%%DOCSDIR%%/aunirand.html %%PORTDOCS%%%%DOCSDIR%%/aweibull.html %%PORTDOCS%%%%DOCSDIR%%/b.html %%PORTDOCS%%%%DOCSDIR%%/babo.html %%PORTDOCS%%%%DOCSDIR%%/balance.html %%PORTDOCS%%%%DOCSDIR%%/bamboo.html %%PORTDOCS%%%%DOCSDIR%%/barmodel.html %%PORTDOCS%%%%DOCSDIR%%/bbcutm.html %%PORTDOCS%%%%DOCSDIR%%/bbcuts.html %%PORTDOCS%%%%DOCSDIR%%/betarand.html %%PORTDOCS%%%%DOCSDIR%%/bexprnd.html %%PORTDOCS%%%%DOCSDIR%%/bformdec.html %%PORTDOCS%%%%DOCSDIR%%/bformdec1.html %%PORTDOCS%%%%DOCSDIR%%/bformenc.html %%PORTDOCS%%%%DOCSDIR%%/bformenc1.html %%PORTDOCS%%%%DOCSDIR%%/binit.html %%PORTDOCS%%%%DOCSDIR%%/biquad.html %%PORTDOCS%%%%DOCSDIR%%/biquada.html %%PORTDOCS%%%%DOCSDIR%%/birnd.html %%PORTDOCS%%%%DOCSDIR%%/bqrez.html %%PORTDOCS%%%%DOCSDIR%%/butbp.html %%PORTDOCS%%%%DOCSDIR%%/butbr.html %%PORTDOCS%%%%DOCSDIR%%/buthp.html %%PORTDOCS%%%%DOCSDIR%%/butlp.html %%PORTDOCS%%%%DOCSDIR%%/butterbp.html %%PORTDOCS%%%%DOCSDIR%%/butterbr.html %%PORTDOCS%%%%DOCSDIR%%/butterhp.html %%PORTDOCS%%%%DOCSDIR%%/butterlp.html %%PORTDOCS%%%%DOCSDIR%%/button.html %%PORTDOCS%%%%DOCSDIR%%/buzz.html %%PORTDOCS%%%%DOCSDIR%%/cabasa.html %%PORTDOCS%%%%DOCSDIR%%/cauchy.html +%%PORTDOCS%%%%DOCSDIR%%/cauchyi.html %%PORTDOCS%%%%DOCSDIR%%/ceil.html %%PORTDOCS%%%%DOCSDIR%%/cent.html %%PORTDOCS%%%%DOCSDIR%%/cggoto.html %%PORTDOCS%%%%DOCSDIR%%/chanctrl.html %%PORTDOCS%%%%DOCSDIR%%/changed.html %%PORTDOCS%%%%DOCSDIR%%/chani.html %%PORTDOCS%%%%DOCSDIR%%/chano.html %%PORTDOCS%%%%DOCSDIR%%/chebyshevpoly.html %%PORTDOCS%%%%DOCSDIR%%/checkbox.html %%PORTDOCS%%%%DOCSDIR%%/chn.html %%PORTDOCS%%%%DOCSDIR%%/chnclear.html %%PORTDOCS%%%%DOCSDIR%%/chnexport.html %%PORTDOCS%%%%DOCSDIR%%/chnget.html %%PORTDOCS%%%%DOCSDIR%%/chnmix.html %%PORTDOCS%%%%DOCSDIR%%/chnparams.html %%PORTDOCS%%%%DOCSDIR%%/chnrecv.html %%PORTDOCS%%%%DOCSDIR%%/chnsend.html %%PORTDOCS%%%%DOCSDIR%%/chnset.html %%PORTDOCS%%%%DOCSDIR%%/chuap.html %%PORTDOCS%%%%DOCSDIR%%/cigoto.html %%PORTDOCS%%%%DOCSDIR%%/ckgoto.html %%PORTDOCS%%%%DOCSDIR%%/clear.html %%PORTDOCS%%%%DOCSDIR%%/clfilt.html %%PORTDOCS%%%%DOCSDIR%%/clip.html %%PORTDOCS%%%%DOCSDIR%%/clock.html %%PORTDOCS%%%%DOCSDIR%%/clockoff.html %%PORTDOCS%%%%DOCSDIR%%/clockon.html %%PORTDOCS%%%%DOCSDIR%%/cngoto.html %%PORTDOCS%%%%DOCSDIR%%/comb.html %%PORTDOCS%%%%DOCSDIR%%/compress.html %%PORTDOCS%%%%DOCSDIR%%/connect.html %%PORTDOCS%%%%DOCSDIR%%/contents.html %%PORTDOCS%%%%DOCSDIR%%/control.html %%PORTDOCS%%%%DOCSDIR%%/convle.html %%PORTDOCS%%%%DOCSDIR%%/convolve.html %%PORTDOCS%%%%DOCSDIR%%/copying.txt %%PORTDOCS%%%%DOCSDIR%%/cos.html %%PORTDOCS%%%%DOCSDIR%%/cosh.html %%PORTDOCS%%%%DOCSDIR%%/cosinv.html %%PORTDOCS%%%%DOCSDIR%%/cps2pch.html %%PORTDOCS%%%%DOCSDIR%%/cpsmidi.html %%PORTDOCS%%%%DOCSDIR%%/cpsmidib.html %%PORTDOCS%%%%DOCSDIR%%/cpsmidinn.html %%PORTDOCS%%%%DOCSDIR%%/cpsoct.html %%PORTDOCS%%%%DOCSDIR%%/cpspch.html %%PORTDOCS%%%%DOCSDIR%%/cpstmid.html %%PORTDOCS%%%%DOCSDIR%%/cpstun.html %%PORTDOCS%%%%DOCSDIR%%/cpstuni.html %%PORTDOCS%%%%DOCSDIR%%/cpsxpch.html +%%PORTDOCS%%%%DOCSDIR%%/cpumeter.html %%PORTDOCS%%%%DOCSDIR%%/cpuprc.html %%PORTDOCS%%%%DOCSDIR%%/credits.html %%PORTDOCS%%%%DOCSDIR%%/cross2.html %%PORTDOCS%%%%DOCSDIR%%/crossfm.html %%PORTDOCS%%%%DOCSDIR%%/crunch.html %%PORTDOCS%%%%DOCSDIR%%/cs.html %%PORTDOCS%%%%DOCSDIR%%/csb64enc.html %%PORTDOCS%%%%DOCSDIR%%/csound.css %%PORTDOCS%%%%DOCSDIR%%/csound5extending.html %%PORTDOCS%%%%DOCSDIR%%/csserver.html %%PORTDOCS%%%%DOCSDIR%%/cswish.html %%PORTDOCS%%%%DOCSDIR%%/ctrl14.html %%PORTDOCS%%%%DOCSDIR%%/ctrl21.html %%PORTDOCS%%%%DOCSDIR%%/ctrl7.html %%PORTDOCS%%%%DOCSDIR%%/ctrlinit.html %%PORTDOCS%%%%DOCSDIR%%/cuserrnd.html %%PORTDOCS%%%%DOCSDIR%%/cvanal.html %%PORTDOCS%%%%DOCSDIR%%/dam.html %%PORTDOCS%%%%DOCSDIR%%/date.html %%PORTDOCS%%%%DOCSDIR%%/dates.html %%PORTDOCS%%%%DOCSDIR%%/db.html %%PORTDOCS%%%%DOCSDIR%%/dbamp.html %%PORTDOCS%%%%DOCSDIR%%/dbfsamp.html %%PORTDOCS%%%%DOCSDIR%%/dcblock.html %%PORTDOCS%%%%DOCSDIR%%/dcblock2.html %%PORTDOCS%%%%DOCSDIR%%/dconv.html %%PORTDOCS%%%%DOCSDIR%%/define.html %%PORTDOCS%%%%DOCSDIR%%/delay.html %%PORTDOCS%%%%DOCSDIR%%/delay1.html %%PORTDOCS%%%%DOCSDIR%%/delayk.html %%PORTDOCS%%%%DOCSDIR%%/delayr.html %%PORTDOCS%%%%DOCSDIR%%/delayw.html %%PORTDOCS%%%%DOCSDIR%%/deltap.html %%PORTDOCS%%%%DOCSDIR%%/deltap3.html %%PORTDOCS%%%%DOCSDIR%%/deltapi.html %%PORTDOCS%%%%DOCSDIR%%/deltapn.html %%PORTDOCS%%%%DOCSDIR%%/deltapx.html %%PORTDOCS%%%%DOCSDIR%%/deltapxw.html %%PORTDOCS%%%%DOCSDIR%%/denorm.html %%PORTDOCS%%%%DOCSDIR%%/diff.html %%PORTDOCS%%%%DOCSDIR%%/diskgrain.html %%PORTDOCS%%%%DOCSDIR%%/diskin.html %%PORTDOCS%%%%DOCSDIR%%/diskin2.html %%PORTDOCS%%%%DOCSDIR%%/dispfft.html %%PORTDOCS%%%%DOCSDIR%%/display.html %%PORTDOCS%%%%DOCSDIR%%/distort.html %%PORTDOCS%%%%DOCSDIR%%/distort1.html %%PORTDOCS%%%%DOCSDIR%%/divides.html %%PORTDOCS%%%%DOCSDIR%%/divz.html %%PORTDOCS%%%%DOCSDIR%%/dnoise.html %%PORTDOCS%%%%DOCSDIR%%/dollar.html %%PORTDOCS%%%%DOCSDIR%%/doppler.html %%PORTDOCS%%%%DOCSDIR%%/downsamp.html %%PORTDOCS%%%%DOCSDIR%%/dripwater.html %%PORTDOCS%%%%DOCSDIR%%/dssiactivate.html %%PORTDOCS%%%%DOCSDIR%%/dssiaudio.html %%PORTDOCS%%%%DOCSDIR%%/dssictls.html %%PORTDOCS%%%%DOCSDIR%%/dssiinit.html %%PORTDOCS%%%%DOCSDIR%%/dssilist.html %%PORTDOCS%%%%DOCSDIR%%/dumpk.html %%PORTDOCS%%%%DOCSDIR%%/dumpk2.html %%PORTDOCS%%%%DOCSDIR%%/dumpk3.html %%PORTDOCS%%%%DOCSDIR%%/dumpk4.html %%PORTDOCS%%%%DOCSDIR%%/duserrnd.html %%PORTDOCS%%%%DOCSDIR%%/e.html %%PORTDOCS%%%%DOCSDIR%%/else.html %%PORTDOCS%%%%DOCSDIR%%/elseif.html %%PORTDOCS%%%%DOCSDIR%%/endif.html %%PORTDOCS%%%%DOCSDIR%%/endin.html %%PORTDOCS%%%%DOCSDIR%%/endop.html %%PORTDOCS%%%%DOCSDIR%%/envelopeGenerators.html %%PORTDOCS%%%%DOCSDIR%%/envext.html %%PORTDOCS%%%%DOCSDIR%%/envlpx.html %%PORTDOCS%%%%DOCSDIR%%/envlpxr.html %%PORTDOCS%%%%DOCSDIR%%/ephasor.html %%PORTDOCS%%%%DOCSDIR%%/eqfil.html %%PORTDOCS%%%%DOCSDIR%%/equals.html %%PORTDOCS%%%%DOCSDIR%%/event.html %%PORTDOCS%%%%DOCSDIR%%/event_i.html %%PORTDOCS%%%%DOCSDIR%%/examples/01hpschd.sf2 %%PORTDOCS%%%%DOCSDIR%%/examples/07AcousticGuitar.sf2 %%PORTDOCS%%%%DOCSDIR%%/examples/0dbfs-1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/0dbfs.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/128,8-cylinderX +%%PORTDOCS%%%%DOCSDIR%%/examples/128,8-gridX +%%PORTDOCS%%%%DOCSDIR%%/examples/128,8-torus +%%PORTDOCS%%%%DOCSDIR%%/examples/128,8-torusX +%%PORTDOCS%%%%DOCSDIR%%/examples/128-left_rightX +%%PORTDOCS%%%%DOCSDIR%%/examples/128-spiral-8,16,128,2,1over2 +%%PORTDOCS%%%%DOCSDIR%%/examples/128-stringX +%%PORTDOCS%%%%DOCSDIR%%/examples/128-stringcircular +%%PORTDOCS%%%%DOCSDIR%%/examples/128-stringcircularX %%PORTDOCS%%%%DOCSDIR%%/examples/19Trumpet.sf2 %%PORTDOCS%%%%DOCSDIR%%/examples/22Bassoon.sf2 %%PORTDOCS%%%%DOCSDIR%%/examples/ATSadd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATSaddnz.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATSbufread.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATScross.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATSinfo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATSinterpread.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATSpartialtap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATSread.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATSreadnz.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ATSsinnoi.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/Church.wav %%PORTDOCS%%%%DOCSDIR%%/examples/FLbox.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLbutBank.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLbutton.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLcount.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLexecButton.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLhvsBox.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLjoy.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLkeyIn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLknob-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLknob.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLmouse.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLpanel-sensekey.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLpanel-sensekey2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLpanel.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLroller.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLsavesnap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLsavesnap_simple.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLscroll.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLsetText.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLsetVal.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLsetcolor.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLslidBnk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLslidBnk2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLslidBnk2Setk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLslider-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLslider.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLtabs.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLtext.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLvalue.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLvslidBnk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLxyin-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/FLxyin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/HRTFcompact +%%PORTDOCS%%%%DOCSDIR%%/examples/JackoInfo.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/JackoInit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/OSCmidircv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/OSCmidisend.csd %%PORTDOCS%%%%DOCSDIR%%/examples/PartikkelExample1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKBandedWG.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKBeeThree.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKBlowBotl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKBlowHole.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKBowed.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKBrass.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKClarinet.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKDrummer.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKFMVoices.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKFlute.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKHevyMetl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKMandolin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKModalBar.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKMoog.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKPercFlut.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKPlucked.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKResonate.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKRhodey.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKSaxofony.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKShakers.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKSimple.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKSitar.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKStifKarp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKTubeBell.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKVoicForm.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKWhistle.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKWurley.csd %%PORTDOCS%%%%DOCSDIR%%/examples/abs.csd %%PORTDOCS%%%%DOCSDIR%%/examples/active.csd %%PORTDOCS%%%%DOCSDIR%%/examples/active_k.csd %%PORTDOCS%%%%DOCSDIR%%/examples/active_scale.csd %%PORTDOCS%%%%DOCSDIR%%/examples/adds.csd %%PORTDOCS%%%%DOCSDIR%%/examples/adsr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/adsyn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/adsynt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/adsynt2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/aftouch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ahh.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/alpass.csd %%PORTDOCS%%%%DOCSDIR%%/examples/alwayson.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ampdb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ampdbfs.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ampmidi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ampmidid.csd %%PORTDOCS%%%%DOCSDIR%%/examples/areson.csd %%PORTDOCS%%%%DOCSDIR%%/examples/aresonk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/assign.csd %%PORTDOCS%%%%DOCSDIR%%/examples/atone.csd %%PORTDOCS%%%%DOCSDIR%%/examples/atonek.csd %%PORTDOCS%%%%DOCSDIR%%/examples/atonex.csd %%PORTDOCS%%%%DOCSDIR%%/examples/babo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/babo_expert.csd %%PORTDOCS%%%%DOCSDIR%%/examples/balance.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bamboo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/barmodel.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bbcutm.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bbcuts.csd %%PORTDOCS%%%%DOCSDIR%%/examples/beats.mp3 %%PORTDOCS%%%%DOCSDIR%%/examples/beats.wav %%PORTDOCS%%%%DOCSDIR%%/examples/betarand.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bexprnd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bformenc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bformenc1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/binit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/biquad-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/biquad.csd %%PORTDOCS%%%%DOCSDIR%%/examples/birnd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bitshift.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bitwise.csd %%PORTDOCS%%%%DOCSDIR%%/examples/bqrez.csd %%PORTDOCS%%%%DOCSDIR%%/examples/butterbp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/butterbr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/butterhp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/butterlp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/buzz.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cabasa.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cauchy.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/cauchyi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ceil.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cent.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cggoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/chanctrl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/changed.csd %%PORTDOCS%%%%DOCSDIR%%/examples/chebyshevpoly.csd %%PORTDOCS%%%%DOCSDIR%%/examples/checkbox.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/chnclear.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/chnget.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/chnmix.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/chnset.csd %%PORTDOCS%%%%DOCSDIR%%/examples/chuap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cigoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ckgoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/clarinet.sdif %%PORTDOCS%%%%DOCSDIR%%/examples/clear.csd %%PORTDOCS%%%%DOCSDIR%%/examples/clfilt_highpass.csd %%PORTDOCS%%%%DOCSDIR%%/examples/clfilt_lowpass.csd %%PORTDOCS%%%%DOCSDIR%%/examples/clip.csd %%PORTDOCS%%%%DOCSDIR%%/examples/clockoff.csd %%PORTDOCS%%%%DOCSDIR%%/examples/clockon.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cngoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/comb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/compress.csd %%PORTDOCS%%%%DOCSDIR%%/examples/connect.csd %%PORTDOCS%%%%DOCSDIR%%/examples/convolve.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cos.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cosh.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cosinv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cps2pch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cps2pch_19et.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cps2pch_ftable.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpsmidi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpsmidib.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpsmidinn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpsmidinn2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpsoct.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpspch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpstmid.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpstun.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpstuni.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpsxpch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpsxpch_105et.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpsxpch_pierce.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/cpumeter.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cpuprc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cross2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/crossfm.csd %%PORTDOCS%%%%DOCSDIR%%/examples/crunch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ctrl7.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/cuserrnd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dam.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dam_expanded.csd %%PORTDOCS%%%%DOCSDIR%%/examples/date.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dates.csd %%PORTDOCS%%%%DOCSDIR%%/examples/db.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dbamp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dbfsamp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dcblock.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dcblock2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dconv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/define.csd %%PORTDOCS%%%%DOCSDIR%%/examples/define_args.csd %%PORTDOCS%%%%DOCSDIR%%/examples/delay.csd %%PORTDOCS%%%%DOCSDIR%%/examples/delay1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/delayk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/delayr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/delayw.csd %%PORTDOCS%%%%DOCSDIR%%/examples/deltap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/deltap3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/deltapi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/deltapn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/deltapx.csd %%PORTDOCS%%%%DOCSDIR%%/examples/deltapxw.csd %%PORTDOCS%%%%DOCSDIR%%/examples/denorm.csd %%PORTDOCS%%%%DOCSDIR%%/examples/diff.csd %%PORTDOCS%%%%DOCSDIR%%/examples/diskgrain.csd %%PORTDOCS%%%%DOCSDIR%%/examples/diskin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/diskin2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dispfft.csd %%PORTDOCS%%%%DOCSDIR%%/examples/display.csd %%PORTDOCS%%%%DOCSDIR%%/examples/distort.csd %%PORTDOCS%%%%DOCSDIR%%/examples/distort1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/divides.csd %%PORTDOCS%%%%DOCSDIR%%/examples/divz.csd %%PORTDOCS%%%%DOCSDIR%%/examples/doppler.csd %%PORTDOCS%%%%DOCSDIR%%/examples/downsamp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dripwater.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dssi4cs.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dssiactivate.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dssiaudio.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dssictls.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dssiinit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dssilist.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dssiplay_mono.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dssiplay_stereo.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/dumpk-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dumpk.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/dumpk2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/dumpk3.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/dumpk4.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/duserrnd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/eee.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/else.csd %%PORTDOCS%%%%DOCSDIR%%/examples/elseif.csd %%PORTDOCS%%%%DOCSDIR%%/examples/endif.csd %%PORTDOCS%%%%DOCSDIR%%/examples/endin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/endop.csd %%PORTDOCS%%%%DOCSDIR%%/examples/envlpx.csd %%PORTDOCS%%%%DOCSDIR%%/examples/envlpxr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/eqfil.csd %%PORTDOCS%%%%DOCSDIR%%/examples/equal.csd %%PORTDOCS%%%%DOCSDIR%%/examples/equals.csd %%PORTDOCS%%%%DOCSDIR%%/examples/event.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/event_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/event_named.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/exitnow.csd %%PORTDOCS%%%%DOCSDIR%%/examples/exp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/expcurve.csd %%PORTDOCS%%%%DOCSDIR%%/examples/expon.csd %%PORTDOCS%%%%DOCSDIR%%/examples/exprand.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/exprandi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/expseg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/expsega.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/expsegb.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/expsegba.csd %%PORTDOCS%%%%DOCSDIR%%/examples/expsegr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/farey7shuffled.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fdl.txt %%PORTDOCS%%%%DOCSDIR%%/examples/fibonacci.txt %%PORTDOCS%%%%DOCSDIR%%/examples/ficlose.csd %%PORTDOCS%%%%DOCSDIR%%/examples/filebit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/filelen.csd %%PORTDOCS%%%%DOCSDIR%%/examples/filenchnls.csd %%PORTDOCS%%%%DOCSDIR%%/examples/filepeak.csd %%PORTDOCS%%%%DOCSDIR%%/examples/filesr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/filevalid.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/filter2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fiopen.csd %%PORTDOCS%%%%DOCSDIR%%/examples/flanger.csd %%PORTDOCS%%%%DOCSDIR%%/examples/flashtxt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/flooper.csd %%PORTDOCS%%%%DOCSDIR%%/examples/flooper2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/floor.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluid-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluid-2.orc %%PORTDOCS%%%%DOCSDIR%%/examples/fluid.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluid.orc +%%PORTDOCS%%%%DOCSDIR%%/examples/fluidAllOut.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluidAllOut.orc +%%PORTDOCS%%%%DOCSDIR%%/examples/fluidCCi.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/fluidCCk.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/fluidEngine.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluidLoad.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluidNote.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluidOut.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/fluidProgramSelect.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluidSetInterpMethod.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fluidcomplex.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/flute.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/fmb3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fmbell.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fmmetal.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fmpercfl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fmrhode.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fmvoice.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fmwurlie.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fof.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fof2-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fof2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fofilter.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fog.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fold.csd %%PORTDOCS%%%%DOCSDIR%%/examples/follow.csd %%PORTDOCS%%%%DOCSDIR%%/examples/follow2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/foscil.csd %%PORTDOCS%%%%DOCSDIR%%/examples/foscili.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fout.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fout_ftable.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fout_poly.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fouti.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/foutir.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fox.wav %%PORTDOCS%%%%DOCSDIR%%/examples/fprintks-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fprintks.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fprints.csd %%PORTDOCS%%%%DOCSDIR%%/examples/frac.csd %%PORTDOCS%%%%DOCSDIR%%/examples/freeverb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftchnls.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftconv.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/ftfree.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftgen-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftgen.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/ftgenonce.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftgentmp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftlen.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftlptim.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftmorf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftsave.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ftsr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fwavblnk.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/gain.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gainslider.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gauss.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/gaussi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gbuzz.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen01.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen01computed.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen02.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen03.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen05.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen06.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen07.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen08.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen09.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen09square.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen10.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen11.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen12.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen13.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen14.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen16.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen19.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/gen40.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/gen41.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/gen42.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen49.csd %%PORTDOCS%%%%DOCSDIR%%/examples/genexp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/genfarey.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gensone.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gentanh.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/getcfg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gogobel.csd %%PORTDOCS%%%%DOCSDIR%%/examples/goto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/grain.csd %%PORTDOCS%%%%DOCSDIR%%/examples/grain2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/grain3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/granule.csd %%PORTDOCS%%%%DOCSDIR%%/examples/greaterequal.csd %%PORTDOCS%%%%DOCSDIR%%/examples/greaterthan.csd %%PORTDOCS%%%%DOCSDIR%%/examples/guiro.csd %%PORTDOCS%%%%DOCSDIR%%/examples/harmon.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hilbert.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hilbert_barberpole.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/hrtfearly.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hrtfer.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hrtfmove.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hrtfmove2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/hrtfstat-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hrtfstat.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hsboscil.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hsboscil_midi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hvs1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hvs2-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hvs2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ifthen.csd %%PORTDOCS%%%%DOCSDIR%%/examples/igoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ihold.csd %%PORTDOCS%%%%DOCSDIR%%/examples/imageopcodes.csd %%PORTDOCS%%%%DOCSDIR%%/examples/imageopcodesdemo2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/impuls20.aiff +%%PORTDOCS%%%%DOCSDIR%%/examples/in.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/inch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/include.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/init.csd %%PORTDOCS%%%%DOCSDIR%%/examples/initc7.csd %%PORTDOCS%%%%DOCSDIR%%/examples/inleta.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/inletk.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/inq.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/ins.csd %%PORTDOCS%%%%DOCSDIR%%/examples/insremot.csd %%PORTDOCS%%%%DOCSDIR%%/examples/insremotM.csd %%PORTDOCS%%%%DOCSDIR%%/examples/instr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/int.csd %%PORTDOCS%%%%DOCSDIR%%/examples/integ.csd %%PORTDOCS%%%%DOCSDIR%%/examples/interp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jacko.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jacktransport.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jitter.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jitter2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jspline.csd %%PORTDOCS%%%%DOCSDIR%%/examples/kgoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/kickroll.het %%PORTDOCS%%%%DOCSDIR%%/examples/kickroll.wav %%PORTDOCS%%%%DOCSDIR%%/examples/leftbrace.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lessequal.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lessthan.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lfo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/limit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/line.csd %%PORTDOCS%%%%DOCSDIR%%/examples/linen.csd %%PORTDOCS%%%%DOCSDIR%%/examples/linenr.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/lineto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/linrand.csd %%PORTDOCS%%%%DOCSDIR%%/examples/linseg.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/linsegb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/linsegr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/locsend_quad.csd %%PORTDOCS%%%%DOCSDIR%%/examples/locsend_stereo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/locsig_quad.csd %%PORTDOCS%%%%DOCSDIR%%/examples/locsig_stereo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/log.csd %%PORTDOCS%%%%DOCSDIR%%/examples/log10.csd %%PORTDOCS%%%%DOCSDIR%%/examples/logbtwo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/logcurve.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/loop_le.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/loop_lt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/loopseg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/loopsegp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/looptseg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/loopxseg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lorenz.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lorismorph.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lorisplay.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lorisread.csd %%PORTDOCS%%%%DOCSDIR%%/examples/loscil.csd %%PORTDOCS%%%%DOCSDIR%%/examples/loscil3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lowpass2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lowres.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lowresx.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lpf18.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lpfreson.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lphasor.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lposcil.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lposcil3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lposcila.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lpread.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/lpreson-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lpreson.csd %%PORTDOCS%%%%DOCSDIR%%/examples/lpshold.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/luamoog.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/luaopcode.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mac.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/madsr-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/madsr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/makecsd.py +%%PORTDOCS%%%%DOCSDIR%%/examples/mandel.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mandol.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mandpluk.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/marimba.csd %%PORTDOCS%%%%DOCSDIR%%/examples/marmstk1.wav %%PORTDOCS%%%%DOCSDIR%%/examples/mary.wav +%%PORTDOCS%%%%DOCSDIR%%/examples/massign.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/max.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/max_k.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/maxabs.csd %%PORTDOCS%%%%DOCSDIR%%/examples/maxalloc.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/maxtab.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mclock.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mdelay.csd %%PORTDOCS%%%%DOCSDIR%%/examples/median.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mediank.csd %%PORTDOCS%%%%DOCSDIR%%/examples/meow.sdif +%%PORTDOCS%%%%DOCSDIR%%/examples/metro-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/metro.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/midic7.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midichannelaftertouch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midichn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midichn_advanced.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midichn_advanced.mid %%PORTDOCS%%%%DOCSDIR%%/examples/midicontrolchange.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/midictrl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midiin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midinoteoff.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midinoteoncps.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midinoteonkey.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midinoteonoct.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midinoteonpch.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/midion2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midion_scale.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midion_simple.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/midiout.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midipitchbend.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/miditempo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midremot.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/min.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/minabs.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mincer.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mintab.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mirror.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mode.csd %%PORTDOCS%%%%DOCSDIR%%/examples/modmatrix.csd %%PORTDOCS%%%%DOCSDIR%%/examples/modulus.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/monitor.csd %%PORTDOCS%%%%DOCSDIR%%/examples/moog.csd %%PORTDOCS%%%%DOCSDIR%%/examples/moogladder.csd %%PORTDOCS%%%%DOCSDIR%%/examples/moogvcf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/moogvcf2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/moscil.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/move +%%PORTDOCS%%%%DOCSDIR%%/examples/move2 %%PORTDOCS%%%%DOCSDIR%%/examples/mp3in.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mp3len.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mpulse.csd %%PORTDOCS%%%%DOCSDIR%%/examples/multiplies.csd %%PORTDOCS%%%%DOCSDIR%%/examples/multitap.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/multtab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mute.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mxadsr.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/nchnls.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/nchnls_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/nestedap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/nlfilt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/noise-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/noise.csd %%PORTDOCS%%%%DOCSDIR%%/examples/noteondur.csd %%PORTDOCS%%%%DOCSDIR%%/examples/noteondur2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/notequal.csd %%PORTDOCS%%%%DOCSDIR%%/examples/notnum.csd %%PORTDOCS%%%%DOCSDIR%%/examples/notnum_complex.csd %%PORTDOCS%%%%DOCSDIR%%/examples/nreverb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/nreverb_ftable.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/nrpn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/nsamp.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/ntrpol.csd %%PORTDOCS%%%%DOCSDIR%%/examples/octave.csd %%PORTDOCS%%%%DOCSDIR%%/examples/octcps.csd %%PORTDOCS%%%%DOCSDIR%%/examples/octmidi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/octmidib.csd %%PORTDOCS%%%%DOCSDIR%%/examples/octpch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ooo.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/opa.csd %%PORTDOCS%%%%DOCSDIR%%/examples/opcode1.xml %%PORTDOCS%%%%DOCSDIR%%/examples/opcode_example.csd %%PORTDOCS%%%%DOCSDIR%%/examples/oscbnk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/oscil.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/oscil1.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/oscil1i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/oscil3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/oscili.csd %%PORTDOCS%%%%DOCSDIR%%/examples/oscilikt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/osciliktp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/oscilikts.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/osciln.csd %%PORTDOCS%%%%DOCSDIR%%/examples/oscils.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/out.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outc.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outch-2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outch.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outiat.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outic.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outipb.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outipc.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outkat.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outkc.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outkpb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/outkpc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/outkpc_fltk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/outleta.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outletk.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outq.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outq1.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outq2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outq3.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outq4.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outs.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outs1.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outs2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/p.csd %%PORTDOCS%%%%DOCSDIR%%/examples/p5g.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pan.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pan2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pareq.csd %%PORTDOCS%%%%DOCSDIR%%/examples/partials.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/partikkel-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/partikkel.csd %%PORTDOCS%%%%DOCSDIR%%/examples/partikkel_softsync.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/partikkelsync.csd %%PORTDOCS%%%%DOCSDIR%%/examples/passign.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pcauchy.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pchbend.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pchmidi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pchmidib.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pchoct.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pconvolve.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pcount.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pdclip.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pdhalf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pdhalfy.csd %%PORTDOCS%%%%DOCSDIR%%/examples/peak.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pgmassign.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pgmassign_advanced.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pgmassign_advanced.mid %%PORTDOCS%%%%DOCSDIR%%/examples/pgmassign_ignore.csd %%PORTDOCS%%%%DOCSDIR%%/examples/phaser1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/phaser2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/phasor.csd %%PORTDOCS%%%%DOCSDIR%%/examples/phasorbnk.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pindex-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pindex.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pinkish.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pitch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pitchamdf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/planet.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pluck.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/plustab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/poisson.csd %%PORTDOCS%%%%DOCSDIR%%/examples/polyaft.csd %%PORTDOCS%%%%DOCSDIR%%/examples/polyaft.mid %%PORTDOCS%%%%DOCSDIR%%/examples/polynomial.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pop.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/port.csd %%PORTDOCS%%%%DOCSDIR%%/examples/portk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/poscil.csd %%PORTDOCS%%%%DOCSDIR%%/examples/poscil3-file.csd %%PORTDOCS%%%%DOCSDIR%%/examples/poscil3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pow.csd %%PORTDOCS%%%%DOCSDIR%%/examples/powershape.csd %%PORTDOCS%%%%DOCSDIR%%/examples/powoftwo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/prealloc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/prepiano.csd %%PORTDOCS%%%%DOCSDIR%%/examples/print.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/printf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/printk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/printk2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/printks.csd %%PORTDOCS%%%%DOCSDIR%%/examples/prints.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/product.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pset-midi.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pset.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ptrack.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/push.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvadd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvbufread.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvcross.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvinterp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvoc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvread.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsadsyn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsanal.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsarp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsarp2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsbandp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsbandr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsbin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsblur.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsbuffer.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsbufread.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvsbufread2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvscale.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvscent.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvscross.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsdiskin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsdisp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsfilter.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvsfread.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsfreeze.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsftr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsftw.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsfwrite.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvsgain.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvshift.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsifd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsinfo.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvslock.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsmaska.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvsmix.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvsmooth.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsmorph.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsmorph2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsosc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvspitch.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvstanal.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvsvoc.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pvswarp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsynth.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/qinf.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/qnan.csd %%PORTDOCS%%%%DOCSDIR%%/examples/r.csd %%PORTDOCS%%%%DOCSDIR%%/examples/raises.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rand.csd %%PORTDOCS%%%%DOCSDIR%%/examples/randh.csd %%PORTDOCS%%%%DOCSDIR%%/examples/randi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/random.csd %%PORTDOCS%%%%DOCSDIR%%/examples/randomh.csd %%PORTDOCS%%%%DOCSDIR%%/examples/randomi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rbjeq.csd %%PORTDOCS%%%%DOCSDIR%%/examples/readclock.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/readk-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/readk.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/readk2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/readk3.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/readk4.csd %%PORTDOCS%%%%DOCSDIR%%/examples/reinit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/repluck.csd %%PORTDOCS%%%%DOCSDIR%%/examples/reson.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/resonk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/resonr.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/resonx.csd %%PORTDOCS%%%%DOCSDIR%%/examples/resony.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/resonz.csd %%PORTDOCS%%%%DOCSDIR%%/examples/resyn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/reverb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/reverbsc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rezzy.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rms.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rnd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rnd31.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rnd31_krate.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rnd31_seed7.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rnd31_time.csd %%PORTDOCS%%%%DOCSDIR%%/examples/round.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rspline.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rtclock.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rv_mono.wav %%PORTDOCS%%%%DOCSDIR%%/examples/rv_stereo.wav +%%PORTDOCS%%%%DOCSDIR%%/examples/samphold.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sandpaper.csd %%PORTDOCS%%%%DOCSDIR%%/examples/scale.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/scalet.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/scans-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/scans.csd %%PORTDOCS%%%%DOCSDIR%%/examples/scantable.csd %%PORTDOCS%%%%DOCSDIR%%/examples/schedkwhen.csd %%PORTDOCS%%%%DOCSDIR%%/examples/schedkwhennamed.csd %%PORTDOCS%%%%DOCSDIR%%/examples/schedule.csd %%PORTDOCS%%%%DOCSDIR%%/examples/schedwhen.csd %%PORTDOCS%%%%DOCSDIR%%/examples/schottstaedt.orc %%PORTDOCS%%%%DOCSDIR%%/examples/scogen.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/scoreline.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/scoreline_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/seed.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sekere.csd %%PORTDOCS%%%%DOCSDIR%%/examples/semitone.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sensekey.csd %%PORTDOCS%%%%DOCSDIR%%/examples/seqtime.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/seqtime2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/setctrl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/setscorepos.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sfilist.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sfinstr.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sfinstr3.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sfinstr3m.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sfload.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sflooper.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sfpassign.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sfplay.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sfplay3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sfplay3m.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sfplaym.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sfplist.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sfpreset.csd %%PORTDOCS%%%%DOCSDIR%%/examples/shaker.csd %%PORTDOCS%%%%DOCSDIR%%/examples/signalflowgraph.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sinh.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sininv.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sinsyn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sleighbells.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sndloop.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sndwarp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sndwarpst.csd %%PORTDOCS%%%%DOCSDIR%%/examples/soundin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/space_quad.csd %%PORTDOCS%%%%DOCSDIR%%/examples/space_stereo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/spat3d_UHJ.csd %%PORTDOCS%%%%DOCSDIR%%/examples/spat3d_quad.csd %%PORTDOCS%%%%DOCSDIR%%/examples/spat3d_stereo.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/spat3dt.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/spdist.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sprintf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sprintfk.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/spsend.csd %%PORTDOCS%%%%DOCSDIR%%/examples/spsend_quad.csd %%PORTDOCS%%%%DOCSDIR%%/examples/spsend_stereo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sqrt.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sr.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/stack.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/statevar.csd %%PORTDOCS%%%%DOCSDIR%%/examples/statvar.csd %%PORTDOCS%%%%DOCSDIR%%/examples/stix.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/strcat.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/strcpyk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/streson.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/strget.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/strindexk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/string-128.matrix %%PORTDOCS%%%%DOCSDIR%%/examples/strset.csd %%PORTDOCS%%%%DOCSDIR%%/examples/strsub.csd %%PORTDOCS%%%%DOCSDIR%%/examples/subinstr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/subinstr_named.csd %%PORTDOCS%%%%DOCSDIR%%/examples/subtracts.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sum.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sumtab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/svfilter.csd %%PORTDOCS%%%%DOCSDIR%%/examples/syncgrain.csd %%PORTDOCS%%%%DOCSDIR%%/examples/syncloop.csd %%PORTDOCS%%%%DOCSDIR%%/examples/syncphasor-CZresonance.csd %%PORTDOCS%%%%DOCSDIR%%/examples/syncphasor.csd %%PORTDOCS%%%%DOCSDIR%%/examples/system.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/table.csd %%PORTDOCS%%%%DOCSDIR%%/examples/table1.inc %%PORTDOCS%%%%DOCSDIR%%/examples/tablefilter.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tablei.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tableimix.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tableiw.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tablemix.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tableng.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tableseg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tablexkt.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tablexseg.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tabmorpha.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tabmorphak.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tambourine.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tan.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tanh.csd %%PORTDOCS%%%%DOCSDIR%%/examples/taninv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/taninv2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tbvcf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tempest.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tempo.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/temposcal.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tempoval.csd %%PORTDOCS%%%%DOCSDIR%%/examples/test1.png %%PORTDOCS%%%%DOCSDIR%%/examples/test2.png +%%PORTDOCS%%%%DOCSDIR%%/examples/tigoto.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/timedseq.csd %%PORTDOCS%%%%DOCSDIR%%/examples/timeinstk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/timeinsts.csd %%PORTDOCS%%%%DOCSDIR%%/examples/timek.csd %%PORTDOCS%%%%DOCSDIR%%/examples/times.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/timout.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tival.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tlineto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tone.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tonek.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tonex.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot10.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot4.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot5.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot6.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot7.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot8.csd %%PORTDOCS%%%%DOCSDIR%%/examples/toot9.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tradsyn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trandom.csd %%PORTDOCS%%%%DOCSDIR%%/examples/transeg.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/transegb.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/transegr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trcross.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/trfilter.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trhighest.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trigger.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/trigseq.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trirand.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trlowest.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trmix.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trscale.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/trshift.csd %%PORTDOCS%%%%DOCSDIR%%/examples/trsplit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/turnoff.csd %%PORTDOCS%%%%DOCSDIR%%/examples/twopeaks.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/unirand.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/until.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/upsamp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/urandom.csd %%PORTDOCS%%%%DOCSDIR%%/examples/urandom_krate.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/urd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vadd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vadd_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vaddv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vaget.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/valpass-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/valpass.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vaset.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbap4.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbap4move.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vbap8.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vbap8move.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbaplsinit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vcella.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vco.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vco2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vco2ft.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vco2ift.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vco2init.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vcomb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vcopy.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vdelay.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vdelay3.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vdelayx.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vdelayxq.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vdelayxs.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vdelayxw.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vdelayxwq.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vdelayxws.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vdivv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/veloc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vexp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vexp_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vexpseg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vexpv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vibes.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vibr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vibrato.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vincr-complex.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vincr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/virtual.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vlinseg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vlowres.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vmap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vmult-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vmult.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vmult_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vmultv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/voice.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vosim.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vpow.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vpow_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vpowv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vpvoc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vrandh.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vrandi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vst4cs.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vsubv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vtable1k.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vtablei.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vtablek.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vtablewa.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vtablewk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/waveset.csd %%PORTDOCS%%%%DOCSDIR%%/examples/weibull.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wgbow.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wgbowedbar.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wgbrass.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wgclar.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wgflute.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wgpluck.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wgpluck2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wgpluck_brighter.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wguide1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wguide2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wii.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/wrap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wterrain.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/xadsr.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/xscanmap.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/xscans.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/xscanu.csd %%PORTDOCS%%%%DOCSDIR%%/examples/xtratim-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/xtratim.csd %%PORTDOCS%%%%DOCSDIR%%/examples/xyin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zacl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zakinit.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zamod.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zar.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zarg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zaw.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zawm.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zir.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ziw.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ziwm.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zkcl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zkmod.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zkr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zkw.csd %%PORTDOCS%%%%DOCSDIR%%/examples/zkwm.csd %%PORTDOCS%%%%DOCSDIR%%/exitnow.html %%PORTDOCS%%%%DOCSDIR%%/exp.html %%PORTDOCS%%%%DOCSDIR%%/expcurve.html %%PORTDOCS%%%%DOCSDIR%%/expon.html %%PORTDOCS%%%%DOCSDIR%%/exprand.html +%%PORTDOCS%%%%DOCSDIR%%/exprandi.html %%PORTDOCS%%%%DOCSDIR%%/expseg.html %%PORTDOCS%%%%DOCSDIR%%/expsega.html +%%PORTDOCS%%%%DOCSDIR%%/expsegb.html +%%PORTDOCS%%%%DOCSDIR%%/expsegba.html %%PORTDOCS%%%%DOCSDIR%%/expsegr.html %%PORTDOCS%%%%DOCSDIR%%/extractor.html %%PORTDOCS%%%%DOCSDIR%%/f.html %%PORTDOCS%%%%DOCSDIR%%/fareylen.html %%PORTDOCS%%%%DOCSDIR%%/fareyleni.html %%PORTDOCS%%%%DOCSDIR%%/featuresOfCsoundAC.html %%PORTDOCS%%%%DOCSDIR%%/ficlose.html %%PORTDOCS%%%%DOCSDIR%%/filebit.html %%PORTDOCS%%%%DOCSDIR%%/filelen.html %%PORTDOCS%%%%DOCSDIR%%/filenchnls.html %%PORTDOCS%%%%DOCSDIR%%/filepeak.html %%PORTDOCS%%%%DOCSDIR%%/filesr.html %%PORTDOCS%%%%DOCSDIR%%/filevalid.html %%PORTDOCS%%%%DOCSDIR%%/filter2.html %%PORTDOCS%%%%DOCSDIR%%/fin.html %%PORTDOCS%%%%DOCSDIR%%/fini.html %%PORTDOCS%%%%DOCSDIR%%/fink.html %%PORTDOCS%%%%DOCSDIR%%/fiopen.html %%PORTDOCS%%%%DOCSDIR%%/flanger.html %%PORTDOCS%%%%DOCSDIR%%/flashtxt.html %%PORTDOCS%%%%DOCSDIR%%/flooper.html %%PORTDOCS%%%%DOCSDIR%%/flooper2.html %%PORTDOCS%%%%DOCSDIR%%/floor.html %%PORTDOCS%%%%DOCSDIR%%/fluidAllOut.html %%PORTDOCS%%%%DOCSDIR%%/fluidCCi.html %%PORTDOCS%%%%DOCSDIR%%/fluidCCk.html %%PORTDOCS%%%%DOCSDIR%%/fluidControl.html %%PORTDOCS%%%%DOCSDIR%%/fluidEngine.html %%PORTDOCS%%%%DOCSDIR%%/fluidLoad.html %%PORTDOCS%%%%DOCSDIR%%/fluidNote.html %%PORTDOCS%%%%DOCSDIR%%/fluidOut.html %%PORTDOCS%%%%DOCSDIR%%/fluidProgramSelect.html %%PORTDOCS%%%%DOCSDIR%%/fluidSetInterpMethod.html %%PORTDOCS%%%%DOCSDIR%%/fmb3.html %%PORTDOCS%%%%DOCSDIR%%/fmbell.html %%PORTDOCS%%%%DOCSDIR%%/fmmetal.html %%PORTDOCS%%%%DOCSDIR%%/fmpercfl.html %%PORTDOCS%%%%DOCSDIR%%/fmrhode.html %%PORTDOCS%%%%DOCSDIR%%/fmvoice.html %%PORTDOCS%%%%DOCSDIR%%/fmwurlie.html %%PORTDOCS%%%%DOCSDIR%%/fof.html %%PORTDOCS%%%%DOCSDIR%%/fof2.html %%PORTDOCS%%%%DOCSDIR%%/fofilter.html %%PORTDOCS%%%%DOCSDIR%%/fog.html %%PORTDOCS%%%%DOCSDIR%%/fold.html %%PORTDOCS%%%%DOCSDIR%%/follow.html %%PORTDOCS%%%%DOCSDIR%%/follow2.html %%PORTDOCS%%%%DOCSDIR%%/foscil.html %%PORTDOCS%%%%DOCSDIR%%/foscili.html %%PORTDOCS%%%%DOCSDIR%%/fout.html %%PORTDOCS%%%%DOCSDIR%%/fouti.html %%PORTDOCS%%%%DOCSDIR%%/foutir.html %%PORTDOCS%%%%DOCSDIR%%/foutk.html %%PORTDOCS%%%%DOCSDIR%%/fprintks.html %%PORTDOCS%%%%DOCSDIR%%/fprints.html %%PORTDOCS%%%%DOCSDIR%%/frac.html %%PORTDOCS%%%%DOCSDIR%%/freeverb.html %%PORTDOCS%%%%DOCSDIR%%/ftchnls.html %%PORTDOCS%%%%DOCSDIR%%/ftconv.html %%PORTDOCS%%%%DOCSDIR%%/ftcps.html %%PORTDOCS%%%%DOCSDIR%%/ftfree.html %%PORTDOCS%%%%DOCSDIR%%/ftgen.html %%PORTDOCS%%%%DOCSDIR%%/ftgenonce.html %%PORTDOCS%%%%DOCSDIR%%/ftgentmp.html %%PORTDOCS%%%%DOCSDIR%%/ftlen.html %%PORTDOCS%%%%DOCSDIR%%/ftload.html %%PORTDOCS%%%%DOCSDIR%%/ftloadk.html %%PORTDOCS%%%%DOCSDIR%%/ftlptim.html %%PORTDOCS%%%%DOCSDIR%%/ftmorf.html %%PORTDOCS%%%%DOCSDIR%%/ftsave.html %%PORTDOCS%%%%DOCSDIR%%/ftsavek.html %%PORTDOCS%%%%DOCSDIR%%/ftsr.html %%PORTDOCS%%%%DOCSDIR%%/gain.html %%PORTDOCS%%%%DOCSDIR%%/gainslider.html %%PORTDOCS%%%%DOCSDIR%%/gauss.html +%%PORTDOCS%%%%DOCSDIR%%/gaussi.html %%PORTDOCS%%%%DOCSDIR%%/gbuzz.html %%PORTDOCS%%%%DOCSDIR%%/getcfg.html %%PORTDOCS%%%%DOCSDIR%%/gogobel.html %%PORTDOCS%%%%DOCSDIR%%/goto.html %%PORTDOCS%%%%DOCSDIR%%/grain.html %%PORTDOCS%%%%DOCSDIR%%/grain2.html %%PORTDOCS%%%%DOCSDIR%%/grain3.html %%PORTDOCS%%%%DOCSDIR%%/granule.html %%PORTDOCS%%%%DOCSDIR%%/greaterequal.html %%PORTDOCS%%%%DOCSDIR%%/greaterthan.html %%PORTDOCS%%%%DOCSDIR%%/guiro.html %%PORTDOCS%%%%DOCSDIR%%/harmon.html %%PORTDOCS%%%%DOCSDIR%%/harmon2.html %%PORTDOCS%%%%DOCSDIR%%/het_export.html %%PORTDOCS%%%%DOCSDIR%%/het_import.html %%PORTDOCS%%%%DOCSDIR%%/hetro.html %%PORTDOCS%%%%DOCSDIR%%/hilbert.html +%%PORTDOCS%%%%DOCSDIR%%/hrtfearly.html %%PORTDOCS%%%%DOCSDIR%%/hrtfer.html %%PORTDOCS%%%%DOCSDIR%%/hrtfmove.html %%PORTDOCS%%%%DOCSDIR%%/hrtfmove2.html +%%PORTDOCS%%%%DOCSDIR%%/hrtfreverb.html %%PORTDOCS%%%%DOCSDIR%%/hrtfstat.html %%PORTDOCS%%%%DOCSDIR%%/hsboscil.html %%PORTDOCS%%%%DOCSDIR%%/hvs1.html %%PORTDOCS%%%%DOCSDIR%%/hvs2.html %%PORTDOCS%%%%DOCSDIR%%/hvs3.html %%PORTDOCS%%%%DOCSDIR%%/i.html %%PORTDOCS%%%%DOCSDIR%%/ibetarand.html %%PORTDOCS%%%%DOCSDIR%%/ibexprnd.html %%PORTDOCS%%%%DOCSDIR%%/icauchy.html %%PORTDOCS%%%%DOCSDIR%%/ictrl14.html %%PORTDOCS%%%%DOCSDIR%%/ictrl21.html %%PORTDOCS%%%%DOCSDIR%%/ictrl7.html %%PORTDOCS%%%%DOCSDIR%%/iexprand.html %%PORTDOCS%%%%DOCSDIR%%/if.html %%PORTDOCS%%%%DOCSDIR%%/ifdef.html %%PORTDOCS%%%%DOCSDIR%%/ifndef.html %%PORTDOCS%%%%DOCSDIR%%/igauss.html %%PORTDOCS%%%%DOCSDIR%%/igoto.html %%PORTDOCS%%%%DOCSDIR%%/ihold.html %%PORTDOCS%%%%DOCSDIR%%/ilinrand.html %%PORTDOCS%%%%DOCSDIR%%/imagecreate.html %%PORTDOCS%%%%DOCSDIR%%/imagefree.html %%PORTDOCS%%%%DOCSDIR%%/imagegetpixel.html %%PORTDOCS%%%%DOCSDIR%%/imageload.html %%PORTDOCS%%%%DOCSDIR%%/images/600px-Chua's_circuit.svg.png %%PORTDOCS%%%%DOCSDIR%%/images/Poisson_distribution_PMF.png %%PORTDOCS%%%%DOCSDIR%%/images/adsr.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/1.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/10.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/11.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/12.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/13.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/14.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/15.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/2.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/3.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/4.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/5.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/6.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/7.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/8.png %%PORTDOCS%%%%DOCSDIR%%/images/callouts/9.png %%PORTDOCS%%%%DOCSDIR%%/images/caution.png %%PORTDOCS%%%%DOCSDIR%%/images/delayk.png %%PORTDOCS%%%%DOCSDIR%%/images/engine.png %%PORTDOCS%%%%DOCSDIR%%/images/flanger.png %%PORTDOCS%%%%DOCSDIR%%/images/flbutbank.png %%PORTDOCS%%%%DOCSDIR%%/images/flbutton.png %%PORTDOCS%%%%DOCSDIR%%/images/flcount.png %%PORTDOCS%%%%DOCSDIR%%/images/flknob_3d.png %%PORTDOCS%%%%DOCSDIR%%/images/flknob_clock.png %%PORTDOCS%%%%DOCSDIR%%/images/flknob_flat.png %%PORTDOCS%%%%DOCSDIR%%/images/flknob_pie.png %%PORTDOCS%%%%DOCSDIR%%/images/flpack.png %%PORTDOCS%%%%DOCSDIR%%/images/flpanel.png %%PORTDOCS%%%%DOCSDIR%%/images/flroller.png %%PORTDOCS%%%%DOCSDIR%%/images/flscroll.png %%PORTDOCS%%%%DOCSDIR%%/images/flslider_horizontal-engraved.png %%PORTDOCS%%%%DOCSDIR%%/images/flslider_horizontal-fill.png %%PORTDOCS%%%%DOCSDIR%%/images/flslider_horizontal-nice.png %%PORTDOCS%%%%DOCSDIR%%/images/fltabs.png %%PORTDOCS%%%%DOCSDIR%%/images/fltabs_joysticks-tab.png %%PORTDOCS%%%%DOCSDIR%%/images/fltabs_rollers-tab.png %%PORTDOCS%%%%DOCSDIR%%/images/fltabs_sliders-tab.png %%PORTDOCS%%%%DOCSDIR%%/images/fltext.png %%PORTDOCS%%%%DOCSDIR%%/images/gen01.png %%PORTDOCS%%%%DOCSDIR%%/images/gen02.png %%PORTDOCS%%%%DOCSDIR%%/images/gen03.png %%PORTDOCS%%%%DOCSDIR%%/images/gen05.png %%PORTDOCS%%%%DOCSDIR%%/images/gen06.png %%PORTDOCS%%%%DOCSDIR%%/images/gen07.png %%PORTDOCS%%%%DOCSDIR%%/images/gen08.png %%PORTDOCS%%%%DOCSDIR%%/images/gen09.png %%PORTDOCS%%%%DOCSDIR%%/images/gen09square.png %%PORTDOCS%%%%DOCSDIR%%/images/gen10.png %%PORTDOCS%%%%DOCSDIR%%/images/gen11.png %%PORTDOCS%%%%DOCSDIR%%/images/gen12.png %%PORTDOCS%%%%DOCSDIR%%/images/gen13.png %%PORTDOCS%%%%DOCSDIR%%/images/gen14.png %%PORTDOCS%%%%DOCSDIR%%/images/gen16_types.png %%PORTDOCS%%%%DOCSDIR%%/images/gen19.png %%PORTDOCS%%%%DOCSDIR%%/images/grain2_rand-448x289.png %%PORTDOCS%%%%DOCSDIR%%/images/grain3_2.png %%PORTDOCS%%%%DOCSDIR%%/images/image1.png %%PORTDOCS%%%%DOCSDIR%%/images/image2.png %%PORTDOCS%%%%DOCSDIR%%/images/image3.png %%PORTDOCS%%%%DOCSDIR%%/images/image4.png %%PORTDOCS%%%%DOCSDIR%%/images/image5.png %%PORTDOCS%%%%DOCSDIR%%/images/image6.png %%PORTDOCS%%%%DOCSDIR%%/images/image7.png %%PORTDOCS%%%%DOCSDIR%%/images/image8.png %%PORTDOCS%%%%DOCSDIR%%/images/imode1.png %%PORTDOCS%%%%DOCSDIR%%/images/imode2.png %%PORTDOCS%%%%DOCSDIR%%/images/imode3.png %%PORTDOCS%%%%DOCSDIR%%/images/important.png %%PORTDOCS%%%%DOCSDIR%%/images/linen.jpg %%PORTDOCS%%%%DOCSDIR%%/images/noise-filter.png %%PORTDOCS%%%%DOCSDIR%%/images/note.png %%PORTDOCS%%%%DOCSDIR%%/images/pdhalf.png %%PORTDOCS%%%%DOCSDIR%%/images/pdhalfy.png %%PORTDOCS%%%%DOCSDIR%%/images/poisson_equation.png %%PORTDOCS%%%%DOCSDIR%%/images/rnd31_rand.png %%PORTDOCS%%%%DOCSDIR%%/images/sfr2.png %%PORTDOCS%%%%DOCSDIR%%/images/symbols.png %%PORTDOCS%%%%DOCSDIR%%/images/tip.png %%PORTDOCS%%%%DOCSDIR%%/images/toot07.gif %%PORTDOCS%%%%DOCSDIR%%/images/toot08.gif %%PORTDOCS%%%%DOCSDIR%%/images/toot09.gif %%PORTDOCS%%%%DOCSDIR%%/images/transeg.png %%PORTDOCS%%%%DOCSDIR%%/images/virtualkeyboard.png %%PORTDOCS%%%%DOCSDIR%%/images/warning.png %%PORTDOCS%%%%DOCSDIR%%/images/wguide1.png %%PORTDOCS%%%%DOCSDIR%%/images/wguide2.png %%PORTDOCS%%%%DOCSDIR%%/imagesave.html %%PORTDOCS%%%%DOCSDIR%%/imagesetpixel.html %%PORTDOCS%%%%DOCSDIR%%/imagesize.html %%PORTDOCS%%%%DOCSDIR%%/imidic14.html %%PORTDOCS%%%%DOCSDIR%%/imidic21.html %%PORTDOCS%%%%DOCSDIR%%/imidic7.html %%PORTDOCS%%%%DOCSDIR%%/in.html %%PORTDOCS%%%%DOCSDIR%%/in32.html %%PORTDOCS%%%%DOCSDIR%%/inch.html %%PORTDOCS%%%%DOCSDIR%%/include.html %%PORTDOCS%%%%DOCSDIR%%/index.html %%PORTDOCS%%%%DOCSDIR%%/indexframes.html %%PORTDOCS%%%%DOCSDIR%%/inh.html %%PORTDOCS%%%%DOCSDIR%%/init.html %%PORTDOCS%%%%DOCSDIR%%/initc14.html %%PORTDOCS%%%%DOCSDIR%%/initc21.html %%PORTDOCS%%%%DOCSDIR%%/initc7.html %%PORTDOCS%%%%DOCSDIR%%/inleta.html %%PORTDOCS%%%%DOCSDIR%%/inletf.html %%PORTDOCS%%%%DOCSDIR%%/inletk.html +%%PORTDOCS%%%%DOCSDIR%%/inletkid.html %%PORTDOCS%%%%DOCSDIR%%/ino.html %%PORTDOCS%%%%DOCSDIR%%/inq.html %%PORTDOCS%%%%DOCSDIR%%/inrg.html %%PORTDOCS%%%%DOCSDIR%%/ins.html %%PORTDOCS%%%%DOCSDIR%%/insglobal.html %%PORTDOCS%%%%DOCSDIR%%/insremot.html %%PORTDOCS%%%%DOCSDIR%%/instimek.html %%PORTDOCS%%%%DOCSDIR%%/instimes.html %%PORTDOCS%%%%DOCSDIR%%/instr.html %%PORTDOCS%%%%DOCSDIR%%/int.html %%PORTDOCS%%%%DOCSDIR%%/integ.html %%PORTDOCS%%%%DOCSDIR%%/interp.html %%PORTDOCS%%%%DOCSDIR%%/invalue.html %%PORTDOCS%%%%DOCSDIR%%/inx.html %%PORTDOCS%%%%DOCSDIR%%/inz.html %%PORTDOCS%%%%DOCSDIR%%/ioff.html %%PORTDOCS%%%%DOCSDIR%%/ion.html %%PORTDOCS%%%%DOCSDIR%%/iondur.html %%PORTDOCS%%%%DOCSDIR%%/iondur2.html %%PORTDOCS%%%%DOCSDIR%%/ioutat.html %%PORTDOCS%%%%DOCSDIR%%/ioutc.html %%PORTDOCS%%%%DOCSDIR%%/ioutc14.html %%PORTDOCS%%%%DOCSDIR%%/ioutpat.html %%PORTDOCS%%%%DOCSDIR%%/ioutpb.html %%PORTDOCS%%%%DOCSDIR%%/ioutpc.html %%PORTDOCS%%%%DOCSDIR%%/ipcauchy.html %%PORTDOCS%%%%DOCSDIR%%/ipoisson.html %%PORTDOCS%%%%DOCSDIR%%/ipow.html %%PORTDOCS%%%%DOCSDIR%%/is16b14.html %%PORTDOCS%%%%DOCSDIR%%/is32b14.html %%PORTDOCS%%%%DOCSDIR%%/islider16.html %%PORTDOCS%%%%DOCSDIR%%/islider32.html %%PORTDOCS%%%%DOCSDIR%%/islider64.html %%PORTDOCS%%%%DOCSDIR%%/islider8.html %%PORTDOCS%%%%DOCSDIR%%/itablecopy.html %%PORTDOCS%%%%DOCSDIR%%/itablegpw.html %%PORTDOCS%%%%DOCSDIR%%/itablemix.html %%PORTDOCS%%%%DOCSDIR%%/itablew.html %%PORTDOCS%%%%DOCSDIR%%/itrirand.html %%PORTDOCS%%%%DOCSDIR%%/iunirand.html %%PORTDOCS%%%%DOCSDIR%%/iweibull.html %%PORTDOCS%%%%DOCSDIR%%/jacktransport.html %%PORTDOCS%%%%DOCSDIR%%/jitter.html %%PORTDOCS%%%%DOCSDIR%%/jitter2.html %%PORTDOCS%%%%DOCSDIR%%/jspline.html %%PORTDOCS%%%%DOCSDIR%%/kbetarand.html %%PORTDOCS%%%%DOCSDIR%%/kbexprnd.html %%PORTDOCS%%%%DOCSDIR%%/kcauchy.html %%PORTDOCS%%%%DOCSDIR%%/kdump.html %%PORTDOCS%%%%DOCSDIR%%/kdump2.html %%PORTDOCS%%%%DOCSDIR%%/kdump3.html %%PORTDOCS%%%%DOCSDIR%%/kdump4.html %%PORTDOCS%%%%DOCSDIR%%/kexprand.html %%PORTDOCS%%%%DOCSDIR%%/kfilter2.html %%PORTDOCS%%%%DOCSDIR%%/kgauss.html %%PORTDOCS%%%%DOCSDIR%%/kgoto.html %%PORTDOCS%%%%DOCSDIR%%/klinrand.html %%PORTDOCS%%%%DOCSDIR%%/kon.html %%PORTDOCS%%%%DOCSDIR%%/koutat.html %%PORTDOCS%%%%DOCSDIR%%/koutc.html %%PORTDOCS%%%%DOCSDIR%%/koutc14.html %%PORTDOCS%%%%DOCSDIR%%/koutpat.html %%PORTDOCS%%%%DOCSDIR%%/koutpb.html %%PORTDOCS%%%%DOCSDIR%%/koutpc.html %%PORTDOCS%%%%DOCSDIR%%/kpcauchy.html %%PORTDOCS%%%%DOCSDIR%%/kpoisson.html %%PORTDOCS%%%%DOCSDIR%%/kpow.html %%PORTDOCS%%%%DOCSDIR%%/kr.html %%PORTDOCS%%%%DOCSDIR%%/kread.html %%PORTDOCS%%%%DOCSDIR%%/kread2.html %%PORTDOCS%%%%DOCSDIR%%/kread3.html %%PORTDOCS%%%%DOCSDIR%%/kread4.html %%PORTDOCS%%%%DOCSDIR%%/ksmps.html %%PORTDOCS%%%%DOCSDIR%%/ktableseg.html %%PORTDOCS%%%%DOCSDIR%%/ktrirand.html %%PORTDOCS%%%%DOCSDIR%%/kunirand.html %%PORTDOCS%%%%DOCSDIR%%/kweibull.html %%PORTDOCS%%%%DOCSDIR%%/leftbrace.html %%PORTDOCS%%%%DOCSDIR%%/lessequal.html %%PORTDOCS%%%%DOCSDIR%%/lessthan.html %%PORTDOCS%%%%DOCSDIR%%/lfo.html %%PORTDOCS%%%%DOCSDIR%%/limit.html %%PORTDOCS%%%%DOCSDIR%%/line.html %%PORTDOCS%%%%DOCSDIR%%/linearalgebraopcodes.html %%PORTDOCS%%%%DOCSDIR%%/linen.html %%PORTDOCS%%%%DOCSDIR%%/linenr.html %%PORTDOCS%%%%DOCSDIR%%/lineto.html %%PORTDOCS%%%%DOCSDIR%%/linrand.html %%PORTDOCS%%%%DOCSDIR%%/linseg.html +%%PORTDOCS%%%%DOCSDIR%%/linsegb.html %%PORTDOCS%%%%DOCSDIR%%/linsegr.html %%PORTDOCS%%%%DOCSDIR%%/locsend.html %%PORTDOCS%%%%DOCSDIR%%/locsig.html %%PORTDOCS%%%%DOCSDIR%%/log.html %%PORTDOCS%%%%DOCSDIR%%/log10.html %%PORTDOCS%%%%DOCSDIR%%/logbtwo.html %%PORTDOCS%%%%DOCSDIR%%/logcurve.html %%PORTDOCS%%%%DOCSDIR%%/loop_ge.html %%PORTDOCS%%%%DOCSDIR%%/loop_gt.html %%PORTDOCS%%%%DOCSDIR%%/loop_le.html %%PORTDOCS%%%%DOCSDIR%%/loop_lt.html %%PORTDOCS%%%%DOCSDIR%%/loopseg.html %%PORTDOCS%%%%DOCSDIR%%/loopsegp.html %%PORTDOCS%%%%DOCSDIR%%/looptseg.html %%PORTDOCS%%%%DOCSDIR%%/loopxseg.html %%PORTDOCS%%%%DOCSDIR%%/lorenz.html %%PORTDOCS%%%%DOCSDIR%%/loris.html %%PORTDOCS%%%%DOCSDIR%%/lorismorph.html %%PORTDOCS%%%%DOCSDIR%%/lorisplay.html %%PORTDOCS%%%%DOCSDIR%%/lorisread.html %%PORTDOCS%%%%DOCSDIR%%/loscil.html %%PORTDOCS%%%%DOCSDIR%%/loscil3.html %%PORTDOCS%%%%DOCSDIR%%/loscilx.html %%PORTDOCS%%%%DOCSDIR%%/lowpass2.html %%PORTDOCS%%%%DOCSDIR%%/lowres.html %%PORTDOCS%%%%DOCSDIR%%/lowresx.html %%PORTDOCS%%%%DOCSDIR%%/lpanal.html %%PORTDOCS%%%%DOCSDIR%%/lpf18.html %%PORTDOCS%%%%DOCSDIR%%/lpfreson.html %%PORTDOCS%%%%DOCSDIR%%/lphasor.html %%PORTDOCS%%%%DOCSDIR%%/lpinterp.html %%PORTDOCS%%%%DOCSDIR%%/lposcil.html %%PORTDOCS%%%%DOCSDIR%%/lposcil3.html %%PORTDOCS%%%%DOCSDIR%%/lposcila.html %%PORTDOCS%%%%DOCSDIR%%/lposcilsa.html %%PORTDOCS%%%%DOCSDIR%%/lposcilsa2.html %%PORTDOCS%%%%DOCSDIR%%/lpread.html %%PORTDOCS%%%%DOCSDIR%%/lpreson.html %%PORTDOCS%%%%DOCSDIR%%/lpshold.html %%PORTDOCS%%%%DOCSDIR%%/lpsholdp.html %%PORTDOCS%%%%DOCSDIR%%/lpslot.html +%%PORTDOCS%%%%DOCSDIR%%/lua.html +%%PORTDOCS%%%%DOCSDIR%%/lua_exec.html +%%PORTDOCS%%%%DOCSDIR%%/lua_opcall.html +%%PORTDOCS%%%%DOCSDIR%%/lua_opdef.html %%PORTDOCS%%%%DOCSDIR%%/m.html %%PORTDOCS%%%%DOCSDIR%%/mac.html %%PORTDOCS%%%%DOCSDIR%%/maca.html %%PORTDOCS%%%%DOCSDIR%%/madsr.html %%PORTDOCS%%%%DOCSDIR%%/makecsd.html %%PORTDOCS%%%%DOCSDIR%%/mandel.html %%PORTDOCS%%%%DOCSDIR%%/mandol.html %%PORTDOCS%%%%DOCSDIR%%/marimba.html %%PORTDOCS%%%%DOCSDIR%%/massign.html %%PORTDOCS%%%%DOCSDIR%%/max.html %%PORTDOCS%%%%DOCSDIR%%/max_k.html %%PORTDOCS%%%%DOCSDIR%%/maxabs.html %%PORTDOCS%%%%DOCSDIR%%/maxabsaccum.html %%PORTDOCS%%%%DOCSDIR%%/maxaccum.html %%PORTDOCS%%%%DOCSDIR%%/maxalloc.html +%%PORTDOCS%%%%DOCSDIR%%/maxtab.html %%PORTDOCS%%%%DOCSDIR%%/mclock.html %%PORTDOCS%%%%DOCSDIR%%/mdelay.html %%PORTDOCS%%%%DOCSDIR%%/median.html %%PORTDOCS%%%%DOCSDIR%%/mediank.html %%PORTDOCS%%%%DOCSDIR%%/metro.html %%PORTDOCS%%%%DOCSDIR%%/midglobal.html %%PORTDOCS%%%%DOCSDIR%%/midic14.html %%PORTDOCS%%%%DOCSDIR%%/midic21.html %%PORTDOCS%%%%DOCSDIR%%/midic7.html %%PORTDOCS%%%%DOCSDIR%%/midichannelaftertouch.html %%PORTDOCS%%%%DOCSDIR%%/midichn.html %%PORTDOCS%%%%DOCSDIR%%/midicontrolchange.html %%PORTDOCS%%%%DOCSDIR%%/midictrl.html %%PORTDOCS%%%%DOCSDIR%%/mididefault.html %%PORTDOCS%%%%DOCSDIR%%/midiin.html %%PORTDOCS%%%%DOCSDIR%%/midinoteoff.html %%PORTDOCS%%%%DOCSDIR%%/midinoteoncps.html %%PORTDOCS%%%%DOCSDIR%%/midinoteonkey.html %%PORTDOCS%%%%DOCSDIR%%/midinoteonoct.html %%PORTDOCS%%%%DOCSDIR%%/midinoteonpch.html %%PORTDOCS%%%%DOCSDIR%%/midion.html %%PORTDOCS%%%%DOCSDIR%%/midion2.html %%PORTDOCS%%%%DOCSDIR%%/midiout.html %%PORTDOCS%%%%DOCSDIR%%/midipitchbend.html %%PORTDOCS%%%%DOCSDIR%%/midipolyaftertouch.html %%PORTDOCS%%%%DOCSDIR%%/midiprogramchange.html %%PORTDOCS%%%%DOCSDIR%%/miditempo.html %%PORTDOCS%%%%DOCSDIR%%/midremot.html %%PORTDOCS%%%%DOCSDIR%%/min.html %%PORTDOCS%%%%DOCSDIR%%/minabs.html %%PORTDOCS%%%%DOCSDIR%%/minabsaccum.html %%PORTDOCS%%%%DOCSDIR%%/minaccum.html %%PORTDOCS%%%%DOCSDIR%%/mincer.html +%%PORTDOCS%%%%DOCSDIR%%/mintab.html %%PORTDOCS%%%%DOCSDIR%%/mirror.html %%PORTDOCS%%%%DOCSDIR%%/mixer.html +%%PORTDOCS%%%%DOCSDIR%%/mkdb.html %%PORTDOCS%%%%DOCSDIR%%/mode.html %%PORTDOCS%%%%DOCSDIR%%/modmatrix.html %%PORTDOCS%%%%DOCSDIR%%/modulus.html %%PORTDOCS%%%%DOCSDIR%%/monitor.html %%PORTDOCS%%%%DOCSDIR%%/moog.html %%PORTDOCS%%%%DOCSDIR%%/moogladder.html %%PORTDOCS%%%%DOCSDIR%%/moogvcf.html %%PORTDOCS%%%%DOCSDIR%%/moogvcf2.html %%PORTDOCS%%%%DOCSDIR%%/moscil.html %%PORTDOCS%%%%DOCSDIR%%/mp3in.html +%%PORTDOCS%%%%DOCSDIR%%/mp3len.html %%PORTDOCS%%%%DOCSDIR%%/mpulse.html %%PORTDOCS%%%%DOCSDIR%%/mrtmsg.html %%PORTDOCS%%%%DOCSDIR%%/multiplies.html %%PORTDOCS%%%%DOCSDIR%%/multitap.html +%%PORTDOCS%%%%DOCSDIR%%/multtab.html %%PORTDOCS%%%%DOCSDIR%%/mute.html %%PORTDOCS%%%%DOCSDIR%%/mxadsr.html %%PORTDOCS%%%%DOCSDIR%%/n.html %%PORTDOCS%%%%DOCSDIR%%/nchnls.html %%PORTDOCS%%%%DOCSDIR%%/nchnls_i.html %%PORTDOCS%%%%DOCSDIR%%/nestedap.html %%PORTDOCS%%%%DOCSDIR%%/nlfilt.html %%PORTDOCS%%%%DOCSDIR%%/noise.html %%PORTDOCS%%%%DOCSDIR%%/noteoff.html %%PORTDOCS%%%%DOCSDIR%%/noteon.html %%PORTDOCS%%%%DOCSDIR%%/noteondur.html %%PORTDOCS%%%%DOCSDIR%%/noteondur2.html %%PORTDOCS%%%%DOCSDIR%%/notequal.html %%PORTDOCS%%%%DOCSDIR%%/notnum.html %%PORTDOCS%%%%DOCSDIR%%/nreverb.html %%PORTDOCS%%%%DOCSDIR%%/nrpn.html %%PORTDOCS%%%%DOCSDIR%%/nsamp.html %%PORTDOCS%%%%DOCSDIR%%/nstrnum.html %%PORTDOCS%%%%DOCSDIR%%/ntrpol.html %%PORTDOCS%%%%DOCSDIR%%/octave.html %%PORTDOCS%%%%DOCSDIR%%/octcps.html %%PORTDOCS%%%%DOCSDIR%%/octmidi.html %%PORTDOCS%%%%DOCSDIR%%/octmidib.html %%PORTDOCS%%%%DOCSDIR%%/octmidinn.html %%PORTDOCS%%%%DOCSDIR%%/octpch.html %%PORTDOCS%%%%DOCSDIR%%/opa.html %%PORTDOCS%%%%DOCSDIR%%/opand.html %%PORTDOCS%%%%DOCSDIR%%/opbitand.html %%PORTDOCS%%%%DOCSDIR%%/opbitnot.html %%PORTDOCS%%%%DOCSDIR%%/opbitor.html %%PORTDOCS%%%%DOCSDIR%%/opbitshl.html %%PORTDOCS%%%%DOCSDIR%%/opbitshr.html %%PORTDOCS%%%%DOCSDIR%%/opcode.html %%PORTDOCS%%%%DOCSDIR%%/opi.html %%PORTDOCS%%%%DOCSDIR%%/opk.html %%PORTDOCS%%%%DOCSDIR%%/opnonequiv.html %%PORTDOCS%%%%DOCSDIR%%/opor.html %%PORTDOCS%%%%DOCSDIR%%/oscbnk.html %%PORTDOCS%%%%DOCSDIR%%/oscil.html %%PORTDOCS%%%%DOCSDIR%%/oscil1.html %%PORTDOCS%%%%DOCSDIR%%/oscil1i.html %%PORTDOCS%%%%DOCSDIR%%/oscil3.html %%PORTDOCS%%%%DOCSDIR%%/oscili.html %%PORTDOCS%%%%DOCSDIR%%/oscilikt.html %%PORTDOCS%%%%DOCSDIR%%/osciliktp.html %%PORTDOCS%%%%DOCSDIR%%/oscilikts.html %%PORTDOCS%%%%DOCSDIR%%/osciln.html %%PORTDOCS%%%%DOCSDIR%%/oscils.html %%PORTDOCS%%%%DOCSDIR%%/oscilx.html %%PORTDOCS%%%%DOCSDIR%%/out.html %%PORTDOCS%%%%DOCSDIR%%/out32.html %%PORTDOCS%%%%DOCSDIR%%/outc.html %%PORTDOCS%%%%DOCSDIR%%/outch.html %%PORTDOCS%%%%DOCSDIR%%/outh.html %%PORTDOCS%%%%DOCSDIR%%/outiat.html %%PORTDOCS%%%%DOCSDIR%%/outic.html %%PORTDOCS%%%%DOCSDIR%%/outic14.html %%PORTDOCS%%%%DOCSDIR%%/outipat.html %%PORTDOCS%%%%DOCSDIR%%/outipb.html %%PORTDOCS%%%%DOCSDIR%%/outipc.html %%PORTDOCS%%%%DOCSDIR%%/outkat.html %%PORTDOCS%%%%DOCSDIR%%/outkc.html %%PORTDOCS%%%%DOCSDIR%%/outkc14.html %%PORTDOCS%%%%DOCSDIR%%/outkpat.html %%PORTDOCS%%%%DOCSDIR%%/outkpb.html %%PORTDOCS%%%%DOCSDIR%%/outkpc.html %%PORTDOCS%%%%DOCSDIR%%/outleta.html %%PORTDOCS%%%%DOCSDIR%%/outletf.html %%PORTDOCS%%%%DOCSDIR%%/outletk.html +%%PORTDOCS%%%%DOCSDIR%%/outletkid.html %%PORTDOCS%%%%DOCSDIR%%/outo.html %%PORTDOCS%%%%DOCSDIR%%/outq.html %%PORTDOCS%%%%DOCSDIR%%/outq1.html %%PORTDOCS%%%%DOCSDIR%%/outq2.html %%PORTDOCS%%%%DOCSDIR%%/outq3.html %%PORTDOCS%%%%DOCSDIR%%/outq4.html %%PORTDOCS%%%%DOCSDIR%%/outrg.html %%PORTDOCS%%%%DOCSDIR%%/outs.html %%PORTDOCS%%%%DOCSDIR%%/outs1.html %%PORTDOCS%%%%DOCSDIR%%/outs2.html %%PORTDOCS%%%%DOCSDIR%%/outvalue.html %%PORTDOCS%%%%DOCSDIR%%/outx.html %%PORTDOCS%%%%DOCSDIR%%/outz.html %%PORTDOCS%%%%DOCSDIR%%/p.html %%PORTDOCS%%%%DOCSDIR%%/p5gconnect.html %%PORTDOCS%%%%DOCSDIR%%/p5gdata.html %%PORTDOCS%%%%DOCSDIR%%/pan.html %%PORTDOCS%%%%DOCSDIR%%/pan2.html %%PORTDOCS%%%%DOCSDIR%%/pareq.html %%PORTDOCS%%%%DOCSDIR%%/partials.html %%PORTDOCS%%%%DOCSDIR%%/partikkel.html %%PORTDOCS%%%%DOCSDIR%%/partikkelsync.html %%PORTDOCS%%%%DOCSDIR%%/passign.html %%PORTDOCS%%%%DOCSDIR%%/pcauchy.html %%PORTDOCS%%%%DOCSDIR%%/pchbend.html %%PORTDOCS%%%%DOCSDIR%%/pchmidi.html %%PORTDOCS%%%%DOCSDIR%%/pchmidib.html %%PORTDOCS%%%%DOCSDIR%%/pchmidinn.html %%PORTDOCS%%%%DOCSDIR%%/pchoct.html %%PORTDOCS%%%%DOCSDIR%%/pconvolve.html %%PORTDOCS%%%%DOCSDIR%%/pcount.html %%PORTDOCS%%%%DOCSDIR%%/pdclip.html %%PORTDOCS%%%%DOCSDIR%%/pdhalf.html %%PORTDOCS%%%%DOCSDIR%%/pdhalfy.html %%PORTDOCS%%%%DOCSDIR%%/peak.html %%PORTDOCS%%%%DOCSDIR%%/peakk.html %%PORTDOCS%%%%DOCSDIR%%/pgmassign.html %%PORTDOCS%%%%DOCSDIR%%/phaser1.html %%PORTDOCS%%%%DOCSDIR%%/phaser2.html %%PORTDOCS%%%%DOCSDIR%%/phasor.html %%PORTDOCS%%%%DOCSDIR%%/phasorbnk.html %%PORTDOCS%%%%DOCSDIR%%/pindex.html %%PORTDOCS%%%%DOCSDIR%%/pinkish.html %%PORTDOCS%%%%DOCSDIR%%/pitch.html %%PORTDOCS%%%%DOCSDIR%%/pitchamdf.html %%PORTDOCS%%%%DOCSDIR%%/planet.html %%PORTDOCS%%%%DOCSDIR%%/pluck.html +%%PORTDOCS%%%%DOCSDIR%%/plustab.html %%PORTDOCS%%%%DOCSDIR%%/poisson.html %%PORTDOCS%%%%DOCSDIR%%/polyaft.html %%PORTDOCS%%%%DOCSDIR%%/polynomial.html %%PORTDOCS%%%%DOCSDIR%%/pop.html %%PORTDOCS%%%%DOCSDIR%%/pop_f.html %%PORTDOCS%%%%DOCSDIR%%/port.html %%PORTDOCS%%%%DOCSDIR%%/portk.html %%PORTDOCS%%%%DOCSDIR%%/poscil.html %%PORTDOCS%%%%DOCSDIR%%/poscil3.html %%PORTDOCS%%%%DOCSDIR%%/pow.html %%PORTDOCS%%%%DOCSDIR%%/powershape.html %%PORTDOCS%%%%DOCSDIR%%/powoftwo.html %%PORTDOCS%%%%DOCSDIR%%/prealloc.html %%PORTDOCS%%%%DOCSDIR%%/prepiano.html %%PORTDOCS%%%%DOCSDIR%%/print.html %%PORTDOCS%%%%DOCSDIR%%/printf.html %%PORTDOCS%%%%DOCSDIR%%/printk.html %%PORTDOCS%%%%DOCSDIR%%/printk2.html %%PORTDOCS%%%%DOCSDIR%%/printks.html %%PORTDOCS%%%%DOCSDIR%%/prints.html %%PORTDOCS%%%%DOCSDIR%%/product.html %%PORTDOCS%%%%DOCSDIR%%/pset.html %%PORTDOCS%%%%DOCSDIR%%/pt04.html %%PORTDOCS%%%%DOCSDIR%%/ptrack.html %%PORTDOCS%%%%DOCSDIR%%/push.html %%PORTDOCS%%%%DOCSDIR%%/push_f.html %%PORTDOCS%%%%DOCSDIR%%/puts.html %%PORTDOCS%%%%DOCSDIR%%/pv_export.html %%PORTDOCS%%%%DOCSDIR%%/pv_import.html %%PORTDOCS%%%%DOCSDIR%%/pvadd.html %%PORTDOCS%%%%DOCSDIR%%/pvanal.html %%PORTDOCS%%%%DOCSDIR%%/pvbufread.html %%PORTDOCS%%%%DOCSDIR%%/pvcross.html %%PORTDOCS%%%%DOCSDIR%%/pvinterp.html %%PORTDOCS%%%%DOCSDIR%%/pvlook.html %%PORTDOCS%%%%DOCSDIR%%/pvoc.html %%PORTDOCS%%%%DOCSDIR%%/pvread.html +%%PORTDOCS%%%%DOCSDIR%%/pvs2tab.html %%PORTDOCS%%%%DOCSDIR%%/pvsadsyn.html %%PORTDOCS%%%%DOCSDIR%%/pvsanal.html %%PORTDOCS%%%%DOCSDIR%%/pvsarp.html %%PORTDOCS%%%%DOCSDIR%%/pvsbandp.html %%PORTDOCS%%%%DOCSDIR%%/pvsbandr.html %%PORTDOCS%%%%DOCSDIR%%/pvsbin.html %%PORTDOCS%%%%DOCSDIR%%/pvsblur.html %%PORTDOCS%%%%DOCSDIR%%/pvsbuffer.html %%PORTDOCS%%%%DOCSDIR%%/pvsbufread.html +%%PORTDOCS%%%%DOCSDIR%%/pvsbufread2.html %%PORTDOCS%%%%DOCSDIR%%/pvscale.html %%PORTDOCS%%%%DOCSDIR%%/pvscent.html %%PORTDOCS%%%%DOCSDIR%%/pvscross.html %%PORTDOCS%%%%DOCSDIR%%/pvsdemix.html %%PORTDOCS%%%%DOCSDIR%%/pvsdiskin.html %%PORTDOCS%%%%DOCSDIR%%/pvsdisp.html %%PORTDOCS%%%%DOCSDIR%%/pvsfilter.html %%PORTDOCS%%%%DOCSDIR%%/pvsfread.html %%PORTDOCS%%%%DOCSDIR%%/pvsfreeze.html %%PORTDOCS%%%%DOCSDIR%%/pvsftr.html %%PORTDOCS%%%%DOCSDIR%%/pvsftw.html %%PORTDOCS%%%%DOCSDIR%%/pvsfwrite.html +%%PORTDOCS%%%%DOCSDIR%%/pvsgain.html %%PORTDOCS%%%%DOCSDIR%%/pvshift.html %%PORTDOCS%%%%DOCSDIR%%/pvsifd.html %%PORTDOCS%%%%DOCSDIR%%/pvsin.html %%PORTDOCS%%%%DOCSDIR%%/pvsinfo.html %%PORTDOCS%%%%DOCSDIR%%/pvsinit.html %%PORTDOCS%%%%DOCSDIR%%/pvslock.html %%PORTDOCS%%%%DOCSDIR%%/pvsmaska.html %%PORTDOCS%%%%DOCSDIR%%/pvsmix.html %%PORTDOCS%%%%DOCSDIR%%/pvsmooth.html %%PORTDOCS%%%%DOCSDIR%%/pvsmorph.html %%PORTDOCS%%%%DOCSDIR%%/pvsosc.html %%PORTDOCS%%%%DOCSDIR%%/pvsout.html %%PORTDOCS%%%%DOCSDIR%%/pvspitch.html %%PORTDOCS%%%%DOCSDIR%%/pvstanal.html %%PORTDOCS%%%%DOCSDIR%%/pvstencil.html %%PORTDOCS%%%%DOCSDIR%%/pvsvoc.html %%PORTDOCS%%%%DOCSDIR%%/pvswarp.html %%PORTDOCS%%%%DOCSDIR%%/pvsynth.html %%PORTDOCS%%%%DOCSDIR%%/py.html %%PORTDOCS%%%%DOCSDIR%%/pyassign.html %%PORTDOCS%%%%DOCSDIR%%/pycall.html %%PORTDOCS%%%%DOCSDIR%%/pyeval.html %%PORTDOCS%%%%DOCSDIR%%/pyexec.html %%PORTDOCS%%%%DOCSDIR%%/pyinit.html %%PORTDOCS%%%%DOCSDIR%%/pyrun.html %%PORTDOCS%%%%DOCSDIR%%/q.html +%%PORTDOCS%%%%DOCSDIR%%/qinf.html +%%PORTDOCS%%%%DOCSDIR%%/qnan.html %%PORTDOCS%%%%DOCSDIR%%/r.html %%PORTDOCS%%%%DOCSDIR%%/raises.html %%PORTDOCS%%%%DOCSDIR%%/rand.html %%PORTDOCS%%%%DOCSDIR%%/randh.html %%PORTDOCS%%%%DOCSDIR%%/randi.html %%PORTDOCS%%%%DOCSDIR%%/random.html %%PORTDOCS%%%%DOCSDIR%%/randomh.html %%PORTDOCS%%%%DOCSDIR%%/randomi.html %%PORTDOCS%%%%DOCSDIR%%/rbjeq.html %%PORTDOCS%%%%DOCSDIR%%/readclock.html %%PORTDOCS%%%%DOCSDIR%%/readk.html %%PORTDOCS%%%%DOCSDIR%%/readk2.html %%PORTDOCS%%%%DOCSDIR%%/readk3.html %%PORTDOCS%%%%DOCSDIR%%/readk4.html %%PORTDOCS%%%%DOCSDIR%%/reinit.html %%PORTDOCS%%%%DOCSDIR%%/release.html %%PORTDOCS%%%%DOCSDIR%%/remoteport.html %%PORTDOCS%%%%DOCSDIR%%/remove.html %%PORTDOCS%%%%DOCSDIR%%/repluck.html %%PORTDOCS%%%%DOCSDIR%%/reson.html %%PORTDOCS%%%%DOCSDIR%%/resonk.html %%PORTDOCS%%%%DOCSDIR%%/resonr.html %%PORTDOCS%%%%DOCSDIR%%/resonx.html %%PORTDOCS%%%%DOCSDIR%%/resonxk.html %%PORTDOCS%%%%DOCSDIR%%/resony.html %%PORTDOCS%%%%DOCSDIR%%/resonz.html %%PORTDOCS%%%%DOCSDIR%%/resyn.html %%PORTDOCS%%%%DOCSDIR%%/reverb.html %%PORTDOCS%%%%DOCSDIR%%/reverb2.html %%PORTDOCS%%%%DOCSDIR%%/reverbsc.html %%PORTDOCS%%%%DOCSDIR%%/rewindscore.html %%PORTDOCS%%%%DOCSDIR%%/rezzy.html %%PORTDOCS%%%%DOCSDIR%%/rightbrace.html %%PORTDOCS%%%%DOCSDIR%%/rigoto.html %%PORTDOCS%%%%DOCSDIR%%/rireturn.html %%PORTDOCS%%%%DOCSDIR%%/rms.html %%PORTDOCS%%%%DOCSDIR%%/rnd.html %%PORTDOCS%%%%DOCSDIR%%/rnd31.html %%PORTDOCS%%%%DOCSDIR%%/round.html %%PORTDOCS%%%%DOCSDIR%%/rspline.html %%PORTDOCS%%%%DOCSDIR%%/rtclock.html %%PORTDOCS%%%%DOCSDIR%%/s.html %%PORTDOCS%%%%DOCSDIR%%/s16b14.html %%PORTDOCS%%%%DOCSDIR%%/s32b14.html %%PORTDOCS%%%%DOCSDIR%%/samphold.html %%PORTDOCS%%%%DOCSDIR%%/sandpaper.html %%PORTDOCS%%%%DOCSDIR%%/scale.html +%%PORTDOCS%%%%DOCSDIR%%/scalet.html %%PORTDOCS%%%%DOCSDIR%%/scaleutility.html %%PORTDOCS%%%%DOCSDIR%%/scanhammer.html %%PORTDOCS%%%%DOCSDIR%%/scans.html %%PORTDOCS%%%%DOCSDIR%%/scantable.html %%PORTDOCS%%%%DOCSDIR%%/scanu.html %%PORTDOCS%%%%DOCSDIR%%/schedkwhen.html %%PORTDOCS%%%%DOCSDIR%%/schedkwhennamed.html %%PORTDOCS%%%%DOCSDIR%%/schedule.html %%PORTDOCS%%%%DOCSDIR%%/schedwhen.html %%PORTDOCS%%%%DOCSDIR%%/scoreline.html %%PORTDOCS%%%%DOCSDIR%%/scoreline_i.html %%PORTDOCS%%%%DOCSDIR%%/sdif2ad.html %%PORTDOCS%%%%DOCSDIR%%/seed.html %%PORTDOCS%%%%DOCSDIR%%/sekere.html %%PORTDOCS%%%%DOCSDIR%%/semitone.html %%PORTDOCS%%%%DOCSDIR%%/sense.html %%PORTDOCS%%%%DOCSDIR%%/sensekey.html %%PORTDOCS%%%%DOCSDIR%%/seqtime.html %%PORTDOCS%%%%DOCSDIR%%/seqtime2.html +%%PORTDOCS%%%%DOCSDIR%%/serialBegin.html +%%PORTDOCS%%%%DOCSDIR%%/serialEnd.html +%%PORTDOCS%%%%DOCSDIR%%/serialFlush.html +%%PORTDOCS%%%%DOCSDIR%%/serialPrint.html +%%PORTDOCS%%%%DOCSDIR%%/serialRead.html +%%PORTDOCS%%%%DOCSDIR%%/serialWrite.html +%%PORTDOCS%%%%DOCSDIR%%/serialWrite_i.html %%PORTDOCS%%%%DOCSDIR%%/setctrl.html %%PORTDOCS%%%%DOCSDIR%%/setksmps.html %%PORTDOCS%%%%DOCSDIR%%/setscorepos.html %%PORTDOCS%%%%DOCSDIR%%/sfilist.html %%PORTDOCS%%%%DOCSDIR%%/sfinstr.html %%PORTDOCS%%%%DOCSDIR%%/sfinstr3.html %%PORTDOCS%%%%DOCSDIR%%/sfinstr3m.html %%PORTDOCS%%%%DOCSDIR%%/sfinstrm.html %%PORTDOCS%%%%DOCSDIR%%/sfload.html %%PORTDOCS%%%%DOCSDIR%%/sflooper.html %%PORTDOCS%%%%DOCSDIR%%/sfpassign.html %%PORTDOCS%%%%DOCSDIR%%/sfplay.html %%PORTDOCS%%%%DOCSDIR%%/sfplay3.html %%PORTDOCS%%%%DOCSDIR%%/sfplay3m.html %%PORTDOCS%%%%DOCSDIR%%/sfplaym.html %%PORTDOCS%%%%DOCSDIR%%/sfplist.html %%PORTDOCS%%%%DOCSDIR%%/sfpreset.html %%PORTDOCS%%%%DOCSDIR%%/shaker.html %%PORTDOCS%%%%DOCSDIR%%/sin.html %%PORTDOCS%%%%DOCSDIR%%/sinh.html %%PORTDOCS%%%%DOCSDIR%%/sininv.html %%PORTDOCS%%%%DOCSDIR%%/sinsyn.html %%PORTDOCS%%%%DOCSDIR%%/sleighbells.html %%PORTDOCS%%%%DOCSDIR%%/slider16.html %%PORTDOCS%%%%DOCSDIR%%/slider16f.html %%PORTDOCS%%%%DOCSDIR%%/slider16table.html %%PORTDOCS%%%%DOCSDIR%%/slider16tablef.html %%PORTDOCS%%%%DOCSDIR%%/slider32.html %%PORTDOCS%%%%DOCSDIR%%/slider32f.html %%PORTDOCS%%%%DOCSDIR%%/slider32table.html %%PORTDOCS%%%%DOCSDIR%%/slider32tablef.html %%PORTDOCS%%%%DOCSDIR%%/slider64.html %%PORTDOCS%%%%DOCSDIR%%/slider64f.html %%PORTDOCS%%%%DOCSDIR%%/slider64table.html %%PORTDOCS%%%%DOCSDIR%%/slider64tablef.html %%PORTDOCS%%%%DOCSDIR%%/slider8.html %%PORTDOCS%%%%DOCSDIR%%/slider8f.html %%PORTDOCS%%%%DOCSDIR%%/slider8table.html %%PORTDOCS%%%%DOCSDIR%%/slider8tablef.html %%PORTDOCS%%%%DOCSDIR%%/sliderKawai.html %%PORTDOCS%%%%DOCSDIR%%/sndinfo.html %%PORTDOCS%%%%DOCSDIR%%/sndload.html %%PORTDOCS%%%%DOCSDIR%%/sndloop.html %%PORTDOCS%%%%DOCSDIR%%/sndwarp.html %%PORTDOCS%%%%DOCSDIR%%/sndwarpst.html %%PORTDOCS%%%%DOCSDIR%%/sockrecv.html %%PORTDOCS%%%%DOCSDIR%%/socksend.html %%PORTDOCS%%%%DOCSDIR%%/soundin.html %%PORTDOCS%%%%DOCSDIR%%/soundout.html %%PORTDOCS%%%%DOCSDIR%%/soundouts.html %%PORTDOCS%%%%DOCSDIR%%/space.html %%PORTDOCS%%%%DOCSDIR%%/spat3d.html %%PORTDOCS%%%%DOCSDIR%%/spat3di.html %%PORTDOCS%%%%DOCSDIR%%/spat3dt.html %%PORTDOCS%%%%DOCSDIR%%/spdist.html %%PORTDOCS%%%%DOCSDIR%%/specaddm.html %%PORTDOCS%%%%DOCSDIR%%/specdiff.html %%PORTDOCS%%%%DOCSDIR%%/specdisp.html %%PORTDOCS%%%%DOCSDIR%%/specfilt.html %%PORTDOCS%%%%DOCSDIR%%/spechist.html %%PORTDOCS%%%%DOCSDIR%%/specptrk.html %%PORTDOCS%%%%DOCSDIR%%/specscal.html %%PORTDOCS%%%%DOCSDIR%%/specsum.html %%PORTDOCS%%%%DOCSDIR%%/spectrum.html %%PORTDOCS%%%%DOCSDIR%%/splitrig.html %%PORTDOCS%%%%DOCSDIR%%/sprintf.html %%PORTDOCS%%%%DOCSDIR%%/sprintfk.html %%PORTDOCS%%%%DOCSDIR%%/spsend.html %%PORTDOCS%%%%DOCSDIR%%/sqrt.html %%PORTDOCS%%%%DOCSDIR%%/sr.html %%PORTDOCS%%%%DOCSDIR%%/srconv.html %%PORTDOCS%%%%DOCSDIR%%/stack.html %%PORTDOCS%%%%DOCSDIR%%/statevar.html %%PORTDOCS%%%%DOCSDIR%%/stix.html %%PORTDOCS%%%%DOCSDIR%%/strcat.html %%PORTDOCS%%%%DOCSDIR%%/strcatk.html %%PORTDOCS%%%%DOCSDIR%%/strchar.html %%PORTDOCS%%%%DOCSDIR%%/strchark.html %%PORTDOCS%%%%DOCSDIR%%/strcmp.html %%PORTDOCS%%%%DOCSDIR%%/strcmpk.html %%PORTDOCS%%%%DOCSDIR%%/strcpy.html %%PORTDOCS%%%%DOCSDIR%%/strcpyk.html %%PORTDOCS%%%%DOCSDIR%%/streson.html %%PORTDOCS%%%%DOCSDIR%%/strget.html %%PORTDOCS%%%%DOCSDIR%%/strindex.html %%PORTDOCS%%%%DOCSDIR%%/strindexk.html %%PORTDOCS%%%%DOCSDIR%%/stringconvert.html %%PORTDOCS%%%%DOCSDIR%%/strlen.html %%PORTDOCS%%%%DOCSDIR%%/strlenk.html %%PORTDOCS%%%%DOCSDIR%%/strlower.html %%PORTDOCS%%%%DOCSDIR%%/strlowerk.html %%PORTDOCS%%%%DOCSDIR%%/strrindex.html %%PORTDOCS%%%%DOCSDIR%%/strrindexk.html %%PORTDOCS%%%%DOCSDIR%%/strset.html %%PORTDOCS%%%%DOCSDIR%%/strsub.html %%PORTDOCS%%%%DOCSDIR%%/strsubk.html %%PORTDOCS%%%%DOCSDIR%%/strtod.html %%PORTDOCS%%%%DOCSDIR%%/strtodk.html %%PORTDOCS%%%%DOCSDIR%%/strtol.html %%PORTDOCS%%%%DOCSDIR%%/strtolk.html %%PORTDOCS%%%%DOCSDIR%%/strupper.html %%PORTDOCS%%%%DOCSDIR%%/strupperk.html %%PORTDOCS%%%%DOCSDIR%%/subinstr.html %%PORTDOCS%%%%DOCSDIR%%/subinstrinit.html %%PORTDOCS%%%%DOCSDIR%%/subtracts.html %%PORTDOCS%%%%DOCSDIR%%/sum.html +%%PORTDOCS%%%%DOCSDIR%%/sumtab.html %%PORTDOCS%%%%DOCSDIR%%/svfilter.html %%PORTDOCS%%%%DOCSDIR%%/syncgrain.html %%PORTDOCS%%%%DOCSDIR%%/syncloop.html %%PORTDOCS%%%%DOCSDIR%%/syncphasor.html %%PORTDOCS%%%%DOCSDIR%%/system.html %%PORTDOCS%%%%DOCSDIR%%/t.html %%PORTDOCS%%%%DOCSDIR%%/tab.html +%%PORTDOCS%%%%DOCSDIR%%/tab2pvs.html %%PORTDOCS%%%%DOCSDIR%%/table.html %%PORTDOCS%%%%DOCSDIR%%/table3.html %%PORTDOCS%%%%DOCSDIR%%/tablecopy.html %%PORTDOCS%%%%DOCSDIR%%/tablefilter.html %%PORTDOCS%%%%DOCSDIR%%/tablefilteri.html %%PORTDOCS%%%%DOCSDIR%%/tablegpw.html %%PORTDOCS%%%%DOCSDIR%%/tablei.html %%PORTDOCS%%%%DOCSDIR%%/tableicopy.html %%PORTDOCS%%%%DOCSDIR%%/tableigpw.html %%PORTDOCS%%%%DOCSDIR%%/tableikt.html %%PORTDOCS%%%%DOCSDIR%%/tableimix.html %%PORTDOCS%%%%DOCSDIR%%/tableiw.html %%PORTDOCS%%%%DOCSDIR%%/tablekt.html %%PORTDOCS%%%%DOCSDIR%%/tablemix.html %%PORTDOCS%%%%DOCSDIR%%/tableng.html %%PORTDOCS%%%%DOCSDIR%%/tablera.html %%PORTDOCS%%%%DOCSDIR%%/tableseg.html %%PORTDOCS%%%%DOCSDIR%%/tableshuffle.html %%PORTDOCS%%%%DOCSDIR%%/tablew.html %%PORTDOCS%%%%DOCSDIR%%/tablewa.html %%PORTDOCS%%%%DOCSDIR%%/tablewkt.html %%PORTDOCS%%%%DOCSDIR%%/tablexkt.html %%PORTDOCS%%%%DOCSDIR%%/tablexseg.html %%PORTDOCS%%%%DOCSDIR%%/tabmorph.html %%PORTDOCS%%%%DOCSDIR%%/tabmorpha.html %%PORTDOCS%%%%DOCSDIR%%/tabmorphak.html %%PORTDOCS%%%%DOCSDIR%%/tabmorphi.html %%PORTDOCS%%%%DOCSDIR%%/tabplay.html %%PORTDOCS%%%%DOCSDIR%%/tabrec.html %%PORTDOCS%%%%DOCSDIR%%/tabsum.html %%PORTDOCS%%%%DOCSDIR%%/tambourine.html %%PORTDOCS%%%%DOCSDIR%%/tan.html %%PORTDOCS%%%%DOCSDIR%%/tanh.html %%PORTDOCS%%%%DOCSDIR%%/taninv.html %%PORTDOCS%%%%DOCSDIR%%/taninv2.html %%PORTDOCS%%%%DOCSDIR%%/tb.html %%PORTDOCS%%%%DOCSDIR%%/tbvcf.html %%PORTDOCS%%%%DOCSDIR%%/tclcsound.html %%PORTDOCS%%%%DOCSDIR%%/tclrefe.html %%PORTDOCS%%%%DOCSDIR%%/tclscripting.html %%PORTDOCS%%%%DOCSDIR%%/tclwrapper.html %%PORTDOCS%%%%DOCSDIR%%/tempest.html %%PORTDOCS%%%%DOCSDIR%%/tempo.html %%PORTDOCS%%%%DOCSDIR%%/temposcal.html %%PORTDOCS%%%%DOCSDIR%%/tempoval.html %%PORTDOCS%%%%DOCSDIR%%/tigoto.html %%PORTDOCS%%%%DOCSDIR%%/timedseq.html %%PORTDOCS%%%%DOCSDIR%%/timeinstk.html %%PORTDOCS%%%%DOCSDIR%%/timeinsts.html %%PORTDOCS%%%%DOCSDIR%%/timek.html %%PORTDOCS%%%%DOCSDIR%%/times.html %%PORTDOCS%%%%DOCSDIR%%/timout.html %%PORTDOCS%%%%DOCSDIR%%/title.html %%PORTDOCS%%%%DOCSDIR%%/tival.html %%PORTDOCS%%%%DOCSDIR%%/tlineto.html %%PORTDOCS%%%%DOCSDIR%%/tone.html %%PORTDOCS%%%%DOCSDIR%%/tonek.html %%PORTDOCS%%%%DOCSDIR%%/tonex.html %%PORTDOCS%%%%DOCSDIR%%/tradsyn.html %%PORTDOCS%%%%DOCSDIR%%/trandom.html %%PORTDOCS%%%%DOCSDIR%%/transeg.html +%%PORTDOCS%%%%DOCSDIR%%/transegb.html %%PORTDOCS%%%%DOCSDIR%%/transegr.html %%PORTDOCS%%%%DOCSDIR%%/trcross.html %%PORTDOCS%%%%DOCSDIR%%/trfilter.html %%PORTDOCS%%%%DOCSDIR%%/trhighest.html %%PORTDOCS%%%%DOCSDIR%%/trigger.html %%PORTDOCS%%%%DOCSDIR%%/trigseq.html %%PORTDOCS%%%%DOCSDIR%%/trirand.html %%PORTDOCS%%%%DOCSDIR%%/trlowest.html %%PORTDOCS%%%%DOCSDIR%%/trmix.html %%PORTDOCS%%%%DOCSDIR%%/trscale.html %%PORTDOCS%%%%DOCSDIR%%/trshift.html %%PORTDOCS%%%%DOCSDIR%%/trsplit.html %%PORTDOCS%%%%DOCSDIR%%/turnoff.html %%PORTDOCS%%%%DOCSDIR%%/turnoff2.html %%PORTDOCS%%%%DOCSDIR%%/turnon.html %%PORTDOCS%%%%DOCSDIR%%/undef.html %%PORTDOCS%%%%DOCSDIR%%/unirand.html +%%PORTDOCS%%%%DOCSDIR%%/until.html %%PORTDOCS%%%%DOCSDIR%%/upsamp.html %%PORTDOCS%%%%DOCSDIR%%/urandom.html %%PORTDOCS%%%%DOCSDIR%%/urd.html %%PORTDOCS%%%%DOCSDIR%%/v.html %%PORTDOCS%%%%DOCSDIR%%/vadd.html %%PORTDOCS%%%%DOCSDIR%%/vadd_i.html %%PORTDOCS%%%%DOCSDIR%%/vaddv.html %%PORTDOCS%%%%DOCSDIR%%/vaddv_i.html %%PORTDOCS%%%%DOCSDIR%%/vaget.html %%PORTDOCS%%%%DOCSDIR%%/valpass.html %%PORTDOCS%%%%DOCSDIR%%/vaset.html %%PORTDOCS%%%%DOCSDIR%%/vbap16.html %%PORTDOCS%%%%DOCSDIR%%/vbap16move.html %%PORTDOCS%%%%DOCSDIR%%/vbap4.html %%PORTDOCS%%%%DOCSDIR%%/vbap4move.html %%PORTDOCS%%%%DOCSDIR%%/vbap8.html %%PORTDOCS%%%%DOCSDIR%%/vbap8move.html %%PORTDOCS%%%%DOCSDIR%%/vbaplsinit.html %%PORTDOCS%%%%DOCSDIR%%/vbapz.html %%PORTDOCS%%%%DOCSDIR%%/vbapzmove.html %%PORTDOCS%%%%DOCSDIR%%/vcella.html %%PORTDOCS%%%%DOCSDIR%%/vco.html %%PORTDOCS%%%%DOCSDIR%%/vco2.html %%PORTDOCS%%%%DOCSDIR%%/vco2ft.html %%PORTDOCS%%%%DOCSDIR%%/vco2ift.html %%PORTDOCS%%%%DOCSDIR%%/vco2init.html %%PORTDOCS%%%%DOCSDIR%%/vcomb.html %%PORTDOCS%%%%DOCSDIR%%/vcopy.html %%PORTDOCS%%%%DOCSDIR%%/vcopy_i.html %%PORTDOCS%%%%DOCSDIR%%/vdelay.html %%PORTDOCS%%%%DOCSDIR%%/vdelay3.html %%PORTDOCS%%%%DOCSDIR%%/vdelayk.html %%PORTDOCS%%%%DOCSDIR%%/vdelayx.html %%PORTDOCS%%%%DOCSDIR%%/vdelayxq.html %%PORTDOCS%%%%DOCSDIR%%/vdelayxs.html %%PORTDOCS%%%%DOCSDIR%%/vdelayxw.html %%PORTDOCS%%%%DOCSDIR%%/vdelayxwq.html %%PORTDOCS%%%%DOCSDIR%%/vdelayxws.html %%PORTDOCS%%%%DOCSDIR%%/vdivv.html %%PORTDOCS%%%%DOCSDIR%%/vdivv_i.html %%PORTDOCS%%%%DOCSDIR%%/vecdelay.html %%PORTDOCS%%%%DOCSDIR%%/vectorial.html %%PORTDOCS%%%%DOCSDIR%%/vectorialdelay.html %%PORTDOCS%%%%DOCSDIR%%/vectorialimiting.html %%PORTDOCS%%%%DOCSDIR%%/vectorialrandom.html %%PORTDOCS%%%%DOCSDIR%%/vectorialscalar.html %%PORTDOCS%%%%DOCSDIR%%/vectorialvectorial.html %%PORTDOCS%%%%DOCSDIR%%/veloc.html %%PORTDOCS%%%%DOCSDIR%%/vexp.html %%PORTDOCS%%%%DOCSDIR%%/vexp_i.html %%PORTDOCS%%%%DOCSDIR%%/vexpseg.html %%PORTDOCS%%%%DOCSDIR%%/vexpv.html %%PORTDOCS%%%%DOCSDIR%%/vexpv_i.html %%PORTDOCS%%%%DOCSDIR%%/vibes.html %%PORTDOCS%%%%DOCSDIR%%/vibr.html %%PORTDOCS%%%%DOCSDIR%%/vibrato.html %%PORTDOCS%%%%DOCSDIR%%/vincr.html %%PORTDOCS%%%%DOCSDIR%%/vlimit.html %%PORTDOCS%%%%DOCSDIR%%/vlinseg.html %%PORTDOCS%%%%DOCSDIR%%/vlowres.html %%PORTDOCS%%%%DOCSDIR%%/vmap.html %%PORTDOCS%%%%DOCSDIR%%/vmirror.html %%PORTDOCS%%%%DOCSDIR%%/vmult.html %%PORTDOCS%%%%DOCSDIR%%/vmult_i.html %%PORTDOCS%%%%DOCSDIR%%/vmultv.html %%PORTDOCS%%%%DOCSDIR%%/vmultv_i.html %%PORTDOCS%%%%DOCSDIR%%/voice.html %%PORTDOCS%%%%DOCSDIR%%/vosim.html %%PORTDOCS%%%%DOCSDIR%%/vphaseseg.html %%PORTDOCS%%%%DOCSDIR%%/vport.html %%PORTDOCS%%%%DOCSDIR%%/vpow.html %%PORTDOCS%%%%DOCSDIR%%/vpow_i.html %%PORTDOCS%%%%DOCSDIR%%/vpowv.html %%PORTDOCS%%%%DOCSDIR%%/vpowv_i.html %%PORTDOCS%%%%DOCSDIR%%/vpvoc.html %%PORTDOCS%%%%DOCSDIR%%/vrandh.html %%PORTDOCS%%%%DOCSDIR%%/vrandi.html %%PORTDOCS%%%%DOCSDIR%%/vst4cs.html %%PORTDOCS%%%%DOCSDIR%%/vstaudio.html %%PORTDOCS%%%%DOCSDIR%%/vstbankload.html %%PORTDOCS%%%%DOCSDIR%%/vstedit.html %%PORTDOCS%%%%DOCSDIR%%/vstinfo.html %%PORTDOCS%%%%DOCSDIR%%/vstinit.html %%PORTDOCS%%%%DOCSDIR%%/vstmidiout.html %%PORTDOCS%%%%DOCSDIR%%/vstnote.html %%PORTDOCS%%%%DOCSDIR%%/vstparamset.html %%PORTDOCS%%%%DOCSDIR%%/vstprogset.html %%PORTDOCS%%%%DOCSDIR%%/vsubv.html %%PORTDOCS%%%%DOCSDIR%%/vsubv_i.html %%PORTDOCS%%%%DOCSDIR%%/vtaba.html %%PORTDOCS%%%%DOCSDIR%%/vtabi.html %%PORTDOCS%%%%DOCSDIR%%/vtabk.html %%PORTDOCS%%%%DOCSDIR%%/vtable1k.html %%PORTDOCS%%%%DOCSDIR%%/vtablea.html %%PORTDOCS%%%%DOCSDIR%%/vtablei.html %%PORTDOCS%%%%DOCSDIR%%/vtablek.html %%PORTDOCS%%%%DOCSDIR%%/vtablewa.html %%PORTDOCS%%%%DOCSDIR%%/vtablewi.html %%PORTDOCS%%%%DOCSDIR%%/vtablewk.html %%PORTDOCS%%%%DOCSDIR%%/vtabwa.html %%PORTDOCS%%%%DOCSDIR%%/vtabwi.html %%PORTDOCS%%%%DOCSDIR%%/vtabwk.html %%PORTDOCS%%%%DOCSDIR%%/vwrap.html %%PORTDOCS%%%%DOCSDIR%%/waveset.html %%PORTDOCS%%%%DOCSDIR%%/weibull.html %%PORTDOCS%%%%DOCSDIR%%/wgbow.html %%PORTDOCS%%%%DOCSDIR%%/wgbowedbar.html %%PORTDOCS%%%%DOCSDIR%%/wgbrass.html %%PORTDOCS%%%%DOCSDIR%%/wgclar.html %%PORTDOCS%%%%DOCSDIR%%/wgflute.html %%PORTDOCS%%%%DOCSDIR%%/wgpluck.html %%PORTDOCS%%%%DOCSDIR%%/wgpluck2.html %%PORTDOCS%%%%DOCSDIR%%/wguide1.html %%PORTDOCS%%%%DOCSDIR%%/wguide2.html %%PORTDOCS%%%%DOCSDIR%%/wiiconnect.html %%PORTDOCS%%%%DOCSDIR%%/wiidata.html %%PORTDOCS%%%%DOCSDIR%%/wiirange.html %%PORTDOCS%%%%DOCSDIR%%/wiisend.html %%PORTDOCS%%%%DOCSDIR%%/wrap.html %%PORTDOCS%%%%DOCSDIR%%/wterrain.html %%PORTDOCS%%%%DOCSDIR%%/x.html %%PORTDOCS%%%%DOCSDIR%%/xadsr.html %%PORTDOCS%%%%DOCSDIR%%/xin.html %%PORTDOCS%%%%DOCSDIR%%/xout.html %%PORTDOCS%%%%DOCSDIR%%/xscanmap.html %%PORTDOCS%%%%DOCSDIR%%/xscans.html %%PORTDOCS%%%%DOCSDIR%%/xscansmap.html %%PORTDOCS%%%%DOCSDIR%%/xscanu.html %%PORTDOCS%%%%DOCSDIR%%/xtratim.html %%PORTDOCS%%%%DOCSDIR%%/xyin.html %%PORTDOCS%%%%DOCSDIR%%/zacl.html %%PORTDOCS%%%%DOCSDIR%%/zakinit.html %%PORTDOCS%%%%DOCSDIR%%/zamod.html %%PORTDOCS%%%%DOCSDIR%%/zar.html %%PORTDOCS%%%%DOCSDIR%%/zarg.html %%PORTDOCS%%%%DOCSDIR%%/zaw.html %%PORTDOCS%%%%DOCSDIR%%/zawm.html %%PORTDOCS%%%%DOCSDIR%%/zfilter2.html %%PORTDOCS%%%%DOCSDIR%%/zir.html %%PORTDOCS%%%%DOCSDIR%%/ziw.html %%PORTDOCS%%%%DOCSDIR%%/ziwm.html %%PORTDOCS%%%%DOCSDIR%%/zkcl.html %%PORTDOCS%%%%DOCSDIR%%/zkmod.html %%PORTDOCS%%%%DOCSDIR%%/zkr.html %%PORTDOCS%%%%DOCSDIR%%/zkw.html %%PORTDOCS%%%%DOCSDIR%%/zkwm.html %%PORTDOCS%%@dirrm %%DOCSDIR%%/images/callouts %%PORTDOCS%%@dirrm %%DOCSDIR%%/images %%PORTDOCS%%@dirrm %%DOCSDIR%%/examples %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm lib/csound/plugins64 @dirrm lib/csound @dirrm include/csound Property changes on: head/audio/csound/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property