const.h 803 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /* const.h: Macros for dealing with constants. */
  3. #ifndef _UAPI_LINUX_CONST_H
  4. #define _UAPI_LINUX_CONST_H
  5. /* Some constant macros are used in both assembler and
  6. * C code. Therefore we cannot annotate them always with
  7. * 'UL' and other type specifiers unilaterally. We
  8. * use the following macros to deal with this.
  9. *
  10. * Similarly, _AT() will cast an expression with a type in C, but
  11. * leave it unchanged in asm.
  12. */
  13. #ifdef __ASSEMBLY__
  14. #define _AC(X,Y) X
  15. #define _AT(T,X) X
  16. #else
  17. #define __AC(X,Y) (X##Y)
  18. #define _AC(X,Y) __AC(X,Y)
  19. #define _AT(T,X) ((T)(X))
  20. #endif
  21. #define _UL(x) (_AC(x, UL))
  22. #define _ULL(x) (_AC(x, ULL))
  23. #define _BITUL(x) (_UL(1) << (x))
  24. #define _BITULL(x) (_ULL(1) << (x))
  25. #endif /* _UAPI_LINUX_CONST_H */