Searched refs:__x (Results 1 - 7 of 7) sorted by relevance

/seL4-camkes-master/projects/musllibc/include/
H A Dbyteswap.h7 static __inline uint16_t __bswap_16(uint16_t __x) argument
9 return (__x<<8) | (__x>>8);
12 static __inline uint32_t __bswap_32(uint32_t __x) argument
14 return (__x>>24) | (__x>>8&0xff00) | (__x<<8&0xff0000) | (__x<<24);
17 static __inline uint64_t __bswap_64(uint64_t __x) argument
19 return ((__bswap_32(__x)
[all...]
H A Dendian.h25 static __inline uint16_t __bswap16(uint16_t __x) argument
27 return (__x<<8) | (__x>>8);
30 static __inline uint32_t __bswap32(uint32_t __x) argument
32 return (__x>>24) | (__x>>8&0xff00) | (__x<<8&0xff0000) | (__x<<24);
35 static __inline uint64_t __bswap64(uint64_t __x) argument
37 return ((__bswap32(__x)
[all...]
H A Dmath.h93 static __inline int __is##rel(type __x, type __y) \
94 { return !isunordered(__x,__y) && __x op __y; }
H A Dpthread.h202 void *__x; member in struct:__ptcb
/seL4-camkes-master/projects/musllibc/src/thread/
H A Dpthread_cleanup_push.c12 cb->__x = x;
19 if (run) cb->__f(cb->__x);
H A Dpthread_create.c33 void *x = self->cancelbuf->__x;
/seL4-camkes-master/projects/musllibc/src/internal/
H A Dlibm.h65 volatile float __x; \
66 __x = (x); \
68 volatile double __x; \
69 __x = (x); \
71 volatile long double __x; \
72 __x = (x); \

Completed in 46 milliseconds