| /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 70 #define __glibcxx_class_requires(_a,_C) \ argument 71 _GLIBCXX_CLASS_REQUIRES(_a, __gnu_cxx, _C); 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); [all …]
|
| /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 70 #define __glibcxx_class_requires(_a,_C) \ argument 71 _GLIBCXX_CLASS_REQUIRES(_a, __gnu_cxx, _C); 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); [all …]
|
| /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 89 #define ixgbe_uninit_iov(_a) do { } while (/*CONSTCOND*/false) argument 90 #define ixgbe_initialize_iov(_a) do { } while (/*CONSTCOND*/false) argument 91 #define ixgbe_recalculate_max_frame(_a) do { } while (/*CONSTCOND*/false) argument 92 #define ixgbe_ping_all_vfs(_a) do { } while (/*CONSTCOND*/false) argument 93 #define ixgbe_pci_iov_detach(_a) 0 argument 94 #define ixgbe_define_iov_schemas(_a,_b) do { } while (/*CONSTCOND*/false) argument 95 #define ixgbe_align_all_queue_indices(_a) do { } while (/*CONSTCOND*/false) argument 96 #define ixgbe_vf_que_index(_a, _b, _c) (_c) argument [all …]
|
| H A D | ixgbe_rss.h | 52 #define rss_getcpu(_a) 0 argument 54 #define rss_get_indirection_to_bucket(_a) 0 argument 56 #define rss_hash2bucket(_a,_b,_c) -1 argument 76 #define rss_getcpu(_a) 0 argument 78 #define rss_getkey(_a) do { } while (/*CONSTCOND*/false) argument 79 #define rss_get_indirection_to_bucket(_a) 0 argument 81 #define rss_hash2bucket(_a,_b,_c) -1 argument
|
| /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/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 94 #define doraw(_a) \ argument 97 saveeof = _a.c_cc[VMIN]; \ 98 saveeol = _a.c_cc[VTIME]; \ 100 _a.c_cc[VMIN] = 1; \ 101 _a.c_cc[VTIME] = 1; \ 102 _a.c_lflag &= ~(ICANON|ECHO|ECHOE|ECHOK|ECHONL) [all …]
|
| /netbsd-src/external/gpl2/lvm2/dist/include/ |
| H A D | util.h | 20 #define min(a, b) ({ typeof(a) _a = (a); \ 22 (void) (&_a == &_b); \ 23 _a < _b ? _a : _b; }) 25 #define max(a, b) ({ typeof(a) _a = (a); \ 27 (void) (&_a == &_b); \ 28 _a > _b ? _a : _b; })
|
| /netbsd-src/external/gpl2/lvm2/dist/lib/misc/ |
| H A D | util.h | 20 #define min(a, b) ({ typeof(a) _a = (a); \ 22 (void) (&_a == &_b); \ 23 _a < _b ? _a : _b; }) 25 #define max(a, b) ({ typeof(a) _a = (a); \ 27 (void) (&_a == &_b); \ 28 _a > _b ? _a : _b; })
|
| /netbsd-src/sys/external/bsd/dwc2/dist/ |
| H A D | dwc2_hw.h | 403 #define DPTXFSIZN(_a) HSOTG_REG(0x104 + (((_a) - 1) * 4)) argument 496 #define DIEPCTL(_a) HSOTG_REG(0x900 + ((_a) * 0x20)) argument 499 #define DOEPCTL(_a) HSOTG_REG(0xB00 + ((_a) * 0x20)) argument 546 #define DIEPINT(_a) HSOTG_REG(0x908 + ((_a) * 0x20)) argument 547 #define DOEPINT(_a) HSOTG_REG(0xB08 + ((_a) * 0x20)) argument 579 #define DIEPTSIZ(_a) HSOTG_REG(0x910 + ((_a) * 0x20)) argument 580 #define DOEPTSIZ(_a) HSOTG_REG(0xB10 + ((_a) * 0x20)) argument 596 #define DIEPDMA(_a) HSOTG_REG(0x914 + ((_a) * 0x20)) argument 597 #define DOEPDMA(_a) HSOTG_REG(0xB14 + ((_a) * 0x20)) argument 599 #define DTXFSTS(_a) HSOTG_REG(0x918 + ((_a) * 0x20)) argument [all …]
|
| /netbsd-src/external/bsd/libarchive/dist/libarchive/ |
| H A D | archive_write_set_passphrase.c | 53 archive_write_set_passphrase(struct archive *_a, const char *p) in archive_write_set_passphrase() argument 55 struct archive_write *a = (struct archive_write *)_a; in archive_write_set_passphrase() 57 archive_check_magic(_a, ARCHIVE_WRITE_MAGIC, ARCHIVE_STATE_NEW, in archive_write_set_passphrase() 65 archive_write_set_passphrase_callback(struct archive *_a, void *client_data, in archive_write_set_passphrase_callback() argument 68 struct archive_write *a = (struct archive_write *)_a; in archive_write_set_passphrase_callback() 70 archive_check_magic(_a, ARCHIVE_WRITE_MAGIC, ARCHIVE_STATE_NEW, in archive_write_set_passphrase_callback()
|
| H A D | archive_write_add_filter_grzip.c | 51 archive_write_add_filter_grzip(struct archive *_a) in archive_write_add_filter_grzip() argument 53 struct archive_write_filter *f = __archive_write_allocate_filter(_a); in archive_write_add_filter_grzip() 56 archive_check_magic(_a, ARCHIVE_WRITE_MAGIC, in archive_write_add_filter_grzip() 61 archive_set_error(_a, ENOMEM, "Can't allocate memory"); in archive_write_add_filter_grzip() 67 archive_set_error(_a, ENOMEM, "Can't allocate memory"); in archive_write_add_filter_grzip() 82 archive_set_error(_a, ARCHIVE_ERRNO_MISC, in archive_write_add_filter_grzip()
|
| H A D | archive_write_add_filter_lrzip.c | 57 archive_write_add_filter_lrzip(struct archive *_a) in archive_write_add_filter_lrzip() argument 59 struct archive_write_filter *f = __archive_write_allocate_filter(_a); in archive_write_add_filter_lrzip() 62 archive_check_magic(_a, ARCHIVE_WRITE_MAGIC, in archive_write_add_filter_lrzip() 67 archive_set_error(_a, ENOMEM, "Can't allocate memory"); in archive_write_add_filter_lrzip() 73 archive_set_error(_a, ENOMEM, "Can't allocate memory"); in archive_write_add_filter_lrzip() 88 archive_set_error(_a, ARCHIVE_ERRNO_MISC, in archive_write_add_filter_lrzip()
|
| H A D | archive_read_add_passphrase.c | 87 archive_read_add_passphrase(struct archive *_a, const char *passphrase) in archive_read_add_passphrase() argument 89 struct archive_read *a = (struct archive_read *)_a; in archive_read_add_passphrase() 92 archive_check_magic(_a, ARCHIVE_READ_MAGIC, ARCHIVE_STATE_NEW, in archive_read_add_passphrase() 110 archive_read_set_passphrase_callback(struct archive *_a, void *client_data, in archive_read_set_passphrase_callback() argument 113 struct archive_read *a = (struct archive_read *)_a; in archive_read_set_passphrase_callback() 115 archive_check_magic(_a, ARCHIVE_READ_MAGIC, ARCHIVE_STATE_NEW, in archive_read_set_passphrase_callback()
|
| /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 98 _a = a; in RangeT() 109 return _a >= _b; in RangeT() 114 return _b - _a; in RangeT() 121 return _outer[_a]; in RangeT() 132 ++_a; in RangeT() 147 assert(!empty && _a < _outer.length); in RangeT() 148 return move(_outer._data._payload[_a]); in RangeT() 159 assert(_a + i < _b && _a + i < _outer.length); in RangeT() 160 return move(_outer._data._payload[_a + i]); in RangeT() [all …]
|
| /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/external/gpl3/gcc/dist/libphobos/src/std/container/ |
| H A D | array.d | 143 private size_t _a, _b; in RangeT() local 152 _a = a; in RangeT() 163 return _a >= _b; in RangeT() 168 return _b - _a; in RangeT() 175 return _outer[_a]; in RangeT() 186 ++_a; in RangeT() 202 assert(_a < _outer.length, in RangeT() 204 return move(_outer._data._payload[_a]); in RangeT() 217 assert(_a + i < _b, in RangeT() 219 assert(_a + i < _outer.length, in RangeT() [all …]
|
| /netbsd-src/distrib/miniroot/ |
| H A D | install.sub | 67 _a=$1; shift 69 if [ "$_a" = "$1" ]; then return 0; fi 77 local _a 79 _a=$1; shift 81 if [ "$_a" != "$1" ]; then 90 local _a 101 read _a; set -- $_a 109 local _a 118 read _a; set -- $_a 126 local _a [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/ |
| H A D | memory.h | 117 u64 _a = (a), _c = (c), _d = (d); \ 119 for (; _c; _c--, _a += BIT(s)) \ 120 nvkm_wo##t((o), _a, _d); \ 125 u64 _a = (a), _c = (c), _d = (d), _o = _a >> s, _s = _c << s; \ 135 for (; _c; _c--, _a += BIT(s)) \ 136 nvkm_wo##t((o), _a, _d); \
|
| /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| H A D | nsusing.cc | 78 int _a = 1; variable 113 (void) B::_a; in marker2() 127 total = _a + b + c + d + marker2 (); // marker1 stop in marker1() 137 (void) _a; in main()
|
| H A D | nsnoimports.cc | 4 int _a = 11; variable 21 (void) _a; in first() 33 (void) A::_a; in main()
|
| /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 546 #define vec_dss(_a) argument 558 #define vec_dst(_a, _b, _c) argument 564 #define vec_dstst(_a, _b, _c) argument [all …]
|
| /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/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| H A D | nsnoimports.cc | 4 int _a = 11; variable 21 (void) _a; in first() 33 (void) A::_a; in main()
|