Home
last modified time | relevance | path

Searched defs:_s (Results 1 – 25 of 63) sorted by relevance

123

/freebsd-src/sys/sys/
H A Dbitset.h41 #define __bitset_mask(_s, n) \ argument
45 #define __bitset_word(_s, n) \ argument
49 #define __BIT_CLR(_s, n, p) \ argument
52 #define __BIT_COPY(_s, f, t) (void)(*(t) = *(f)) argument
54 #define __BIT_ISSET(_s, n, p) \ argument
57 __BIT_SET(_s,n,p) global() argument
60 __BIT_ZERO(_s,p) global() argument
66 __BIT_FILL(_s,p) global() argument
72 __BIT_SETOF(_s,n,p) global() argument
78 __BIT_EMPTY(_s,p) global() argument
87 __BIT_ISFULLSET(_s,p) global() argument
96 __BIT_SUBSET(_s,p,c) global() argument
107 __BIT_OVERLAP(_s,p,c) global() argument
117 __BIT_CMP(_s,p,c) global() argument
126 __BIT_OR(_s,d,s) global() argument
132 __BIT_OR2(_s,d,s1,s2) global() argument
138 __BIT_ORNOT(_s,d,s) global() argument
144 __BIT_ORNOT2(_s,d,s1,s2) global() argument
150 __BIT_AND(_s,d,s) global() argument
156 __BIT_AND2(_s,d,s1,s2) global() argument
162 __BIT_ANDNOT(_s,d,s) global() argument
168 __BIT_ANDNOT2(_s,d,s1,s2) global() argument
174 __BIT_XOR(_s,d,s) global() argument
180 __BIT_XOR2(_s,d,s1,s2) global() argument
192 __BIT_CLR_ATOMIC(_s,n,p) global() argument
196 __BIT_SET_ATOMIC(_s,n,p) global() argument
200 __BIT_SET_ATOMIC_ACQ(_s,n,p) global() argument
204 __BIT_TEST_CLR_ATOMIC(_s,n,p) global() argument
208 __BIT_TEST_SET_ATOMIC(_s,n,p) global() argument
213 __BIT_AND_ATOMIC(_s,d,s) global() argument
220 __BIT_OR_ATOMIC(_s,d,s) global() argument
227 __BIT_COPY_STORE_REL(_s,f,t) global() argument
239 __BIT_FFS_AT(_s,p,start) global() argument
258 __BIT_FFS(_s,p) global() argument
260 __BIT_FLS(_s,p) global() argument
275 __BIT_COUNT(_s,p) global() argument
285 __BIT_FOREACH_ADVANCE(_s,i,p,op) global() argument
307 __BIT_FOREACH(_s,i,p,op) global() argument
311 __BIT_FOREACH_ISSET(_s,i,p) global() argument
312 __BIT_FOREACH_ISCLR(_s,i,p) global() argument
320 __BITSET_SIZE(_s) global() argument
323 BIT_AND(_s,d,s) global() argument
324 BIT_AND2(_s,d,s1,s2) global() argument
325 BIT_ANDNOT(_s,d,s) global() argument
326 BIT_ANDNOT2(_s,d,s1,s2) global() argument
327 BIT_AND_ATOMIC(_s,d,s) global() argument
328 BIT_CLR(_s,n,p) global() argument
329 BIT_CLR_ATOMIC(_s,n,p) global() argument
330 BIT_CMP(_s,p,c) global() argument
331 BIT_COPY(_s,f,t) global() argument
332 BIT_COPY_STORE_REL(_s,f,t) global() argument
333 BIT_COUNT(_s,p) global() argument
334 BIT_EMPTY(_s,p) global() argument
335 BIT_FFS(_s,p) global() argument
336 BIT_FFS_AT(_s,p,start) global() argument
337 BIT_FILL(_s,p) global() argument
338 BIT_FLS(_s,p) global() argument
339 BIT_FOREACH(_s,i,p,op) global() argument
340 BIT_FOREACH_ISCLR(_s,i,p) global() argument
341 BIT_FOREACH_ISSET(_s,i,p) global() argument
342 BIT_ISFULLSET(_s,p) global() argument
343 BIT_ISSET(_s,n,p) global() argument
344 BIT_OR(_s,d,s) global() argument
345 BIT_OR2(_s,d,s1,s2) global() argument
346 BIT_ORNOT(_s,d,s) global() argument
347 BIT_ORNOT2(_s,d,s1,s2) global() argument
348 BIT_OR_ATOMIC(_s,d,s) global() argument
349 BIT_OVERLAP(_s,p,c) global() argument
350 BIT_SET(_s,n,p) global() argument
351 BIT_SETOF(_s,n,p) global() argument
352 BIT_SET_ATOMIC(_s,n,p) global() argument
353 BIT_SET_ATOMIC_ACQ(_s,n,p) global() argument
354 BIT_SUBSET(_s,p,c) global() argument
355 BIT_TEST_CLR_ATOMIC(_s,n,p) global() argument
356 BIT_TEST_SET_ATOMIC(_s,n,p) global() argument
357 BIT_XOR(_s,d,s) global() argument
358 BIT_XOR2(_s,d,s1,s2) global() argument
359 BIT_ZERO(_s,p) global() argument
365 BITSET_ALLOC(_s,mt,mf) global() argument
370 BITSET_SIZE(_s) global() argument
[all...]
H A D_bitset.h43 #define __bitset_words(_s) (__howmany(_s, _BITSET_BITS)) argument
45 #define __BITSET_DEFINE(_t, _s) \ argument
66 #define BITSET_DEFINE(_t, _s) __BITSET_DEFINE(_t, _s) argument
H A Dcpuset.h77 #define CPU_ALLOC_SIZE(_s) __BITSET_SIZE(_s) argument
78 #define CPU_ALLOC(_s) __cpuset_alloc(_s) argument
81 #define CPU_ISSET_S(n, _s, p) __BIT_ISSET((_s) * 8, n, p) argument
82 #define CPU_SET_S(n, _s, p) __BIT_SET((_s) * 8, n, p) argument
83 #define CPU_CLR_S(n, _s, p) __BIT_CLR((_s) * 8, n, p) argument
84 #define CPU_ZERO_S(_s, p) __BIT_ZERO((_s) * 8, p) argument
86 #define CPU_OR_S(_s, d, s1, s2) __BIT_OR2((_s) * 8, d, s1, s2) argument
87 #define CPU_AND_S(_s, d, s1, s2) __BIT_AND2((_s) * 8, d, s1, s2) argument
88 #define CPU_XOR_S(_s, d, s1, s2) __BIT_XOR2((_s) * 8, d, s1, s2) argument
90 #define CPU_COUNT_S(_s, p) ((int)__BIT_COUNT((_s) * 8, p)) argument
[all …]
/freebsd-src/contrib/ntp/sntp/libopts/
H A Dag-char-map.h117 #define SPN_NEWLINE_CHARS(_s) spn_ag_char_map_chars(_s, 0) argument
118 #define BRK_NEWLINE_CHARS(_s) brk_ag_char_map_chars(_s, 0) argument
122 #define SPN_NUL_BYTE_CHARS(_s) spn_ag_char_map_chars(_s, 1) argument
123 #define BRK_NUL_BYTE_CHARS(_s) brk_ag_char_map_chars(_s, 1) argument
127 #define SPN_DIR_SEP_CHARS(_s) spn_ag_char_map_chars(_s, 2) argument
128 #define BRK_DIR_SEP_CHARS(_s) brk_ag_char_map_chars(_s, 2) argument
132 #define SPN_PERCENT_CHARS(_s) spn_ag_char_map_chars(_s, 3) argument
133 #define BRK_PERCENT_CHARS(_s) brk_ag_char_map_chars(_s, 3) argument
137 #define SPN_COMMA_CHARS(_s) spn_ag_char_map_chars(_s, 4) argument
138 #define BRK_COMMA_CHARS(_s) brk_ag_char_map_chars(_s, 4) argument
[all …]
H A Dautoopts.c52 # define strdup(_s) option_strdup(_s) argument
57 # define strrchr(_s, _c) option_strrchr(_s, _c) argument
58 # define strchr(_s, _c) option_strchr(_s, _c) argument
H A Dconfigfile.c564 # define _dt_(_s, _fn) _fn, in handle_directive() argument
570 # define _dt_(_s, _fn) 1 + in handle_directive() argument
579 # define _dt_(_s, _fn) dir_names[ix++] = _s; in handle_directive() argument
H A Dgenshell.h214 # define _(_s) _s argument
/freebsd-src/sys/contrib/xen/io/
H A Dring.h68 #define __CONST_RING_SIZE(_s, _sz) \ argument
74 #define __RING_SIZE(_s, _sz) \ argument
171 #define SHARED_RING_INIT(_s) do { \ argument
178 #define FRONT_RING_ATTACH(_r, _s, _i, __size) do { \ argument
185 #define FRONT_RING_INIT(_r, _s, __size) FRONT_RING_ATTACH(_r, _s, 0, __size) argument
187 #define BACK_RING_ATTACH(_r, _s, _i, __size) do { \ argument
194 #define BACK_RING_INIT(_r, _s, __size) BACK_RING_ATTACH(_r, _s, 0, __size) argument
/freebsd-src/contrib/ldns/ldns/
H A Dconfig.h.in752 #define close_socket(_s) do { if (_s != SOCK_INVALID) {closesocket(_s); _s = -1;} } while(0) argument
755 #define close_socket(_s) do { if (_s != SOCK_INVALID) {close(_s); _s = -1;} } while(0) argument
H A Dconfig.h753 #define close_socket(_s) do { if (_s != SOCK_INVALID) {closesocket(_s); _s = -1;} } while(0) argument
756 #define close_socket(_s) do { if (_s != SOCK_INVALID) {close(_s); _s = -1;} } while(0) argument
/freebsd-src/sys/contrib/dpdk_rte_lpm/
H A Drte_shim.h7 #define rte_zmalloc_socket(_type, _size, _align, _s) malloc(_size, M_TEMP, M_NOWAIT | M_ZERO) argument
14 #define assert(_s) KASSERT((_s), ("DPDK: assert failed")) argument
/freebsd-src/contrib/ofed/libibverbs/
H A Dalloca.h7 #define strdupa(_s) \ argument
/freebsd-src/crypto/openssh/
H A Datomicio.c51 atomicio6(ssize_t (*f) (int, void *, size_t), int fd, void *_s, size_t n, in atomicio6() argument
96 atomicio(ssize_t (*f) (int, void *, size_t), int fd, void *_s, size_t n) in atomicio() argument
/freebsd-src/contrib/netcat/
H A Datomicio.c39 atomicio(ssize_t (*f) (int, void *, size_t), int fd, void *_s, size_t n) in atomicio() argument
/freebsd-src/sys/compat/linuxkpi/common/include/linux/
H A Dmutex.h62 #define mutex_lock_nested(_m, _s) mutex_lock(_m) argument
63 #define mutex_lock_nest_lock(_m, _s) mutex_lock(_m) argument
H A Dkfifo.h100 #define kfifo_alloc(_kf, _s, _gfp) \ argument
H A Dskbuff.h76 printf("SKB_TRACE %s:%d %p, %p\n", __func__, __LINE__, _s, _p) argument
77 #define SKB_TRACE_FMT(_s, _fmt, ...) \ argument
63 SKB_TRACE(_s) global() argument
66 SKB_TRACE2(_s,_p) global() argument
69 SKB_TRACE_FMT(_s,_fmt,...) global() argument
78 SKB_TRACE_FMT(_s,...) global() argument
1092 SKB_WITH_OVERHEAD(_s) global() argument
[all...]
/freebsd-src/sys/dev/etherswitch/ar40xx/
H A Dar40xx_hw_mib.c73 #define MIB_DESC(_s , _o, _n) \ argument
/freebsd-src/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_tx99_tgt.c42 #define PWR_MAS(_r, _s) (((_r) & 0x3f) << (_s)) in ar9300_tx99_tgt_channel_pwr_update() argument
/freebsd-src/sys/dev/mgb/
H A Dif_mgb.h101 #define MGB_DMAC_CMD_RESET(_s, _ch) MGB_DMAC_CMD_VAL(_s, 8, _ch) argument
102 #define MGB_DMAC_CMD_START(_s, _ch) MGB_DMAC_CMD_VAL(_s, 4, _ch) argument
103 #define MGB_DMAC_CMD_STOP( _s, _ch) MGB_DMAC_CMD_VAL(_s, 0, _ch) argument
110 #define MGB_DMAC_CMD_STATE(sc, _s, _ch) \ argument
114 #define MGB_DMAC_STATE_IS_INITIAL(sc, _s, _c argument
[all...]
/freebsd-src/sys/dev/ice/
H A Dice_osdep.h183 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) do { \ argument
189 #define UNREFERENCED_5PARAMETER(_p, _q, _r, _s, _t) do { \ argument
199 #define MAKEMASK(_m, _s) ((_m) << (_s)) argument
/freebsd-src/sys/dev/iwm/
H A Dif_iwm_notif_wait.c84 #define IWM_WAIT_LOCK_INIT(_n, _s) \ argument
/freebsd-src/sys/dev/ath/
H A Dah_osdep.h71 #define OS_MEMCPY(_d, _s, _n) memcpy(_d,_s,_n) argument
/freebsd-src/sys/dev/iavf/
H A Diavf_osdep.h97 #define UNREFERENCED_4PARAMETER(_p, _q, _r, _s) do { \ argument
103 #define UNREFERENCED_5PARAMETER(_p, _q, _r, _s, _t) do { \ argument
/freebsd-src/contrib/ntp/ntpsnmpd/
H A Dntpsnmpd-opts.h242 # define _(_s) _s argument

123