/netbsd-src/sys/arch/atari/atari/ |
H A D | le_bus.c | 248 #define __read_1(h, o) *((volatile uint8_t *)((h) + (o))) argument 249 #define __read_2(h, o) swap16(*((volatile uint16_t *)((h) + (o)))) argument 250 #define __read_4(h, o) swap32(*((volatile uint32_t *)((h) + (o)))) argument 251 #define __read_8(h, o) bswap64(*((volatile uint64_t *)((h) + (o)))) argument 253 #define __write_1(h, o, v) *((volatile uint8_t *)((h) + (o))) = (v) argument 254 #define __write_2(h, o, v) *((volatile uint16_t *)((h) + (o))) = swap16(v) argument 255 #define __write_4(h, o, v) *((volatile uint32_t *)((h) + (o))) = swap32(v) argument 256 #define __write_8(h, o, v) *((volatile uint64_t *)((h) + (o))) = bswap64(v) argument 350 leb_bus_space_peek_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o) in leb_bus_space_peek_1() 357 leb_bus_space_peek_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o) in leb_bus_space_peek_2() [all …]
|
H A D | be_bus.c | 164 #define __read_1(h, o) *((volatile uint8_t *)((h) + (o))) argument 165 #define __read_2(h, o) *((volatile uint16_t *)((h) + (o))) argument 166 #define __read_4(h, o) *((volatile uint32_t *)((h) + (o))) argument 167 #define __read_8(h, o) *((volatile uint64_t *)((h) + (o))) argument 169 #define __write_1(h, o, v) *((volatile uint8_t *)((h) + (o))) = (v) argument 170 #define __write_2(h, o, v) *((volatile uint16_t *)((h) + (o))) = (v) argument 171 #define __write_4(h, o, v) *((volatile uint32_t *)((h) + (o))) = (v) argument 172 #define __write_8(h, o, v) *((volatile uint64_t *)((h) + (o))) = (v) argument 266 beb_bus_space_peek_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o) in beb_bus_space_peek_1() 273 beb_bus_space_peek_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o) in beb_bus_space_peek_2() [all …]
|
H A D | mainbus.c | 144 #define __read_1(t, h, o) \ argument 146 #define __read_2(t, h, o) \ argument 148 #define __read_4(t, h, o) \ argument 150 #define __read_8(t, h, o) \ argument 153 #define __write_1(t, h, o, v) \ argument 156 #define __write_2(t, h, o, v) \ argument 159 #define __write_4(t, h, o, v) \ argument 162 #define __write_8(t, h, o, v) \ argument 243 mb_bus_space_peek_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o) in mb_bus_space_peek_1() 250 mb_bus_space_peek_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o) in mb_bus_space_peek_2() [all …]
|
/netbsd-src/external/mit/libuv/dist/test/ |
H A D | test-ref.c | 110 uv_idle_t h; in TEST_IMPL() local 122 uv_async_t h; in TEST_IMPL() local 133 uv_prepare_t h; in TEST_IMPL() local 145 uv_check_t h; in TEST_IMPL() local 156 static void prepare_cb(uv_prepare_t* h) { in prepare_cb() 163 uv_prepare_t h; in TEST_IMPL() local 174 uv_timer_t h; in TEST_IMPL() local 185 uv_timer_t h; in TEST_IMPL() local 200 uv_fs_event_t h; in TEST_IMPL() local 212 uv_fs_poll_t h; in TEST_IMPL() local [all …]
|
/netbsd-src/sys/arch/mac68k/mac68k/ |
H A D | bus_space.c | 223 bus_space_unmap(bus_space_tag_t t, bus_space_handle_t h, bus_size_t size) in bus_space_unmap() 254 bus_space_free(bus_space_tag_t t, bus_space_handle_t h, bus_size_t size) in bus_space_free() 261 bus_space_subregion(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, in bus_space_subregion() 271 mac68k_bus_space_probe(bus_space_tag_t t, bus_space_handle_t h, in mac68k_bus_space_probe() 303 mac68k_bus_space_handle_swapped(bus_space_tag_t t, bus_space_handle_t *h) in mac68k_bus_space_handle_swapped() 327 mac68k_bus_space_handle_set_stride(bus_space_tag_t t, bus_space_handle_t *h, in mac68k_bus_space_handle_set_stride() 369 mac68k_bsr1(bus_space_tag_t t, bus_space_handle_t *h, bus_size_t offset) in mac68k_bsr1() 375 mac68k_bsr1_gen(bus_space_tag_t t, bus_space_handle_t *h, bus_size_t offset) in mac68k_bsr1_gen() 381 mac68k_bsr2(bus_space_tag_t t, bus_space_handle_t *h, bus_size_t offset) in mac68k_bsr2() 387 mac68k_bsr2_swap(bus_space_tag_t t, bus_space_handle_t *h, bus_size_t offset) in mac68k_bsr2_swap() [all …]
|
/netbsd-src/external/gpl2/grep/dist/lib/ |
H A D | obstack.h | 275 #define obstack_base(h) ((h)->object_base) argument 279 #define obstack_chunk_size(h) ((h)->chunk_size) argument 283 #define obstack_next_free(h) ((h)->next_free) argument 287 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument 293 # define obstack_init(h) \ argument 297 # define obstack_begin(h, size) \ argument 301 # define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument 305 # define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \ argument 310 # define obstack_chunkfun(h, newchunkfun) \ argument 313 # define obstack_freefun(h, newfreefun) \ argument [all …]
|
/netbsd-src/sys/arch/amigappc/include/ |
H A D | bus_funcs.h | 37 #define bus_space_subregion(t, h, o, s, hp) \ argument 40 #define bus_space_unmap(t, h, s) \ argument 49 #define dbsdr(n, t, h, o) ((t)->absm->n)((h), (o)) argument 50 #define dbsdw(n, t, h, o, v) ((t)->absm->n)((h), (o), (v)) argument 51 #define dbsm(n, t, h, o, p, c) ((t)->absm->n)((h), (o), (p), (c)) argument 52 #define dbss(n, t, h, o, v, c) ((t)->absm->n)((h), (o), (v), (c)) argument 53 #define dbsc(n, t, h, o, v, c) ((t)->absm->n)((h), (o), (v), (c)) argument 57 #define bus_space_read_1(t, h, o) dbsdr(bsr1, t, h, o) argument 58 #define bus_space_write_1(t, h, o, v) dbsdw(bsw1, t, h, o, v) argument 60 #define bus_space_read_multi_1(t, h, o, p, c) dbsm(bsrm1, t, h, o, p, c) argument [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/ |
H A D | ec_curve.c | 28 EC_CURVE_DATA h; member 60 EC_CURVE_DATA h; member 98 EC_CURVE_DATA h; member 142 EC_CURVE_DATA h; member 199 EC_CURVE_DATA h; member 231 EC_CURVE_DATA h; member 263 EC_CURVE_DATA h; member 301 EC_CURVE_DATA h; member 339 EC_CURVE_DATA h; member 377 EC_CURVE_DATA h; member [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/ |
H A D | ec_curve.c | 34 EC_CURVE_DATA h; member 66 EC_CURVE_DATA h; member 104 EC_CURVE_DATA h; member 148 EC_CURVE_DATA h; member 206 EC_CURVE_DATA h; member 238 EC_CURVE_DATA h; member 270 EC_CURVE_DATA h; member 308 EC_CURVE_DATA h; member 346 EC_CURVE_DATA h; member 385 EC_CURVE_DATA h; member [all …]
|
/netbsd-src/sys/arch/mips/include/ |
H A D | bus_space_funcs.h | 70 #define __bs_r(type, sz, tn, t, h, o) \ argument 74 #define __bs_w(type, sz, tn, t, h, o, v) \ argument 80 #define __bs_nonsingle(type, sz, tn, t, h, o, a, c) \ argument 87 #define __bs_set(type, sz, tn, t, h, o, v, c) \ argument 108 #define bus_space_unmap(t, h, s) \ argument 110 #define mips_bus_space_unmap_noacct(t, h, s) \ argument 112 #define bus_space_subregion(t, h, o, s, hp) \ argument 126 #define bus_space_free(t, h, s) \ argument 132 #define bus_space_vaddr(t, h) \ argument 144 #define bus_space_barrier(t, h, o, l, f) \ argument [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
H A D | obstack.h | 210 #define obstack_base(h) ((void *) (h)->object_base) argument 214 #define obstack_chunk_size(h) ((h)->chunk_size) argument 218 #define obstack_next_free(h) ((h)->next_free) argument 222 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument 225 #define obstack_init(h) \ argument 230 #define obstack_begin(h, size) \ argument 235 #define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument 240 #define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \ argument 245 #define obstack_chunkfun(h, newchunkfun) \ argument 248 #define obstack_freefun(h, newfreefun) \ argument [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
H A D | obstack.h | 210 #define obstack_base(h) ((void *) (h)->object_base) argument 214 #define obstack_chunk_size(h) ((h)->chunk_size) argument 218 #define obstack_next_free(h) ((h)->next_free) argument 222 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument 225 #define obstack_init(h) \ argument 230 #define obstack_begin(h, size) \ argument 235 #define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument 240 #define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \ argument 245 #define obstack_chunkfun(h, newchunkfun) \ argument 248 #define obstack_freefun(h, newfreefun) \ argument [all …]
|
/netbsd-src/sys/arch/mac68k/include/ |
H A D | bus.h | 262 #define bus_space_read_1(t,h,o) (h).bsr1((t), &(h), (o)) argument 263 #define bus_space_read_2(t,h,o) (h).bsr2((t), &(h), (o)) argument 264 #define bus_space_read_4(t,h,o) (h).bsr4((t), &(h), (o)) argument 265 #define bus_space_read_stream_1(t,h,o) (h).bsrs1((t), &(h), (o)) argument 266 #define bus_space_read_stream_2(t,h,o) (h).bsrs2((t), &(h), (o)) argument 267 #define bus_space_read_stream_4(t,h,o) (h).bsrs4((t), &(h), (o)) argument 302 #define bus_space_read_multi_1(t, h, o, a, c) do { \ argument 306 #define bus_space_read_multi_2(t, h, o, a, c) do { \ argument 310 #define bus_space_read_multi_4(t, h, o, a, c) do { \ argument 314 #define bus_space_read_multi_stream_1(t, h, o, a, c) do { \ argument [all …]
|
/netbsd-src/sys/arch/amiga/include/ |
H A D | bus.h | 160 #define bus_space_subregion(t, h, o, s, hp) \ argument 163 #define bus_space_unmap(t, h, s) \ argument 172 #define dbsdr(n, t, h, o) ((t)->absm->n)((h), (o)) argument 173 #define dbsdw(n, t, h, o, v) ((t)->absm->n)((h), (o), (v)) argument 174 #define dbsm(n, t, h, o, p, c) ((t)->absm->n)((h), (o), (p), (c)) argument 175 #define dbss(n, t, h, o, v, c) ((t)->absm->n)((h), (o), (v), (c)) argument 176 #define dbsc(n, t, h, o, v, c) ((t)->absm->n)((h), (o), (v), (c)) argument 180 #define bus_space_read_1(t, h, o) dbsdr(bsr1, t, h, o) argument 181 #define bus_space_write_1(t, h, o, v) dbsdw(bsw1, t, h, o, v) argument 183 #define bus_space_read_multi_1(t, h, o, p, c) dbsm(bsrm1, t, h, o, p, c) argument [all …]
|
/netbsd-src/sys/arch/atari/include/ |
H A D | bus_funcs.h | 95 #define __abs_p(sz, t, h, o) \ argument 97 #define __abs_rs(sz, t, h, o) \ argument 99 #define __abs_rss(sz, t, h, o) \ argument 101 #define __abs_ws(sz, t, h, o, v) \ argument 103 #define __abs_wss(sz, t, h, o, v) \ argument 105 #define __abs_nonsingle(type, sz, t, h, o, a, c) \ argument 107 #define __abs_set(type, sz, t, h, o, v, c) \ argument 128 #define bus_space_peek_1(t, h, o) __abs_p(1,(t),(h),(o)) argument 129 #define bus_space_peek_2(t, h, o) __abs_p(2,(t),(h),(o)) argument 130 #define bus_space_peek_4(t, h, o) __abs_p(4,(t),(h),(o)) argument [all …]
|
/netbsd-src/sys/arch/news68k/include/ |
H A D | bus.h | 167 #define bus_space_read_1(t, h, o) \ argument 170 #define bus_space_read_2(t, h, o) \ argument 173 #define bus_space_read_4(t, h, o) \ argument 185 #define bus_space_read_multi_1(t, h, o, a, c) do { \ argument 199 #define bus_space_read_multi_2(t, h, o, a, c) do { \ argument 213 #define bus_space_read_multi_4(t, h, o, a, c) do { \ argument 237 #define bus_space_read_region_1(t, h, o, a, c) do { \ argument 251 #define bus_space_read_region_2(t, h, o, a, c) do { \ argument 265 #define bus_space_read_region_4(t, h, o, a, c) do { \ argument 288 #define bus_space_write_1(t, h, o, v) \ argument [all …]
|
/netbsd-src/sys/arch/luna68k/include/ |
H A D | bus.h | 151 #define bus_space_read_1(t, h, o) \ argument 154 #define bus_space_read_2(t, h, o) \ argument 157 #define bus_space_read_4(t, h, o) \ argument 169 #define bus_space_read_multi_1(t, h, o, a, c) do { \ argument 183 #define bus_space_read_multi_2(t, h, o, a, c) do { \ argument 197 #define bus_space_read_multi_4(t, h, o, a, c) do { \ argument 221 #define bus_space_read_region_1(t, h, o, a, c) do { \ argument 236 #define bus_space_read_region_2(t, h, o, a, c) do { \ argument 251 #define bus_space_read_region_4(t, h, o, a, c) do { \ argument 274 #define bus_space_write_1(t, h, o, v) \ argument [all …]
|
/netbsd-src/external/bsd/mdocml/dist/ |
H A D | html.c | 128 struct html *h; in html_alloc() local 150 html_reset_internal(struct html *h) in html_reset_internal() 183 print_gen_head(struct html *h) in print_gen_head() 226 print_metaf(struct html *h, enum mandoc_esc deco) in print_metaf() 282 html_close_paragraph(struct html *h) in html_close_paragraph() 307 html_fillmode(struct html *h, enum roff_tok want) in html_fillmode() 393 print_escape(struct html *h, char c) in print_escape() 424 print_encode(struct html *h, const char *p, const char *pend, int norecurse) in print_encode() 550 print_href(struct html *h, const char *name, const char *sec, int man) in print_href() 586 print_otag(struct html *h, enum htmltag tag, const char *fmt, ...) in print_otag() [all …]
|
/netbsd-src/sys/arch/next68k/include/ |
H A D | bus_space.h | 91 #define bus_space_unmap(t, h, s) argument 93 #define bus_space_subregion(t, h, o, s, hp) \ argument 105 #define bus_space_free(t, h, s) argument 124 #define bus_space_read_1(t, h, o) \ argument 127 #define bus_space_read_2(t, h, o) \ argument 130 #define bus_space_read_4(t, h, o) \ argument 142 #define bus_space_read_multi_1(t, h, o, a, c) do { \ argument 156 #define bus_space_read_multi_2(t, h, o, a, c) do { \ argument 170 #define bus_space_read_multi_4(t, h, o, a, c) do { \ argument 194 #define bus_space_read_region_1(t, h, o, a, c) do { \ argument [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/include/ |
H A D | obstack.h | 228 #define obstack_base(h) ((void *) (h)->object_base) argument 232 #define obstack_chunk_size(h) ((h)->chunk_size) argument 236 #define obstack_next_free(h) ((void *) (h)->next_free) argument 240 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument 243 #define obstack_init(h) \ argument 248 #define obstack_begin(h, size) \ argument 253 #define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument 258 #define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \ argument 263 #define obstack_chunkfun(h, newchunkfun) \ argument 266 #define obstack_freefun(h, newfreefun) \ argument [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/include/ |
H A D | obstack.h | 228 #define obstack_base(h) ((void *) (h)->object_base) argument 232 #define obstack_chunk_size(h) ((h)->chunk_size) argument 236 #define obstack_next_free(h) ((void *) (h)->next_free) argument 240 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument 243 #define obstack_init(h) \ argument 248 #define obstack_begin(h, size) \ argument 253 #define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument 258 #define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \ argument 263 #define obstack_chunkfun(h, newchunkfun) \ argument 266 #define obstack_freefun(h, newfreefun) \ argument [all …]
|
/netbsd-src/external/gpl3/binutils/dist/include/ |
H A D | obstack.h | 228 #define obstack_base(h) ((void *) (h)->object_base) argument 232 #define obstack_chunk_size(h) ((h)->chunk_size) argument 236 #define obstack_next_free(h) ((void *) (h)->next_free) argument 240 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument 243 #define obstack_init(h) \ argument 248 #define obstack_begin(h, size) \ argument 253 #define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument 258 #define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \ argument 263 #define obstack_chunkfun(h, newchunkfun) \ argument 266 #define obstack_freefun(h, newfreefun) \ argument [all …]
|
/netbsd-src/external/gpl3/gcc/dist/include/ |
H A D | obstack.h | 228 #define obstack_base(h) ((void *) (h)->object_base) argument 232 #define obstack_chunk_size(h) ((h)->chunk_size) argument 236 #define obstack_next_free(h) ((void *) (h)->next_free) argument 240 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument 243 #define obstack_init(h) \ argument 248 #define obstack_begin(h, size) \ argument 253 #define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument 258 #define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \ argument 263 #define obstack_chunkfun(h, newchunkfun) \ argument 266 #define obstack_freefun(h, newfreefun) \ argument [all …]
|
/netbsd-src/sys/arch/virt68k/include/ |
H A D | bus_space.h | 140 #define bus_space_subregion(t, h, o, s, hp) \ argument 149 #define bus_space_free(t, h, s) argument 160 #define bus_space_peek_1(t, h, o, vp) \ argument 163 #define bus_space_peek_2(t, h, o, vp) \ argument 166 #define bus_space_peek_4(t, h, o, vp) \ argument 178 #define bus_space_poke_1(t, h, o, v) \ argument 181 #define bus_space_poke_2(t, h, o, v) \ argument 184 #define bus_space_poke_4(t, h, o, v) \ argument 195 bus_space_read_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o) in bus_space_read_1() 202 bus_space_read_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o) in bus_space_read_2() [all …]
|
/netbsd-src/sys/arch/mvme68k/include/ |
H A D | bus_space.h | 148 #define bus_space_subregion(t, h, o, s, hp) \ argument 157 #define bus_space_free(t, h, s) argument 168 #define bus_space_peek_1(t, h, o, vp) \ argument 171 #define bus_space_peek_2(t, h, o, vp) \ argument 174 #define bus_space_peek_4(t, h, o, vp) \ argument 186 #define bus_space_poke_1(t, h, o, v) \ argument 189 #define bus_space_poke_2(t, h, o, v) \ argument 192 #define bus_space_poke_4(t, h, o, v) \ argument 202 #define bus_space_read_1(t,h,o) \ argument 204 #define bus_space_read_2(t,h,o) \ argument [all …]
|