Home
last modified time | relevance | path

Searched refs:_x (Results 1 – 8 of 8) sorted by relevance

/xnu-12377.1.9/bsd/sys/
H A Dtypes.h142 major(__uint32_t _x) in major() argument
144 return (__int32_t)(((__uint32_t)_x >> 24) & 0xff); in major()
148 minor(__uint32_t _x) in minor() argument
150 return (__int32_t)((_x) & 0xffffff); in minor()
H A Dlinker_set.h134 #define __LS_VA_STRINGIFY(_x ...) #_x argument
135 #define __LS_VA_STRCONCAT(_x, _y) __LS_VA_STRINGIFY(_x,_y) argument
H A Dmbuf.h1857 #define ADDCARRY(_x) do { \ argument
1858 while (((_x) >> 16) != 0) \
1859 (_x) = ((_x) >> 16) + ((_x) & 0xffff); \
/xnu-12377.1.9/san/memory/
H A Dkasan_internal.h72 #define KASAN_STRIP_ADDR(_x) (_x) argument
75 #define KASAN_STRIP_ADDR(_x) (VM_KERNEL_STRIP_PTR(_x)) argument
/xnu-12377.1.9/libkern/libclosure/
H A Druntime.cpp64 #define os_assumes(_x) (_x) argument
67 #define os_assert(_x) assert(_x) argument
/xnu-12377.1.9/tests/skywalk/
H A Dskt_reass.c385 #define ADDCARRY(_x) do { \ argument
386 while (((_x) >> 16) != 0) \
387 (_x) = ((_x) >> 16) + ((_x) & 0xffff); \
H A Dskywalk_test_utils.c1534 #define ADDCARRY(_x) do { \ argument
1535 while (((_x) >> 16) != 0) \
1536 (_x) = ((_x) >> 16) + ((_x) & 0xffff); \
/xnu-12377.1.9/osfmk/kern/
H A Dclock.c133 bintime_addx(struct bintime *_bt, uint64_t _x) in bintime_addx() argument
138 _bt->frac += _x; in bintime_addx()
145 bintime_subx(struct bintime *_bt, uint64_t _x) in bintime_subx() argument
150 _bt->frac -= _x; in bintime_subx()