| /netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/ |
| H A D | buffer.h | 799 #define ISC__BUFFER_INIT(_b, _base, _length) \ argument 801 ISC_REQUIRE((_b) != NULL); \ 802 (_b)->base = _base; \ 803 (_b)->length = (_length); \ 804 (_b)->used = 0; \ 805 (_b)->current = 0; \ 806 (_b)->active = 0; \ 807 (_b)->mctx = NULL; \ 808 ISC_LINK_INIT(_b, link); \ 809 (_b)->magic = ISC_BUFFER_MAGIC; \ [all …]
|
| /netbsd-src/games/dab/ |
| H A D | box.cc | 53 _b(b) in BOX() 62 _b.getScrn()->moveto(y, x); in addcorner() 66 else if (y == _b.ty() - 1) in addcorner() 70 } else if (x == _b.tx() - 1) { in addcorner() 73 else if (y == _b.ty() - 1) in addcorner() 79 else if (y == _b.ty() - 1) in addcorner() 84 _b.getScrn()->addedge(sym); in addcorner() 91 if (_b.getScrn() == NULL) in paint() 94 _b.getScrn()->moveto(_centery, _centerx); in paint() 95 _b.getScrn()->addsym(name()); in paint() [all …]
|
| H A D | board.cc | 55 _b = new int*[_ty]; in BOARD() 58 _b[y] = new int[_tx]; in BOARD() 70 _b = new int*[_ty]; in BOARD() 73 _b[y] = new int[_tx]; in BOARD() 74 static_cast<void>(memcpy(_b[y], b._b[y], _tx * sizeof(int))); in BOARD() 83 delete[] _b[y]; in ~BOARD() 85 delete[] _b; in ~BOARD()
|
| H A D | algor.cc | 48 _edge1 = (_b.nx() * _b.ny()) * 2; in ALGOR() 50 _edge2 = (_b.nx() * (_b.ny() - 1)) + ((_b.nx() - 1) * _b.ny()); in ALGOR() 52 _maxedge = _b.nx() * _b.ny() * 2; in ALGOR() 89 for (size_t y = 0; y < _b.ny(); y++) { 92 BOX rbox(y,_b.nx() - 1, b);
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/sys/ |
| H A D | sysmacros.h | 353 #define DECL_BITFIELD2(_a, _b) \ argument 354 uint8_t _a, _b 355 #define DECL_BITFIELD3(_a, _b, _c) \ argument 356 uint8_t _a, _b, _c 357 #define DECL_BITFIELD4(_a, _b, _c, _d) \ argument 358 uint8_t _a, _b, _c, _d 359 #define DECL_BITFIELD5(_a, _b, _c, _d, _e) \ argument 360 uint8_t _a, _b, _c, _d, _e 361 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \ argument 362 uint8_t _a, _b, _c, _d, _e, _f [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| H A D | concept_check.h | 49 #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);
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| H A D | concept_check.h | 49 #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);
|
| /netbsd-src/external/gpl2/lvm2/dist/include/ |
| H A D | util.h | 21 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; })
|
| /netbsd-src/external/gpl2/lvm2/dist/lib/misc/ |
| H A D | util.h | 21 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; })
|
| /netbsd-src/external/bsd/nvi/usr.bin/nvi/ |
| H A D | compat.h | 118 #define MAX(_a,_b) ((_a)<(_b)?(_b):(_a)) argument 121 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) argument
|
| H A D | port.h | 118 #define MAX(_a,_b) ((_a)<(_b)?(_b):(_a)) argument 121 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) argument
|
| /netbsd-src/sys/sys/ |
| H A D | bitops.h | 298 __t _b[__BITMAP_SIZE(__t, __n)]; \ 307 ((__typeof__((__v)->_b[0]))1 << ((__n) & __BITMAP_MASK(*(__v)->_b))) 309 ((__n) >> __BITMAP_SHIFT(*(__v)->_b)) 312 ((__v)->_b[__BITMAP_WORD(__n, __v)] |= __BITMAP_BIT(__n, __v)) 314 ((__v)->_b[__BITMAP_WORD(__n, __v)] &= ~__BITMAP_BIT(__n, __v)) 316 ((__v)->_b[__BITMAP_WORD(__n, __v)] & __BITMAP_BIT(__n, __v)) 324 for (__i = 0; __i < __arraycount((__v)->_b); __i++) \ 325 (__v)->_b[__i] = 0; \
|
| /netbsd-src/sys/dev/pci/ixgbe/ |
| H A D | ixgbe_sriov.h | 87 #define ixgbe_add_vf(_a,_b,_c) do { } while (/*CONSTCOND*/false) argument 88 #define ixgbe_init_iov(_a,_b,_c) do { } while (/*CONSTCOND*/false) argument 94 #define ixgbe_define_iov_schemas(_a,_b) do { } while (/*CONSTCOND*/false) argument 96 #define ixgbe_vf_que_index(_a, _b, _c) (_c) argument
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
| H A D | array.d | 89 private size_t _a, _b; in RangeT() local 99 _b = b; in RangeT() 109 return _a >= _b; in RangeT() 114 return _b - _a; in RangeT() 126 return _outer[_b - 1]; in RangeT() 138 --_b; in RangeT() 153 assert(!empty && _b <= _outer.length); in RangeT() 154 return move(_outer._data._payload[_b - 1]); in RangeT() 159 assert(_a + i < _b && _a + i < _outer.length); in RangeT() 166 assert(_a + i < _b); in RangeT() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/ |
| H A D | array.d | 143 private size_t _a, _b; in RangeT() local 153 _b = b; in RangeT() 163 return _a >= _b; in RangeT() 168 return _b - _a; in RangeT() 180 return _outer[_b - 1]; in RangeT() 192 --_b; in RangeT() 210 assert(_b - 1 < _outer.length, in RangeT() 212 return move(_outer._data._payload[_b - 1]); in RangeT() 217 assert(_a + i < _b, in RangeT() 227 assert(_a + i < _b, in RangeT() [all …]
|
| /netbsd-src/external/bsd/nvi/dist/dist/ |
| H A D | port.h.in | 118 #define MAX(_a,_b) ((_a)<(_b)?(_b):(_a)) argument 121 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) argument
|
| /netbsd-src/games/larn/ |
| H A D | io.c | 81 #define stty(_a,_b) ioctl(_a,TCSETA,_b) argument 82 #define gtty(_a,_b) ioctl(_a,TCGETA,_b) argument 87 #define stty(_a,_b) tcsetattr(_a,TCSADRAIN,_b) argument 88 #define gtty(_a,_b) tcgetattr(_a,_b) argument
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rs6000/ |
| H A D | si2vmx.h | 279 #define si_a(_a, _b) ((qword)(vec_add((vec_uint4)(_a), (vec_uint4)(_b)))) argument 281 #define si_ah(_a, _b) ((qword)(vec_add((vec_ushort8)(_a), (vec_ushort8)(_b)))) argument 297 #define si_fa(_a, _b) ((qword)(vec_add((vec_float4)(_a), (vec_float4)(_b)))) argument 317 #define si_addx(_a, _b, _c) ((qword)(vec_add(vec_add((vec_uint4)(_a), (vec_uint4)(_b)), \ argument 323 #define si_and(_a, _b) ((qword)(vec_and((vec_uint4)(_a), (vec_uint4)(_b)))) argument 348 #define si_andc(_a, _b) ((qword)(vec_andc((vec_uchar16)(_a), (vec_uchar16)(_b)))) argument 353 #define si_avgb(_a, _b) ((qword)(vec_avg((vec_uchar16)(_a), (vec_uchar16)(_b)))) argument 365 #define si_bg(_a, _b) ((qword)(vec_subc((vec_uint4)(_b), (vec_uint4)(_a)))) argument 367 #define si_bgx(_a, _b, _c) ((qword)(vec_and(vec_or(vec_cmpgt((vec_uint4)(_b), (vec_uint4)(_a)), \ argument 368 vec_and(vec_cmpeq((vec_uint4)(_b), (vec_uint4)(_a)), \ [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| H A D | si2vmx.h | 279 #define si_a(_a, _b) ((qword)(vec_add((vec_uint4)(_a), (vec_uint4)(_b)))) argument 281 #define si_ah(_a, _b) ((qword)(vec_add((vec_ushort8)(_a), (vec_ushort8)(_b)))) argument 297 #define si_fa(_a, _b) ((qword)(vec_add((vec_float4)(_a), (vec_float4)(_b)))) argument 317 #define si_addx(_a, _b, _c) ((qword)(vec_add(vec_add((vec_uint4)(_a), (vec_uint4)(_b)), \ argument 323 #define si_and(_a, _b) ((qword)(vec_and((vec_uint4)(_a), (vec_uint4)(_b)))) argument 348 #define si_andc(_a, _b) ((qword)(vec_andc((vec_uchar16)(_a), (vec_uchar16)(_b)))) argument 353 #define si_avgb(_a, _b) ((qword)(vec_avg((vec_uchar16)(_a), (vec_uchar16)(_b)))) argument 365 #define si_bg(_a, _b) ((qword)(vec_subc((vec_uint4)(_b), (vec_uint4)(_a)))) argument 367 #define si_bgx(_a, _b, _c) ((qword)(vec_and(vec_or(vec_cmpgt((vec_uint4)(_b), (vec_uint4)(_a)), \ argument 368 vec_and(vec_cmpeq((vec_uint4)(_b), (vec_uint4)(_a)), \ [all …]
|
| /netbsd-src/sys/external/bsd/ipf/netinet/ |
| H A D | ip_compat.h | 1520 # define DT1(_n,_a,_b) DTRACE_PROBE1(_n,_a,_b) argument 1521 # define DT2(_n,_a,_b,_c,_d) DTRACE_PROBE2(_n,_a,_b,_c,_d) argument 1522 # define DT3(_n,_a,_b,_c,_d,_e,_f) \ argument 1523 DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f) 1524 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \ argument 1525 DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h) 1528 # define DT1(_n,_a,_b) argument 1529 # define DT2(_n,_a,_b,_c,_d) argument 1530 # define DT3(_n,_a,_b,_c,_d,_e,_f) argument 1531 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) argument [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/spu/ |
| H A D | vmx2spu.h | 168 #define vec_addc(_a, _b) spu_genc(_a, _b) argument 492 #define vec_cmpeq(_a, _b) spu_cmpeq(_a, _b) argument 507 #define vec_cmpgt(_a, _b) spu_cmpgt(_a, _b) argument 522 #define vec_cmplt(_a, _b) spu_cmpgt(_b, _a) argument 528 #define vec_ctf(_a, _b) spu_convtf(_a, _b) argument 534 #define vec_cts(_a, _b) spu_convts(_a, _b) argument 540 #define vec_ctu(_a, _b) spu_convtu(_a, _b) argument 558 #define vec_dst(_a, _b, _c) argument 564 #define vec_dstst(_a, _b, _c) argument 570 #define vec_dststt(_a, _b, _c) argument [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/include/ |
| H A D | roken.h | 161 #define rk_getpwnam_r(_n, _pw, _b, _sz, _pwd) getpwnam_r(_n, _pw, _b, _sz, _pwd) argument 162 #define rk_getpwuid_r(_u, _pw, _b, _sz, _pwd) getpwuid_r(_u, _pw, _b, _sz, _pwd) argument
|
| /netbsd-src/external/gpl2/gmake/dist/ |
| H A D | make.h | 534 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) argument 537 #define MAX(_a,_b) ((_a)>(_b)?(_a):(_b)) argument
|
| /netbsd-src/external/cddl/osnet/sys/sys/ |
| H A D | mman.h | 37 #define mmap64(_a,_b,_c,_d,_e,_f) mmap(_a,_b,_c,_d,_e,_f) argument
|
| /netbsd-src/sys/dev/raidframe/ |
| H A D | rf_nwayxor.c | 165 #define LOAD_FIRST(_dst,_b) \ argument 170 b0 = _b[0]; \ 171 b1 = _b[1]; \ 172 b2 = _b[2]; \ 173 b3 = _b[3]; _b += 4;
|