summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.h.in2
-rw-r--r--include/ffts.h1
-rw-r--r--java/jni/ffts_jni.c2
-rw-r--r--src/codegen.c1
-rw-r--r--src/codegen.h1
-rw-r--r--src/codegen_arm.h1
-rw-r--r--src/codegen_sse.h1
-rw-r--r--src/ffts.c1
-rw-r--r--src/ffts.h1
-rw-r--r--src/ffts_nd.c1
-rw-r--r--src/ffts_nd.h1
-rw-r--r--src/ffts_real.c1
-rw-r--r--src/ffts_real.h1
-rw-r--r--src/ffts_real_nd.c1
-rw-r--r--src/ffts_real_nd.h1
-rw-r--r--src/ffts_small.c1
-rw-r--r--src/ffts_small.h1
-rw-r--r--src/ffts_static.c1
-rw-r--r--src/ffts_static.h1
-rw-r--r--src/macros-alpha.h1
-rw-r--r--src/macros-altivec.h1
-rw-r--r--src/macros-neon.h1
-rw-r--r--src/macros-sse.h1
-rw-r--r--src/macros.h1
-rw-r--r--src/neon.h1
-rw-r--r--src/neon_float.h1
-rw-r--r--src/patterns.c1
-rw-r--r--src/patterns.h1
-rw-r--r--src/types.h1
-rw-r--r--src/vfp.h1
-rw-r--r--tests/test.c1
31 files changed, 33 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in
index 60ecb2f..9e5f90b 100644
--- a/config.h.in
+++ b/config.h.in
@@ -146,3 +146,5 @@
/* Define to the type of an unsigned integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#undef uint64_t
+
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/include/ffts.h b/include/ffts.h
index f491b18..63173bb 100644
--- a/include/ffts.h
+++ b/include/ffts.h
@@ -69,3 +69,4 @@ void ffts_free(ffts_plan_t *);
#endif /* __cplusplus */
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/java/jni/ffts_jni.c b/java/jni/ffts_jni.c
index 41fdf76..ddd6f99 100644
--- a/java/jni/ffts_jni.c
+++ b/java/jni/ffts_jni.c
@@ -231,3 +231,5 @@ JNIEXPORT void JNICALL Java_nz_ac_waikato_ffts_FFTS_free
ffts_free(plan);
}
+
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/codegen.c b/src/codegen.c
index a66ecda..79aaca6 100644
--- a/src/codegen.c
+++ b/src/codegen.c
@@ -729,3 +729,4 @@ void ffts_generate_func_code(ffts_plan_t *p, size_t N, size_t leafN, int sign) {
p->transform = (void *) (start);
}
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/codegen.h b/src/codegen.h
index f592907..c07144f 100644
--- a/src/codegen.h
+++ b/src/codegen.h
@@ -47,3 +47,4 @@
void ffts_generate_func_code(ffts_plan_t *, size_t N, size_t leafN, int sign);
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/codegen_arm.h b/src/codegen_arm.h
index ad8a9d8..2aea43e 100644
--- a/src/codegen_arm.h
+++ b/src/codegen_arm.h
@@ -99,3 +99,4 @@ uint32_t POP_LR() { return 0xe8bd8ff0; } //0xe8bd8000; }
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/codegen_sse.h b/src/codegen_sse.h
index ec85667..6a38671 100644
--- a/src/codegen_sse.h
+++ b/src/codegen_sse.h
@@ -193,3 +193,4 @@ void POP(uint8_t **p, uint8_t reg) {
}
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts.c b/src/ffts.c
index bec2177..5a42122 100644
--- a/src/ffts.c
+++ b/src/ffts.c
@@ -396,3 +396,4 @@ ffts_plan_t *ffts_init_1d(size_t N, int sign) {
return p;
}
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts.h b/src/ffts.h
index 4409029..0b7de96 100644
--- a/src/ffts.h
+++ b/src/ffts.h
@@ -175,3 +175,4 @@ void ffts_free(ffts_plan_t *);
ffts_plan_t *ffts_init_1d(size_t N, int sign);
void ffts_execute(ffts_plan_t *, const void *, void *);
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_nd.c b/src/ffts_nd.c
index ae9b148..15fc4d1 100644
--- a/src/ffts_nd.c
+++ b/src/ffts_nd.c
@@ -280,3 +280,4 @@ ffts_plan_t *ffts_init_2d(size_t N1, size_t N2, int sign) {
Ns[1] = N2;
return ffts_init_nd(2, Ns, sign);
}
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_nd.h b/src/ffts_nd.h
index 8f0c855..a9af3e2 100644
--- a/src/ffts_nd.h
+++ b/src/ffts_nd.h
@@ -56,3 +56,4 @@ ffts_plan_t *ffts_init_2d(size_t N1, size_t N2, int sign);
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_real.c b/src/ffts_real.c
index bdb6eac..7fad638 100644
--- a/src/ffts_real.c
+++ b/src/ffts_real.c
@@ -224,3 +224,4 @@ ffts_plan_t *ffts_init_1d_real(size_t N, int sign) {
}
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_real.h b/src/ffts_real.h
index bf8834d..d3f5316 100644
--- a/src/ffts_real.h
+++ b/src/ffts_real.h
@@ -51,3 +51,4 @@ ffts_plan_t *ffts_init_1d_real(size_t N, int sign);
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_real_nd.c b/src/ffts_real_nd.c
index febac45..fe9ef69 100644
--- a/src/ffts_real_nd.c
+++ b/src/ffts_real_nd.c
@@ -194,3 +194,4 @@ ffts_plan_t *ffts_init_2d_real(size_t N1, size_t N2, int sign) {
Ns[1] = N2;
return ffts_init_nd_real(2, Ns, sign);
}
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_real_nd.h b/src/ffts_real_nd.h
index d777d42..bc8ed75 100644
--- a/src/ffts_real_nd.h
+++ b/src/ffts_real_nd.h
@@ -51,3 +51,4 @@
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_small.c b/src/ffts_small.c
index ddd2d3e..e53493c 100644
--- a/src/ffts_small.c
+++ b/src/ffts_small.c
@@ -154,3 +154,4 @@
dout[0] = r0[0]; dout[1] = r0[1];
dout[2] = r1[0]; dout[3] = r1[1];
}
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_small.h b/src/ffts_small.h
index 76cadf5..683537a 100644
--- a/src/ffts_small.h
+++ b/src/ffts_small.h
@@ -11,3 +11,4 @@ void firstpass_4_b(ffts_plan_t * p, const void * in, void * out);
void firstpass_2(ffts_plan_t * p, const void * in, void * out);
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_static.c b/src/ffts_static.c
index 3edf2ea..dda5f51 100644
--- a/src/ffts_static.c
+++ b/src/ffts_static.c
@@ -99,3 +99,4 @@ void ffts_static_transform_i(ffts_plan_t *p, const void *in, void *out) {
neon_static_e_i(p, in, out);
ffts_static_rec_i(p, out, p->N);
}
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/ffts_static.h b/src/ffts_static.h
index 4490bde..d854053 100644
--- a/src/ffts_static.h
+++ b/src/ffts_static.h
@@ -44,3 +44,4 @@ void ffts_static_rec_i(ffts_plan_t *p, float *data, size_t N) ;
void ffts_static_transform_i(ffts_plan_t *p, const void *in, void *out);
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/macros-alpha.h b/src/macros-alpha.h
index 06daf4a..be5ec20 100644
--- a/src/macros-alpha.h
+++ b/src/macros-alpha.h
@@ -204,3 +204,4 @@ static inline void VST(void *d, V s)
}
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/macros-altivec.h b/src/macros-altivec.h
index 0d148a5..28f552f 100644
--- a/src/macros-altivec.h
+++ b/src/macros-altivec.h
@@ -135,3 +135,4 @@ static inline void VST(void *d, V s)
*r = s;
}
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/macros-neon.h b/src/macros-neon.h
index 0750b75..c8b5720 100644
--- a/src/macros-neon.h
+++ b/src/macros-neon.h
@@ -94,3 +94,4 @@ __INLINE V IMULJ(V d, V re, V im) {
}
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/macros-sse.h b/src/macros-sse.h
index 229477c..d845734 100644
--- a/src/macros-sse.h
+++ b/src/macros-sse.h
@@ -82,3 +82,4 @@ __INLINE V IMULJ(V d, V re, V im) {
}
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/macros.h b/src/macros.h
index d304cec..08029a3 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -159,3 +159,4 @@ static inline void L_4_2(int inv,
*r1 = VUNPACKLO(t2, t3);
}
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/neon.h b/src/neon.h
index f3132c2..2f51995 100644
--- a/src/neon.h
+++ b/src/neon.h
@@ -63,3 +63,4 @@ void neon_static_x8_i(float *, size_t, float *);
void neon_static_x8_t_i(float *, size_t, float *);
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/neon_float.h b/src/neon_float.h
index a958b8a..9aeab1c 100644
--- a/src/neon_float.h
+++ b/src/neon_float.h
@@ -1124,3 +1124,4 @@ __INLINE void neon_shl8_oe(data_t *restrict out0, data_t *restrict out1,const da
}
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/patterns.c b/src/patterns.c
index 93fe7f7..16d2301 100644
--- a/src/patterns.c
+++ b/src/patterns.c
@@ -206,3 +206,4 @@ void ffts_init_tree(ffts_plan_t *p, int N, int leafN) {
}
*/
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/patterns.h b/src/patterns.h
index 6e2d6bb..699a0e5 100644
--- a/src/patterns.h
+++ b/src/patterns.h
@@ -42,3 +42,4 @@ void ffts_init_offsets(ffts_plan_t *p, int N, int leafN);
//void ffts_init_tree(ffts_plan_t *p, int N, int leafN);
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/types.h b/src/types.h
index 04cbf61..a7425c2 100644
--- a/src/types.h
+++ b/src/types.h
@@ -47,3 +47,4 @@
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/src/vfp.h b/src/vfp.h
index f733a3f..8286646 100644
--- a/src/vfp.h
+++ b/src/vfp.h
@@ -43,3 +43,4 @@ void vfp_x8();
void vfp_end();
#endif
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
diff --git a/tests/test.c b/tests/test.c
index 03f8f7a..7ab79c6 100644
--- a/tests/test.c
+++ b/tests/test.c
@@ -174,3 +174,4 @@ main(int argc, char *argv[]) {
}
return 0;
}
+// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
OpenPOWER on IntegriCloud