Home
last modified time | relevance | path

Searched refs:args_type (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cc30 typedef ChainedOriginDepotDesc args_type; typedef
32 bool eq(u32 hash, const args_type &args) const { in eq()
36 static uptr storage_size(const args_type &args) { in storage_size()
53 static u32 hash(const args_type &args) { in hash()
77 static bool is_valid(const args_type &args) { return true; } in is_valid()
78 void store(const args_type &args, u32 other_hash) { in store()
83 args_type load() const { in load()
84 args_type ret = {here_id, prev_id}; in load()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h27 typedef typename Node::args_type args_type; typedef
30 handle_type Put(args_type args, bool *inserted = nullptr);
32 args_type Get(u32 id);
40 static Node *find(Node *s, args_type args, u32 hash);
62 args_type args, in find()
98 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Put(args_type args, in Put()
137 typename StackDepotBase<Node, kReservedBits, kTabSizeLog>::args_type
140 return args_type(); in Get()
157 return args_type(); in Get()
H A Dsanitizer_stackdepot.cc37 typedef StackTrace args_type; typedef
38 bool eq(u32 hash, const args_type &args) const { in eq()
49 static uptr storage_size(const args_type &args) { in storage_size()
52 static u32 hash(const args_type &args) { in hash()
71 static bool is_valid(const args_type &args) { in is_valid()
74 void store(const args_type &args, u32 hash) { in store()
80 args_type load() const { in load()
81 return args_type(&stack[0], size, tag); in load()
/freebsd-12.1/contrib/binutils/ld/
H A Dld.h226 } args_type; typedef
228 extern args_type command_line;
H A DChangeLog164 * ld.h (args_type, ld_config_type): Reorder fields.
183 * ld.h (args_type): Add warn_search_mismatch.
595 * ld.h (args_type): Add new symbolic and dynamic_list fields.
631 * ld.h (args_type): Add a default_script field.
H A Dldmain.c106 args_type command_line;
H A DChangeLog-9899998 * ld.h: Add new boolean field to args_type structure:
1446 * ld.h (struct args_type): Add version_exports_section.
1519 * ld.h (args_type): Add gc_sections.
H A DChangeLog-9197114 * ld.h (args_type): Add warn_mismatch field.
760 * ld.h (args_type): Rename auxiliary_filter_shlib to
1343 * ld.h (args_type): Add cref field.
1668 * ld.h (args_type): Add force_exe_suffix.
2806 * ld.h (args_type): Add rpath_link field.
3844 * ld.h (args_type): Add new field embedded_relocs.
3900 * ld.h (args_type): Add field export_dynamic.
4098 * ld.h (args_type): Add new field endian.
4269 * ld.h (args_type): Add field soname.
4380 * ld.h (args_type): Add field rpath.
[all …]
H A DChangeLog-2006107 * ld.h (args_type): Remove reduce_memory_overheads.
H A DChangeLog-00011247 * ld.h (args_type): Remove member export_dynamic. All users
H A DChangeLog-02031671 * ld.h (struct args_type): Add new field
/freebsd-12.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-generated-actions.h1371 args_type;\
1432 args_type;\
1479 args_type;\
1532 args_type;\
1590 args_type;\
1655 args_type;\
1728 args_type;\
1806 args_type;\
1890 args_type;\
1982 args_type;\
[all …]
H A Dgmock-generated-actions.h.pump326 // 'args' and 'args_type', and refer to the mock function type and its
406 const args_type& args GTEST_ATTRIBUTE_UNUSED_
602 args_type;\
604 virtual return_type Perform(const args_type& args) {\
609 return_type gmock_PerformImpl(const args_type& args[[]]
689 args_type;\
691 virtual return_type Perform(const args_type& args) {\
696 return_type gmock_PerformImpl(const args_type& args, [[]]
H A Dgmock-more-actions.h189 typedef typename ::testing::tuple_element<k, args_type>::type argk_type; in ACTION_TEMPLATE()
/freebsd-12.1/contrib/googletest/googlemock/docs/
H A DDesignDoc.md94 | `args_type` | The type of all arguments of the mock function as a tuple |
110 | `args_type` | the type `std::tr1::tuple<bool, int*>` |
H A DCookBook.md3324 | `args_type` | The type of all arguments of the mock function as a tuple |
3341 | `args_type` | the type `::testing::tuple<bool, int*>` |
/freebsd-12.1/contrib/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc642 StaticAssertTypeEq<tuple<int, char, int*>, args_type>(); in ACTION()
643 args_type args_copy = args; in ACTION()