Home
last modified time | relevance | path

Searched defs:o (Results 1 – 25 of 1243) sorted by relevance

12345678910>>...50

/netbsd/external/mpl/bind/include/isc/
H A Datomic.h32 #define atomic_store_relaxed(o, v) \ argument
35 #define atomic_fetch_add_relaxed(o, v) \ argument
37 #define atomic_fetch_sub_relaxed(o, v) \ argument
39 #define atomic_fetch_or_relaxed(o, v) \ argument
41 #define atomic_fetch_and_relaxed(o, v) \ argument
43 #define atomic_exchange_relaxed(o, v) \ argument
57 #define atomic_store_release(o, v) \ argument
60 #define atomic_fetch_add_release(o, v) \ argument
62 #define atomic_fetch_sub_release(o, v) \ argument
66 #define atomic_fetch_or_release(o, v) \ argument
[all …]
/netbsd/external/mpl/bind/dist/lib/isc/include/isc/
H A Datomic.h30 #define atomic_store_relaxed(o, v) \ argument
33 #define atomic_fetch_add_relaxed(o, v) \ argument
35 #define atomic_fetch_sub_relaxed(o, v) \ argument
37 #define atomic_fetch_or_relaxed(o, v) \ argument
39 #define atomic_fetch_and_relaxed(o, v) \ argument
41 #define atomic_exchange_relaxed(o, v) \ argument
55 #define atomic_store_release(o, v) \ argument
58 #define atomic_fetch_add_release(o, v) \ argument
60 #define atomic_fetch_sub_release(o, v) \ argument
64 #define atomic_fetch_or_release(o, v) \ argument
[all …]
/netbsd/external/bsd/kyua-cli/dist/utils/cmdline/
H A Doptions_test.cpp108 const mock_option o('f', "force", "Force execution"); in ATF_TEST_CASE_BODY() local
156 const mock_option o("dryrun", "Dry run mode"); in ATF_TEST_CASE_BODY() local
168 const mock_option o("helper", "Path to helper", "path"); in ATF_TEST_CASE_BODY() local
197 const cmdline::bool_option o('f', "force", "Force execution"); in ATF_TEST_CASE_BODY() local
209 const cmdline::bool_option o("force", "Force execution"); in ATF_TEST_CASE_BODY() local
235 const cmdline::int_option o("int", "The int", "arg", "value"); in ATF_TEST_CASE_BODY() local
249 const cmdline::int_option o("int", "The int", "arg"); in ATF_TEST_CASE_BODY() local
283 const cmdline::list_option o("list", "The list", "arg", "value"); in ATF_TEST_CASE_BODY() local
297 const cmdline::list_option o("list", "The list", "arg"); in ATF_TEST_CASE_BODY() local
388 const cmdline::path_option o("path", "The path", "arg"); in ATF_TEST_CASE_BODY() local
[all …]
/netbsd/sys/arch/atari/atari/
H A Dle_bus.c461 bus_size_t o) in leb_bus_space_read_stream_2()
469 bus_size_t o) in leb_bus_space_read_stream_4()
477 bus_size_t o) in leb_bus_space_read_stream_8()
492 bus_size_t o, uint16_t v) in leb_bus_space_write_stream_2()
500 bus_size_t o, uint32_t v) in leb_bus_space_write_stream_4()
508 bus_size_t o, uint64_t v) in leb_bus_space_write_stream_8()
526 bus_size_t o, uint8_t *a, bus_size_t c) in leb_bus_space_read_multi_1()
688 bus_size_t o, uint8_t *a, bus_size_t c) in leb_bus_space_read_region_1()
850 bus_size_t o, uint8_t v, bus_size_t c) in leb_bus_space_set_multi_1()
859 bus_size_t o, uint16_t v, bus_size_t c) in leb_bus_space_set_multi_2()
[all …]
H A Dbe_bus.c380 bus_size_t o, uint8_t *a, bus_size_t c) in beb_bus_space_read_multi_1()
389 bus_size_t o, uint16_t *a, bus_size_t c) in beb_bus_space_read_multi_2()
471 bus_size_t o, uint8_t *a, bus_size_t c) in beb_bus_space_read_region_1()
560 bus_size_t o, uint8_t v, bus_size_t c) in beb_bus_space_set_multi_1()
569 bus_size_t o, uint16_t v, bus_size_t c) in beb_bus_space_set_multi_2()
578 bus_size_t o, uint32_t v, bus_size_t c) in beb_bus_space_set_multi_4()
587 bus_size_t o, uint64_t v, bus_size_t c) in beb_bus_space_set_multi_8()
604 bus_size_t o, uint8_t v, bus_size_t c) in beb_bus_space_set_region_1()
613 bus_size_t o, uint16_t v, bus_size_t c) in beb_bus_space_set_region_2()
622 bus_size_t o, uint32_t v, bus_size_t c) in beb_bus_space_set_region_4()
[all …]
H A Dmainbus.c144 #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
333 bus_size_t o, uint8_t *a, bus_size_t c) in mb_bus_space_read_multi_1()
519 bus_size_t o, uint8_t v, bus_size_t c) in mb_bus_space_set_multi_1()
[all …]
/netbsd/external/gpl3/gdb/dist/gdb/unittests/optional/cons/
H A Dvalue.cc65 gdb::optional<long> o { i }; in test() local
73 gdb::optional<long> o = i; in test() local
81 gdb::optional<long> o = { i }; in test() local
89 gdb::optional<long> o { std::move(i) }; in test() local
97 gdb::optional<long> o = std::move(i); in test() local
105 gdb::optional<long> o = { std::move(i) }; in test() local
114 gdb::optional<std::vector<int>> o { v }; in test() local
122 gdb::optional<std::vector<int>> o = v; in test() local
129 gdb::optional<std::vector<int>> o { v }; in test() local
157 gdb::optional<tracker> o = t; in test() local
[all …]
/netbsd/external/gpl3/gdb.old/dist/gdb/unittests/optional/cons/
H A Dvalue.cc65 gdb::optional<long> o { i }; in test() local
73 gdb::optional<long> o = i; in test() local
81 gdb::optional<long> o = { i }; in test() local
89 gdb::optional<long> o { std::move(i) }; in test() local
97 gdb::optional<long> o = std::move(i); in test() local
105 gdb::optional<long> o = { std::move(i) }; in test() local
114 gdb::optional<std::vector<int>> o { v }; in test() local
122 gdb::optional<std::vector<int>> o = v; in test() local
129 gdb::optional<std::vector<int>> o { v }; in test() local
157 gdb::optional<tracker> o = t; in test() local
[all …]
/netbsd/sys/arch/amigappc/include/
H A Dbus_funcs.h34 #define bus_space_map(t, o, s, f, hp) \ argument
37 #define bus_space_subregion(t, h, o, s, hp) \ argument
49 #define dbsdr(n, t, h, o) ((t)->absm->n)((h), (o)) argument
80 #define bus_space_read_multi_stream_2(t, h, o, p, c) \ argument
100 #define bus_space_read_4(t, h, o) \ argument
103 #define bus_space_write_4(t, h, o, v) \ argument
106 #define bus_space_read_stream_4(t, h, o) \ argument
109 #define bus_space_write_stream_4(t, h, o, v) \ argument
112 #define bus_space_read_multi_4(t, h, o, p, c) \ argument
115 #define bus_space_write_multi_4(t, h, o, p, c) \ argument
[all …]
/netbsd/external/gpl3/gdb/dist/gdb/
H A Dgdb-stabs.h65 #define DBX_SYMFILE_INFO(o) (dbx_objfile_data_key.get (o)) argument
66 #define DBX_TEXT_ADDR(o) (DBX_SYMFILE_INFO(o)->text_addr) argument
67 #define DBX_TEXT_SIZE(o) (DBX_SYMFILE_INFO(o)->text_size) argument
68 #define DBX_SYMCOUNT(o) (DBX_SYMFILE_INFO(o)->symcount) argument
69 #define DBX_STRINGTAB(o) (DBX_SYMFILE_INFO(o)->stringtab) argument
71 #define DBX_SYMTAB_OFFSET(o) (DBX_SYMFILE_INFO(o)->symtab_offset) argument
72 #define DBX_SYMBOL_SIZE(o) (DBX_SYMFILE_INFO(o)->symbol_size) argument
73 #define DBX_TEXT_SECTION(o) (DBX_SYMFILE_INFO(o)->text_section) argument
74 #define DBX_DATA_SECTION(o) (DBX_SYMFILE_INFO(o)->data_section) argument
75 #define DBX_BSS_SECTION(o) (DBX_SYMFILE_INFO(o)->bss_section) argument
[all …]
/netbsd/external/gpl3/gdb.old/dist/gdb/
H A Dgdb-stabs.h65 #define DBX_SYMFILE_INFO(o) (dbx_objfile_data_key.get (o)) argument
66 #define DBX_TEXT_ADDR(o) (DBX_SYMFILE_INFO(o)->text_addr) argument
67 #define DBX_TEXT_SIZE(o) (DBX_SYMFILE_INFO(o)->text_size) argument
68 #define DBX_SYMCOUNT(o) (DBX_SYMFILE_INFO(o)->symcount) argument
69 #define DBX_STRINGTAB(o) (DBX_SYMFILE_INFO(o)->stringtab) argument
71 #define DBX_SYMTAB_OFFSET(o) (DBX_SYMFILE_INFO(o)->symtab_offset) argument
72 #define DBX_SYMBOL_SIZE(o) (DBX_SYMFILE_INFO(o)->symbol_size) argument
73 #define DBX_TEXT_SECTION(o) (DBX_SYMFILE_INFO(o)->text_section) argument
74 #define DBX_DATA_SECTION(o) (DBX_SYMFILE_INFO(o)->data_section) argument
75 #define DBX_BSS_SECTION(o) (DBX_SYMFILE_INFO(o)->bss_section) argument
[all …]
/netbsd/sys/arch/amiga/include/
H A Dbus.h157 #define bus_space_map(t, o, s, f, hp) \ argument
160 #define bus_space_subregion(t, h, o, s, hp) \ argument
172 #define dbsdr(n, t, h, o) ((t)->absm->n)((h), (o)) argument
203 #define bus_space_read_multi_stream_2(t, h, o, p, c) \ argument
206 #define bus_space_write_multi_stream_2(t, h, o, p, c) \ argument
212 #define bus_space_read_region_stream_2(t, h, o, p, c) \ argument
215 #define bus_space_write_region_stream_2(t, h, o, p, c) \ argument
231 #define bus_space_read_multi_stream_4(t, h, o, p, c) \ argument
234 #define bus_space_write_multi_stream_4(t, h, o, p, c) \ argument
240 #define bus_space_read_region_stream_4(t, h, o, p, c) \ argument
[all …]
/netbsd/sys/arch/atari/include/
H A Dbus_funcs.h97 #define __abs_p(sz, t, h, o) \ argument
99 #define __abs_rs(sz, t, h, o) \ argument
101 #define __abs_rss(sz, t, h, o) \ argument
103 #define __abs_ws(sz, t, h, o, v) \ argument
105 #define __abs_wss(sz, t, h, o, v) \ argument
109 #define __abs_set(type, sz, t, h, o, v, c) \ argument
154 #define bus_space_read_multi_1(t, h, o, a, c) \ argument
156 #define bus_space_read_multi_2(t, h, o, a, c) \ argument
270 #define bus_space_set_multi_1(t, h, o, v, c) \ argument
336 #define bus_space_barrier(t, h, o, l, f) \ argument
[all …]
/netbsd/common/lib/libppath/
H A Dppath.c360 prop_object_t o, po; in ppath_lookup_helper() local
395 ppath_lookup(prop_object_t o, const ppath_t *p) in ppath_lookup()
419 ppath_create_data(prop_object_t o, const ppath_t *p, in ppath_create_data()
441 ppath_create_bool(prop_object_t o, const ppath_t *p, bool b) in ppath_create_bool()
534 ppath_delete_object(prop_object_t o, const ppath_t *p) in ppath_delete_object()
718 ppath_set_bool(prop_object_t o, const ppath_t *p, bool b) in ppath_set_bool()
739 ppath_delete_bool(prop_object_t o, const ppath_t *p) in ppath_delete_bool()
801 ppath_delete_data(prop_object_t o, const ppath_t *p) in ppath_delete_data()
840 ppath_delete_int64(prop_object_t o, const ppath_t *p) in ppath_delete_int64()
897 ppath_delete_string(prop_object_t o, const ppath_t *p) in ppath_delete_string()
[all …]
/netbsd/sys/arch/luna68k/include/
H A Dbus.h151 #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
274 #define bus_space_write_1(t, h, o, v) \ argument
277 #define bus_space_write_2(t, h, o, v) \ argument
280 #define bus_space_write_4(t, h, o, v) \ argument
[all …]
/netbsd/sys/arch/news68k/include/
H A Dbus.h167 #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
288 #define bus_space_write_1(t, h, o, v) \ argument
291 #define bus_space_write_2(t, h, o, v) \ argument
294 #define bus_space_write_4(t, h, o, v) \ argument
[all …]
/netbsd/sys/arch/mac68k/include/
H A Dbus.h327 #define bus_space_read_multi_1(t, h, o, a, c) \ argument
329 #define bus_space_read_multi_2(t, h, o, a, c) \ argument
331 #define bus_space_read_multi_4(t, h, o, a, c) \ argument
398 #define bus_space_read_region_1(t, h, o, a, c) \ argument
400 #define bus_space_read_region_2(t, h, o, a, c) \ argument
402 #define bus_space_read_region_4(t, h, o, a, c) \ argument
501 #define bus_space_write_multi_1(t, h, o, a, c) \ argument
503 #define bus_space_write_multi_2(t, h, o, a, c) \ argument
505 #define bus_space_write_multi_4(t, h, o, a, c) \ argument
625 #define bus_space_set_multi_1(t, h, o, val, c) \ argument
[all …]
/netbsd/sys/arch/mips/include/
H A Dbus_space_funcs.h70 #define __bs_r(type, sz, tn, t, h, o) \ argument
74 #define __bs_w(type, sz, tn, t, h, o, v) \ argument
138 #define bus_space_mmap(t, a, o, p, f) \ argument
150 #define bus_space_read_1(t, h, o) \ argument
152 #define bus_space_read_2(t, h, o) \ argument
154 #define bus_space_read_4(t, h, o) \ argument
156 #define bus_space_read_8(t, h, o) \ argument
213 #define bus_space_write_1(t, h, o, v) \ argument
215 #define bus_space_write_2(t, h, o, v) \ argument
217 #define bus_space_write_4(t, h, o, v) \ argument
[all …]
/netbsd/external/bsd/nvi/dist/common/
H A Doptions.h28 #define O_V(sp, o, fld) \ argument
36 #define OG_STR(gp, o) ((gp)->opts[(o)].o_cur.str) argument
38 #define OG_ISSET(gp, o) OG_VAL(gp, o) argument
57 #define O_CLR(sp, o) o_set(sp, o, 0, NULL, 0) argument
58 #define O_SET(sp, o) o_set(sp, o, 0, NULL, 1) argument
59 #define O_STR(sp, o) O_V(sp, o, o_cur.str) argument
60 #define O_VAL(sp, o) O_V(sp, o, o_cur.val) argument
61 #define O_ISSET(sp, o) O_VAL(sp, o) argument
69 #define O_D_STR(sp, o) O_V(sp, o, o_def.str) argument
70 #define O_D_VAL(sp, o) O_V(sp, o, o_def.val) argument
[all …]
/netbsd/external/gpl3/gdb/dist/gdb/unittests/optional/
H A Din_place.cc25 gdb::optional<int> o { gdb::in_place }; in test() local
35 gdb::optional<int> o { gdb::in_place, 42 }; in test() local
41 gdb::optional<std::vector<int>> o { gdb::in_place, 18, 4 }; in test() local
49 gdb::optional<std::vector<int>> o { gdb::in_place, { 18, 4 } }; in test() local
58 gdb::optional<std::vector<int>> o { gdb::in_place, { 18, 4 }, std::allocator<int> {} }; in test() local
/netbsd/external/gpl3/gdb.old/dist/gdb/unittests/optional/
H A Din_place.cc25 gdb::optional<int> o { gdb::in_place }; in test() local
35 gdb::optional<int> o { gdb::in_place, 42 }; in test() local
41 gdb::optional<std::vector<int>> o { gdb::in_place, 18, 4 }; in test() local
49 gdb::optional<std::vector<int>> o { gdb::in_place, { 18, 4 } }; in test() local
58 gdb::optional<std::vector<int>> o { gdb::in_place, { 18, 4 }, std::allocator<int> {} }; in test() local
/netbsd/sys/arch/sparc64/include/
H A Dbus_funcs.h139 #define bus_space_barrier(t, h, o, s, f) \ argument
144 bus_size_t o, bus_size_t s, int f) in sparc_bus_space_barrier()
171 #define bus_space_read_1(t, h, o) \ argument
174 #define bus_space_read_2(t, h, o) \ argument
177 #define bus_space_read_4(t, h, o) \ argument
180 #define bus_space_read_8(t, h, o) \ argument
183 #define bus_space_read_1(t, h, o) ({ \ argument
192 #define bus_space_read_2(t, h, o) ({ \ argument
201 #define bus_space_read_4(t, h, o) ({ \ argument
210 #define bus_space_read_8(t, h, o) ({ \ argument
[all …]
/netbsd/external/gpl3/gdb/dist/gdb/unittests/optional/assignment/
H A D6.cc45 O o; in test() local
50 O o { gdb::in_place, 0 }; in test() local
56 O o; in test() local
61 O o { gdb::in_place }; in test() local
68 O o; in test() local
73 O o { gdb::in_place }; in test() local
79 O o; in test() local
/netbsd/external/gpl3/gdb.old/dist/gdb/unittests/optional/assignment/
H A D6.cc45 O o; in test() local
50 O o { gdb::in_place, 0 }; in test() local
56 O o; in test() local
61 O o { gdb::in_place }; in test() local
68 O o; in test() local
73 O o { gdb::in_place }; in test() local
79 O o; in test() local
/netbsd/sys/arch/evbsh3/include/
H A Dbus_funcs.h75 #define __bs_rs(sz, tn, t, h, o) \ argument
78 #define __bs_rss(sz, tn, t, h, o) \ argument
82 #define __bs_ws(sz, tn, t, h, o, v) \ argument
87 #define __bs_wss(sz, tn, t, h, o, v) \ argument
100 #define __bs_set(type, sz, tn, t, h, o, v, c) \ argument
121 #define bus_space_subregion(t, h, o, s, hp) \ argument
146 #define bus_space_barrier(t, h, o, l, f) \ argument
211 #define bus_space_write_stream_1(t, h, o, v) \ argument
213 #define bus_space_write_stream_2(t, h, o, v) \ argument
322 #define bus_dmamap_sync(t, m, o, l, op) \ argument
[all …]

12345678910>>...50