Searched refs:__bitwise (Results 1 – 8 of 8) sorted by relevance
1 #define __bitwise __attribute__((bitwise)) macro4 typedef int __bitwise apple_t;5 typedef int __bitwise orange_t;
4 #define __bitwise __attribute__((bitwise)) macro52 if ([int] == [int __bitwise]) return 1; in test()60 if ([int *] == [int __bitwise *]) return 1; in test()
1 #define __bitwise __attribute__((bitwise)) macro5 typedef unsigned int __bitwise __be32;
1 #define __bitwise __attribute__((bitwise)) macro4 typedef long long __bitwise bits;
3 #define __bitwise __attribute__((bitwise)) macro29 int __bitwise o; in test_bitwise()
2 #define __bitwise __attribute__((bitwise)) macro76 typedef int __bitwise type_t; in test_bitwise()
1 # __nocast vs __bitwise13 `__bitwise` ends up being a *stronger integer separation*. That one27 - `__bitwise` is for *unique types* that cannot be mixed with other31 types would be `__bitwise`: you can only operate on them by doing34 Generally, you want `__bitwise` if you are looking for type safety.39 * Linus' e-mail about `__nocast` vs `__bitwise`: