D | vecintrin.h | 30 #define __constant(PARM) \ argument 31 __attribute__((__enable_if__ ((PARM) == (PARM), \ 33 #define __constant_range(PARM, LOW, HIGH) \ argument 34 __attribute__((__enable_if__ ((PARM) >= (LOW) && (PARM) <= (HIGH), \ 36 #define __constant_pow2_range(PARM, LOW, HIGH) \ argument 37 __attribute__((__enable_if__ ((PARM) >= (LOW) && (PARM) <= (HIGH) && \ 38 ((PARM) & ((PARM) - 1)) == 0, \
|