Home
last modified time | relevance | path

Searched refs:x (Results 20226 – 20250 of 2467556) sorted by path

1...<<801802803804805806807808809810>>...98703

/dports/audio/fomp-lv2/fomp-1.2.2/waflib/extras/
H A Dwix.py38 for x in self.source:
39 if x.endswith('.wxobj'):
40 wxobj.append(x)
43 wxs.append(x)
45 exts.append(x[:-4])
46 elif '.' not in x:
47 exts.append(x)
49 wxl.append(x)
51 rest.append(x)
60 for x in wxl:
[all …]
H A Dxcode6.py283 return list(filter(lambda x: isinstance(x, PBXGroup), self.children))
532 buildfiles = [bld.unique_buildfile(PBXBuildFile(x)) for x in sources]
547 self.env.LIB = list(filter(lambda x: x != lib, self.env.LIB))
614 for x in files:
615 if not isinstance(x, str):
616 d = x
618 d = self.srcnode.find_node(x)
620 raise Errors.WafError('File \'%s\' was not found' % x)
715 for x in features.split():
716 if not x in kw['features']:
[all …]
/dports/audio/fomp-lv2/fomp-1.2.2/waflib/
H A Dfixpy2.py22 for x in os.listdir(os.path.join(dir, y)):
23 if x.endswith('.py'):
24 lst.append(y + os.sep + x)
25 for x in lst:
26 modif(dir, x, fun)
41 for x in k:
43 all_modifs[x].append(fun)
45 all_modifs[x] = [fun]
/dports/audio/foo-yc20/foo-yc20-1.3.0/
H A DMakefile73 ….o: CFLAGS_use = $(CFLAGS_X) -I$(VSTSDK) -I$(VSTSDK)/public.sdk/source/vst2.x `pkg-config --cflags…
75 src/vstplugmain.o: $(VSTSDK)/public.sdk/source/vst2.x/vstplugmain.cpp
76 $(CXX) $(CFLAGS_use) $(VSTSDK)/public.sdk/source/vst2.x/vstplugmain.cpp -c -o src/vstplugmain.o
/dports/audio/foo-yc20/foo-yc20-1.3.0/faust/
H A Dbiquad.dsp71 biquad_run(y, b0, b1, b2, a1, a2, x) =
72 (b0 * x@0) + (b1 * x@1) + (b2 * x@2) +
76 biquad_hp(cutoff,x) = (biquad_hp_params(SR, 3.0, cutoff), x) : biquad_run ~ _;
78 biquad_lp(cutoff,x) = (biquad_lp_params(SR, 3.0, cutoff), x) : biquad_run ~ _;
H A Dblep.dsp76 polyb_it(prev, ph, x) =
78 square_blep_x (_, x, ph, q) ,
81 square_blep_x (_, x, ph, q) ,
89 x,
90 x + polyblep(ph) * 2,
91 x - polyblep(ph - 0.5) * 2),
106 slow_accumulator(x) = (prevphase(x) ~ _) + x;
108 prevphase(x, whichphase) = select2( (x - x@1) < 0, whichphase, 1-whichphase);
H A Ddivider.dsp39 slow_accumulator(x) = (prevphase(x) ~ _) + x;
41 prevphase(x, whichphase) = select2( (x - x@1) < 0, whichphase, 1-whichphase);
H A Dkeyboard.dsp21 key_slowdown(x) = (x@3 + x@2 + x@1 + x)/4;
H A Dpercussion.dsp21 reduce(op, n, x) = compute ~ (_,_,_) : (!,!,_)
24 if(count<n, op(acc,x), x), // new acc
46 square(x) = x*x;
55 square(x) = x * x;
56 sumit(x,prev) = prev *((n-1.0)/n) + x / n;
71 hysteresis_detector(prev, x) = prev + detect_rise(x) - detect_fall(x) : max(0.0) : min(1.0);
93 sum_it(x) = x + x'' + x''' + x'''' : /(4.0);
H A Drc_filter.dsp28 filter(prev,x) = prev + (( x - prev) * 1000000) / (resistance * uf * SR);
31 //filter(prev,x) = prev + k * ( x - prev);
40 filter(prev,x) = alpha * prev + alpha * (x - x');
/dports/audio/foo-yc20/foo-yc20-1.3.0/gen/
H A Dyc20-dsp-plugin.cpp9 template <int N> inline float faustpower(float x) { return powf(x,N); } in faustpower() argument
10 template <int N> inline double faustpower(double x) { return pow(x,N); } in faustpower() argument
11 template <int N> inline int faustpower(int x) { return faustpower<N/2>(x) * faustpower<N-N/2>(x)… in faustpower() argument
12 template <> inline int faustpower<0>(int x) { return 1; } in faustpower() argument
13 template <> inline int faustpower<1>(int x) { return x; } in faustpower() argument
19 inline int lsr (int x, int n) { return int(((unsigned int)x) >> n); } in lsr() argument
H A Dyc20-dsp-standalone.cpp9 template <int N> inline float faustpower(float x) { return powf(x,N); } in faustpower() argument
10 template <int N> inline double faustpower(double x) { return pow(x,N); } in faustpower() argument
11 template <int N> inline int faustpower(int x) { return faustpower<N/2>(x) * faustpower<N-N/2>(x)… in faustpower() argument
12 template <> inline int faustpower<0>(int x) { return 1; } in faustpower() argument
13 template <> inline int faustpower<1>(int x) { return x; } in faustpower() argument
19 inline int lsr (int x, int n) { return int(((unsigned int)x) >> n); } in lsr() argument
/dports/audio/foo-yc20/foo-yc20-1.3.0/include/
H A Dwdgt.h40 virtual bool intersectsRectangle(double x, double y, double w, double h) const in intersectsRectangle() argument
42 return (x < x2 && (x+w) >= x1 && in intersectsRectangle()
46 inline bool intersectsPoint(double x, double y) const { in intersectsPoint() argument
47 return intersectsRectangle(x, y, 1, 1); in intersectsPoint()
/dports/audio/foo-yc20/foo-yc20-1.3.0/src/
H A Dfaust-dsp-plugin.cpp21 inline float max(float x, float y) in max() argument
23 return fmaxf(x,y); in max()
26 inline float min(float x, float y) in min() argument
28 return fminf(x,y); in min()
H A Dfaust-dsp-standalone.cpp21 inline float max(float x, float y) in max() argument
23 return fmaxf(x,y); in max()
26 inline float min(float x, float y) in min() argument
28 return fminf(x,y); in min()
H A Dfoo-yc20-ui.cpp45 ui->draw(event->area.x, event->area.y, event->area.width, event->area.height, true); in yc20ui_expose_event()
63 ui->mouse_movement(event->x, event->y); in yc20ui_motion_notify_event()
70 ui->button_pressed(event->x, event->y); in yc20ui_button_press_event()
77 ui->button_released(event->x, event->y); in yc20ui_button_release_event()
H A Dfoo-yc20-ui2.cpp50 ui->draw(event->area.x, event->area.y, event->area.width, event->area.height, true); in lv2ui_expose_event()
62 ui->mouse_movement(event->x, event->y); in lv2ui_motion_notify_event()
69 ui->button_pressed(event->x, event->y); in lv2ui_button_press_event()
76 ui->button_released(event->x, event->y); in lv2ui_button_release_event()
H A Dpolyblep.cpp37 #define polyblep_it(x) calculate_polyblep_valimaki_huovilainen((x)) argument
H A Dvsti.cpp323 double x,y; in yc20WndProcedure() local
336 ui->button_released(x,y); in yc20WndProcedure()
338 ui->mouse_movement(x,y); in yc20WndProcedure()
344 ui->button_pressed(x,y); in yc20WndProcedure()
351 ui->button_released(x,y); in yc20WndProcedure()
366 int x = rect.left; in yc20WndProcedure() local
836 double x,y; in carbonEventHandler()
845 if (x>=0 && y>=0) { in carbonEventHandler()
855 double x,y; in carbonEventHandler()
862 x = (double) mousePos.h; in carbonEventHandler()
[all …]
H A Dyc20-base-ui.cpp150 float x = 15.0; in YC20BaseUI() local
174 x += 40.0 + pitch_x; in YC20BaseUI()
178 x += 40.0 + pitch_x; in YC20BaseUI()
191 x += 40.0 + pitch_x; in YC20BaseUI()
195 x += 40.0 + pitch_x; in YC20BaseUI()
208 x += 40.0 + pitch_x; in YC20BaseUI()
319 x /= ui_scale; in mouse_movement()
356 x /= ui_scale; in button_pressed()
370 dragStartX = x; in button_pressed()
379 x /= ui_scale; in button_released()
[all …]
/dports/audio/fossmixer/detroit-0.2.3/
H A Dacinclude.m422 while test "x${this_curr}" != "x${this_last}"; do
38 eval "set x $[0] $ac_configure_args"
45 chmod +x $1
55 eval "set x $[0] $ac_configure_args"
H A Daclocal.m480 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
125 test "x$?" != "x0" && pkg_failed=yes ],
H A Dconfig.guess522 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
523 [ ${TARGET_BINARY_INTERFACE}x = x ]
983 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
/dports/audio/fossmixer/detroit-0.2.3/apps/fossmixer/
H A Dmixer.c155 c_c_sel.x, c_c_sel.y, in bsd_prepare_mixer_sel()
248 x, y, in bsd_prepare_mixer_mix_op()
274 x + 16, y + 296, in bsd_prepare_mixer_mix_op()
279 x + 16, y + 296, in bsd_prepare_mixer_mix_op()
335 c_c_mix[j].x + 16, c_c_mix[j].y + 296, in bsd_update_mixer_mix()
450 x, y, in bsd_prepare_mixer_ext_op()
475 x + 22, y - 54, in bsd_prepare_mixer_ext_op()
563 c_c_rec.x, c_c_rec.y, in bsd_prepare_mixer_rec()
627 c_c_nse[0].x, c_c_nse[0].y, in bsd_prepare_mixer_tst_kn()
633 c_c_nse[1].x, c_c_nse[1].y, in bsd_prepare_mixer_tst_kn()
[all …]
H A Dmixer.h67 int x, y; /* Device control position in window */ member

1...<<801802803804805806807808809810>>...98703