• Home
  • Raw
  • Download

Lines Matching +defs:x +defs:name

162 #define bswap_16(x) _byteswap_ushort(x)  argument
163 #define bswap_32(x) _byteswap_ulong(x) argument
164 #define bswap_64(x) _byteswap_uint64(x) argument
169 #define bswap_16(x) OSSwapInt16(x) argument
170 #define bswap_32(x) OSSwapInt32(x) argument
171 #define bswap_64(x) OSSwapInt64(x) argument
178 static inline uint16 bswap_16(uint16 x) { in bswap_16()
181 #define bswap_16(x) bswap_16(x) argument
182 static inline uint32 bswap_32(uint32 x) { in bswap_32()
186 #define bswap_32(x) bswap_32(x) argument
187 static inline uint64 bswap_64(uint64 x) { in bswap_64()
197 #define bswap_64(x) bswap_64(x) argument
271 #define ATTRIBUTE_SECTION(name) \ argument
281 AssignAttributeStartEnd(const char *name, char **pstart, char **pend) { in AssignAttributeStartEnd()
312 #define DECLARE_ATTRIBUTE_SECTION_VARS(name) \ argument
316 #define INIT_ATTRIBUTE_SECTION_VARS(name) \ argument
321 #define DEFINE_ATTRIBUTE_SECTION_VARS(name) \ argument
545 #define ATTRIBUTE_SECTION(name) \ argument
557 #define DECLARE_ATTRIBUTE_SECTION_VARS(name) \ argument
562 #define INIT_ATTRIBUTE_SECTION_VARS(name) argument
563 #define DEFINE_ATTRIBUTE_SECTION_VARS(name) argument
572 #define ATTRIBUTE_SECTION_START(name) (reinterpret_cast<void *>(__start_##name)) argument
573 #define ATTRIBUTE_SECTION_STOP(name) (reinterpret_cast<void *>(__stop_##name)) argument
641 extern inline void prefetch(const void *x, int hint) { in prefetch()
690 extern inline void prefetch(const void *x) { return prefetch(x, 0); } in prefetch()
700 #define PREDICT_FALSE(x) (__builtin_expect(x, 0)) argument
701 #define PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) argument
703 #define PREDICT_FALSE(x) x argument
704 #define PREDICT_TRUE(x) x argument
753 #define PREDICT_FALSE(x) x argument
754 #define PREDICT_TRUE(x) x argument