Go to the documentation of this file.
30 #define MAX_SEQ_LENGTH (1024*10)
31 #define MAX_SEQ_NAME_LENGTH (255)
32 #define MATRIX_DIM ('Z'-'A'+1)
33 #define __ALIGNED__ __attribute__((__aligned__(16)))
36 #define LIKELY(x) __builtin_expect((x),1)
37 #define UNLIKELY(x) __builtin_expect((x),0)
38 #define EXPORT __attribute__((visibility("default")))
41 #define UNLIKELY(x) (x)