From fc9fb13209893eb4e22dc7f65d7983da378da7c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Wed, 25 Jan 2006 15:09:42 +0000 Subject: made perform-routines "static" svn path=/trunk/externals/zexy/; revision=4489 --- src/0x260x260x7e.c | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'src/0x260x260x7e.c') diff --git a/src/0x260x260x7e.c b/src/0x260x260x7e.c index 471c20b..86ca409 100644 --- a/src/0x260x260x7e.c +++ b/src/0x260x260x7e.c @@ -62,7 +62,7 @@ static void *andand_tilde_new(t_symbol *s, int argc, t_atom *argv) } } -t_int *andand_tilde_perform(t_int *w) +static t_int *andand_tilde_perform(t_int *w) { t_float *in1 = (t_float *)(w[1]); t_float *in2 = (t_float *)(w[2]); @@ -76,7 +76,7 @@ t_int *andand_tilde_perform(t_int *w) return (w+5); } -t_int *andand_tilde_perf8(t_int *w) +static t_int *andand_tilde_perf8(t_int *w) { t_float *in1 = (t_float *)(w[1]); t_float *in2 = (t_float *)(w[2]); @@ -96,7 +96,7 @@ t_int *andand_tilde_perf8(t_int *w) return (w+5); } -t_int *scalarandand_tilde_perform(t_int *w) +static t_int *scalarandand_tilde_perform(t_int *w) { t_float *in = (t_float *)(w[1]); t_float f = *(t_float *)(w[2]); @@ -106,7 +106,7 @@ t_int *scalarandand_tilde_perform(t_int *w) return (w+5); } -t_int *scalarandand_tilde_perf8(t_int *w) +static t_int *scalarandand_tilde_perf8(t_int *w) { t_float *in = (t_float *)(w[1]); int g = *(t_float *)(w[2]); @@ -126,7 +126,7 @@ t_int *scalarandand_tilde_perf8(t_int *w) #ifdef __SSE__ static long l_bitmask[]={0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff}; -t_int *andand_tilde_performSSE(t_int *w) +static t_int *andand_tilde_performSSE(t_int *w) { __m128 *in1 = (__m128 *)(w[1]); __m128 *in2 = (__m128 *)(w[2]); @@ -173,7 +173,7 @@ t_int *andand_tilde_performSSE(t_int *w) return (w+5); } -t_int *scalarandand_tilde_performSSE(t_int *w) +static t_int *scalarandand_tilde_performSSE(t_int *w) { __m128 *in = (__m128 *)(w[1]); __m128 *out = (__m128 *)(w[3]); @@ -283,11 +283,6 @@ static void andand_tilde_setup(void) /* ---------------------- global setup ------------------------- */ -void z_andand__setup(void) -{ - andand_tilde_setup(); -} - void z_0x260x260x7e_setup(void) { andand_tilde_setup(); -- cgit v1.2.1