Home
last modified time | relevance | path

Searched refs:_b (Results 1 – 25 of 32) sorted by relevance

12

/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dconcept_check.h48 #define __glibcxx_class_requires(_a,_b) argument
49 #define __glibcxx_class_requires2(_a,_b,_c) argument
50 #define __glibcxx_class_requires3(_a,_b,_c,_d) argument
51 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e) argument
71 #define __glibcxx_class_requires2(_a,_b,_C) \ argument
72 _GLIBCXX_CLASS_REQUIRES2(_a, _b, __gnu_cxx, _C);
73 #define __glibcxx_class_requires3(_a,_b,_c,_C) \ argument
74 _GLIBCXX_CLASS_REQUIRES3(_a, _b, _c, __gnu_cxx, _C);
75 #define __glibcxx_class_requires4(_a,_b,_c,_d,_C) \ argument
76 _GLIBCXX_CLASS_REQUIRES4(_a, _b, _c, _d, __gnu_cxx, _C);
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dconcept_check.h49 #define __glibcxx_class_requires(_a,_b) argument
50 #define __glibcxx_class_requires2(_a,_b,_c) argument
51 #define __glibcxx_class_requires3(_a,_b,_c,_d) argument
52 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e) argument
72 #define __glibcxx_class_requires2(_a,_b,_C) \ argument
73 _GLIBCXX_CLASS_REQUIRES2(_a, _b, __gnu_cxx, _C);
74 #define __glibcxx_class_requires3(_a,_b,_c,_C) \ argument
75 _GLIBCXX_CLASS_REQUIRES3(_a, _b, _c, __gnu_cxx, _C);
76 #define __glibcxx_class_requires4(_a,_b,_c,_d,_C) \ argument
77 _GLIBCXX_CLASS_REQUIRES4(_a, _b, _c, _d, __gnu_cxx, _C);
/dragonfly/contrib/lvm2/dist/include/
H A Dutil.h21 typeof(b) _b = (b); \
22 (void) (&_a == &_b); \
23 _a < _b ? _a : _b; })
26 typeof(b) _b = (b); \
27 (void) (&_a == &_b); \
28 _a > _b ? _a : _b; })
/dragonfly/contrib/lvm2/dist/lib/misc/
H A Dutil.h21 typeof(b) _b = (b); \
22 (void) (&_a == &_b); \
23 _a < _b ? _a : _b; })
26 typeof(b) _b = (b); \
27 (void) (&_a == &_b); \
28 _a > _b ? _a : _b; })
/dragonfly/sys/bus/u4b/
H A Dusb_core.h44 #define USB_BUS_LOCK(_b) lockmgr(&(_b)->bus_lock, LK_EXCLUSIVE) argument
45 #define USB_BUS_UNLOCK(_b) lockmgr(&(_b)->bus_lock, LK_RELEASE) argument
46 #define USB_BUS_LOCK_ASSERT(_b) KKASSERT(lockowned(&(_b)->bus_lock)) argument
47 #define USB_BUS_LOCK_ASSERT_NOTOWNED(_b) KKASSERT(!lockowned(&(_b)->bus_lock)) argument
/dragonfly/contrib/nvi2/common/
H A Dutil.h59 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) argument
60 #define MAX(_a,_b) ((_a)<(_b)?(_b):(_a)) argument
/dragonfly/tools/tools/ath/common/
H A Dah_osdep.h49 #define OS_MACEQU(_a, _b) \ argument
50 (bcmp((_a), (_b), IEEE80211_ADDR_LEN) == 0)
67 #define __printflike(_a,_b) \ argument
68 __attribute__ ((__format__ (__printf__, _a, _b)))
/dragonfly/sys/dev/disk/ahci/
H A Dahci.h576 #define ahci_pwait_clr(_ap, _r, _b) \ argument
577 ahci_pwait_eq((_ap), AHCI_PWAIT_TIMEOUT, (_r), (_b), 0)
578 #define ahci_pwait_clr_to(_ap, _to, _r, _b) \ argument
579 ahci_pwait_eq((_ap), _to, (_r), (_b), 0)
582 #define ahci_pwait_set(_ap, _r, _b) \ argument
583 ahci_pwait_eq((_ap), AHCI_PWAIT_TIMEOUT, (_r), (_b), (_b))
584 #define ahci_pwait_set_to(_ap, _to, _r, _b) \ argument
585 ahci_pwait_eq((_ap), _to, (_r), (_b), (_b))
/dragonfly/sys/dev/disk/sili/
H A Dsili.h849 #define sili_pwait_clr(_ap, _r, _b) \ argument
850 sili_pwait_eq((_ap), SILI_PWAIT_TIMEOUT, (_r), (_b), 0)
851 #define sili_pwait_clr_to(_ap, _to, _r, _b) \ argument
852 sili_pwait_eq((_ap), _to, (_r), (_b), 0)
855 #define sili_pwait_set(_ap, _r, _b) \ argument
856 sili_pwait_eq((_ap), SILI_PWAIT_TIMEOUT, (_r), (_b), (_b))
857 #define sili_pwait_set_to(_ap, _to, _r, _b) \ argument
858 sili_pwait_eq((_ap), _to, (_r), (_b), (_b))
/dragonfly/sys/netproto/802_11/wlan_ccmp/
H A Dieee80211_crypto_ccmp.c410 #define CCMP_ENCRYPT(_i, _b, _b0, _pos, _e, _len) do { \ argument
412 xor_block(_b, _pos, _len); \
413 rijndael_encrypt(&ctx->cc_aes, _b, _b); \
555 #define CCMP_DECRYPT(_i, _b, _b0, _pos, _a, _len) do { \ argument
559 rijndael_encrypt(&ctx->cc_aes, _b0, _b); \
560 xor_block(_pos, _b, _len); \
/dragonfly/sys/dev/netif/ath/ath_hal/
H A Dah_osdep.h84 #define OS_MEMCMP(_a, _b, _l) memcmp((_a), (_b), (_l)) argument
/dragonfly/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.c94 # define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0) argument
97 # define MIN(_a, _b) (((_a) < (_b)) ? (_a) : (_b)) argument
100 # define MAX(_a, _b) (((_a) > (_b)) ? (_a) : (_b)) argument
102 #define STACK_PUSH(_a, _b, _c, _d)\ argument
105 stack[ssize].a = (_a), stack[ssize].b = (_b),\
108 #define STACK_PUSH5(_a, _b, _c, _d, _e)\ argument
111 stack[ssize].a = (_a), stack[ssize].b = (_b),\
114 #define STACK_POP(_a, _b, _c, _d)\ argument
118 (_a) = stack[--ssize].a, (_b) = stack[ssize].b,\
121 #define STACK_POP5(_a, _b, _c, _d, _e)\ argument
[all …]
/dragonfly/tools/tools/bus_autoconf/
H A Dbus_usb.c59 usb_compare(const void *_a, const void *_b) in usb_compare() argument
62 const struct usb_device_id *b = _b; in usb_compare()
/dragonfly/sys/netproto/802_11/wlan/
H A Dieee80211_regdomain.c170 #define swap(_a, _b, _size) { \ argument
171 uint8_t *s = _b; \
H A Dieee80211_scan_sta.c834 #define PREFER(_a,_b,_what) do { \ in sta_compare() argument
835 if (((_a) ^ (_b)) & (_what)) \ in sta_compare()
/dragonfly/test/libpthread/
H A DREADME19 <name>_b*.c : Back end C program used by perl tests.
/dragonfly/sys/dev/netif/ath/ath/
H A Dif_athvar.h1413 #define ath_hal_filltxdesc(_ah, _ds, _b, _l, _did, _qid, _first, _last, _ds0) \ argument
1414 ((*(_ah)->ah_fillTxDesc)((_ah), (_ds), (_b), (_l), (_did), (_qid), \
1466 #define ath_hal_gpioset(_ah, _gpio, _b) \ argument
1467 ((*(_ah)->ah_gpioSet)((_ah), (_gpio), (_b)))
1470 #define ath_hal_gpiosetintr(_ah, _gpio, _b) \ argument
1471 ((*(_ah)->ah_gpioSetIntr)((_ah), (_gpio), (_b)))
/dragonfly/contrib/wpa_supplicant/src/utils/
H A Dcommon.c909 int _b = *(int *) b; in freq_cmp() local
913 if (_b == 0) in freq_cmp()
915 return _a - _b; in freq_cmp()
/dragonfly/games/larn/
H A Ddisplay.c4 #define makecode(_a,_b,_c) (((_a)<<16) + ((_b)<<8) + (_c)) argument
/dragonfly/contrib/wpa_supplicant/wpa_supplicant/
H A Dmbo.c299 static int wpa_non_pref_chan_cmp(const void *_a, const void *_b) in wpa_non_pref_chan_cmp() argument
301 const struct wpa_mbo_non_pref_channel *a = _a, *b = _b; in wpa_non_pref_chan_cmp()
/dragonfly/usr.sbin/lpr/pac/
H A Dpac.c91 static int qucmp(const void *_a, const void *_b);
/dragonfly/contrib/gcc-4.7/libgcc/soft-fp/
H A Dop-2.h262 _FP_FRAC_DECL_4(_z); _FP_FRAC_DECL_2(_b); _FP_FRAC_DECL_2(_c); \
292 _FP_FRAC_DECL_4(_z); _FP_FRAC_DECL_2(_b); _FP_FRAC_DECL_2(_c); \
/dragonfly/contrib/mpfr/src/
H A Dmpfr-impl.h1036 __extension__ ({ int _b; mp_limb_t _limb; \
1040 count_leading_zeros (_b, _limb); \
1041 (GMP_NUMB_BITS - _b); }))
/dragonfly/usr.bin/evtranalyze/
H A Devtranalyze.c241 cmpfunc_ctor(uintptr_t _a, uintptr_t _b) in cmpfunc_ctor() argument
245 valb = (evtr_variable_value_t)_b; in cmpfunc_ctor()
/dragonfly/contrib/tre/lib/
H A Dtre-compile.c1494 tre_last_matched_branch_t *_b; in tre_add_tags() local
1519 _b = b; in tre_add_tags()
1605 if (b != _b + tree->last_matched_branch->tot_branches) in tre_add_tags()
1607 b, _b + tree->last_matched_branch->tot_branches)); in tre_add_tags()

12