Searched refs:args_type (Results 1 - 25 of 28) sorted by relevance

12

/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_chained_origin_depot.cpp31 typedef ChainedOriginDepotDesc args_type; typedef in struct:__sanitizer::__anon1714::ChainedOriginDepotNode
33 bool eq(hash_type hash, const args_type &args) const;
37 static hash_type hash(const args_type &args);
39 static bool is_valid(const args_type &args);
41 void store(u32 id, const args_type &args, hash_type other_hash);
43 args_type load(u32 id) const;
64 bool ChainedOriginDepotNode::eq(hash_type hash, const args_type &args) const {
82 const args_type &args) {
107 bool ChainedOriginDepotNode::is_valid(const args_type &args) { return true; }
109 void ChainedOriginDepotNode::store(u32 id, const args_type
[all...]
H A Dsanitizer_stackdepot.cpp32 typedef StackTrace args_type; typedef in struct:__sanitizer::StackDepotNode
33 bool eq(hash_type hash, const args_type &args) const {
37 static hash_type hash(const args_type &args) {
43 static bool is_valid(const args_type &args) {
46 void store(u32 id, const args_type &args, hash_type hash);
47 args_type load(u32 id) const;
80 void StackDepotNode::store(u32 id, const args_type &args, hash_type hash) {
89 StackDepotNode::args_type StackDepotNode::load(u32 id) const {
95 return args_type(stack_trace + 1, size, tag);
H A Dsanitizer_stackdepotbase.h36 typedef typename Node::args_type args_type; typedef in class:__sanitizer::StackDepotBase
44 u32 Put(args_type args, bool *inserted = nullptr);
46 args_type Get(u32 id);
66 u32 find(u32 s, args_type args, hash_type hash) const;
80 u32 s, args_type args, hash_type hash) const {
115 u32 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Put(args_type args,
151 typename StackDepotBase<Node, kReservedBits, kTabSizeLog>::args_type
154 return args_type();
157 return args_type();
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_chained_origin_depot.cc30 typedef ChainedOriginDepotDesc args_type; typedef in struct:__msan::ChainedOriginDepotNode
32 bool eq(u32 hash, const args_type &args) const {
36 static uptr storage_size(const args_type &args) {
53 static u32 hash(const args_type &args) {
77 static bool is_valid(const args_type &args) { return true; }
78 void store(const args_type &args, u32 other_hash) {
83 args_type load() const {
84 args_type ret = {here_id, prev_id};
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_stackdepot.cc37 typedef StackTrace args_type; typedef in struct:__sanitizer::StackDepotNode
38 bool eq(u32 hash, const args_type &args) const {
49 static uptr storage_size(const args_type &args) {
52 static u32 hash(const args_type &args) {
71 static bool is_valid(const args_type &args) {
74 void store(const args_type &args, u32 hash) {
80 args_type load() const {
81 return args_type(&stack[0], size, tag);
H A Dsanitizer_stackdepotbase.h27 typedef typename Node::args_type args_type; typedef in class:__sanitizer::StackDepotBase
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,
98 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Put(args_type args,
137 typename StackDepotBase<Node, kReservedBits, kTabSizeLog>::args_type
140 return args_type();
157 return args_type();
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_stackdepot.cc35 typedef StackTrace args_type; typedef in struct:__sanitizer::StackDepotNode
36 bool eq(u32 hash, const args_type &args) const {
47 static uptr storage_size(const args_type &args) {
50 static u32 hash(const args_type &args) {
69 static bool is_valid(const args_type &args) {
72 void store(const args_type &args, u32 hash) {
78 args_type load() const {
79 return args_type(&stack[0], size, tag);
H A Dsanitizer_stackdepotbase.h25 typedef typename Node::args_type args_type; typedef in class:__sanitizer::StackDepotBase
28 handle_type Put(args_type args, bool *inserted = nullptr);
30 args_type Get(u32 id);
38 static Node *find(Node *s, args_type args, u32 hash);
60 args_type args,
96 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Put(args_type args,
135 typename StackDepotBase<Node, kReservedBits, kTabSizeLog>::args_type
138 return args_type();
155 return args_type();
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/
H A Dpy-framefilter.c227 enum ext_lang_frame_args args_type,
235 if (args_type == MI_PRINT_SIMPLE_VALUES
236 || args_type == MI_PRINT_ALL_VALUES)
240 if (args_type == MI_PRINT_ALL_VALUES)
242 else if (args_type == MI_PRINT_SIMPLE_VALUES
248 else if (args_type != NO_VALUES)
313 enum ext_lang_frame_args args_type,
339 if (print_args_field || args_type != NO_VALUES)
381 if (args_type == MI_PRINT_SIMPLE_VALUES && val != NULL)
389 if (! out->is_mi_like_p () && args_type
224 py_print_value(struct ui_out *out, struct value *val, const struct value_print_options *opts, int indent, enum ext_lang_frame_args args_type, const struct language_defn *language) argument
308 py_print_single_arg(struct ui_out *out, const char *sym_name, struct frame_arg *fa, struct value *fv, const struct value_print_options *opts, enum ext_lang_frame_args args_type, int print_args_field, const struct language_defn *language) argument
422 enumerate_args(PyObject *iter, struct ui_out *out, enum ext_lang_frame_args args_type, int print_args_field, struct frame_info *frame) argument
552 enumerate_locals(PyObject *iter, struct ui_out *out, int indent, enum ext_lang_frame_args args_type, int print_args_field, struct frame_info *frame) argument
642 py_mi_print_variables(PyObject *filter, struct ui_out *out, struct value_print_options *opts, enum ext_lang_frame_args args_type, struct frame_info *frame) argument
675 py_print_locals(PyObject *filter, struct ui_out *out, enum ext_lang_frame_args args_type, int indent, struct frame_info *frame) argument
701 py_print_args(PyObject *filter, struct ui_out *out, enum ext_lang_frame_args args_type, struct frame_info *frame) argument
754 py_print_frame(PyObject *filter, frame_filter_flags flags, enum ext_lang_frame_args args_type, struct ui_out *out, int indent, htab_t levels_printed) argument
1139 gdbpy_apply_frame_filter(const struct extension_language_defn *extlang, struct frame_info *frame, frame_filter_flags flags, enum ext_lang_frame_args args_type, struct ui_out *out, int frame_low, int frame_high) argument
[all...]
H A Dpython-internal.h402 enum ext_lang_frame_args args_type,
/netbsd-current/external/gpl3/gdb/dist/gdb/python/
H A Dpy-framefilter.c227 enum ext_lang_frame_args args_type,
235 if (args_type == MI_PRINT_SIMPLE_VALUES
236 || args_type == MI_PRINT_ALL_VALUES)
240 if (args_type == MI_PRINT_ALL_VALUES)
242 else if (args_type == MI_PRINT_SIMPLE_VALUES
248 else if (args_type != NO_VALUES)
313 enum ext_lang_frame_args args_type,
339 if (print_args_field || args_type != NO_VALUES)
377 if (args_type == MI_PRINT_SIMPLE_VALUES && val != NULL)
385 if (! out->is_mi_like_p () && args_type
224 py_print_value(struct ui_out *out, struct value *val, const struct value_print_options *opts, int indent, enum ext_lang_frame_args args_type, const struct language_defn *language) argument
308 py_print_single_arg(struct ui_out *out, const char *sym_name, struct frame_arg *fa, struct value *fv, const struct value_print_options *opts, enum ext_lang_frame_args args_type, int print_args_field, const struct language_defn *language) argument
418 enumerate_args(PyObject *iter, struct ui_out *out, enum ext_lang_frame_args args_type, int print_args_field, frame_info_ptr frame) argument
548 enumerate_locals(PyObject *iter, struct ui_out *out, int indent, enum ext_lang_frame_args args_type, int print_args_field, frame_info_ptr frame) argument
638 py_mi_print_variables(PyObject *filter, struct ui_out *out, struct value_print_options *opts, enum ext_lang_frame_args args_type, frame_info_ptr frame) argument
671 py_print_locals(PyObject *filter, struct ui_out *out, enum ext_lang_frame_args args_type, int indent, frame_info_ptr frame) argument
697 py_print_args(PyObject *filter, struct ui_out *out, enum ext_lang_frame_args args_type, frame_info_ptr frame) argument
750 py_print_frame(PyObject *filter, frame_filter_flags flags, enum ext_lang_frame_args args_type, struct ui_out *out, int indent, htab_t levels_printed) argument
1135 gdbpy_apply_frame_filter(const struct extension_language_defn *extlang, frame_info_ptr frame, frame_filter_flags flags, enum ext_lang_frame_args args_type, struct ui_out *out, int frame_low, int frame_high) argument
[all...]
H A Dpython-internal.h383 enum ext_lang_frame_args args_type,
/netbsd-current/external/gpl3/binutils/dist/ld/
H A Dld.h195 } args_type; typedef in typeref:struct:__anon1011
197 extern args_type command_line;
/netbsd-current/external/gpl3/binutils.old/dist/ld/
H A Dld.h199 } args_type; typedef in typeref:struct:__anon2214
201 extern args_type command_line;
H A Dldmain.c93 args_type command_line;
/netbsd-current/external/gpl3/gdb.old/dist/ld/
H A Dld.h199 } args_type; typedef in typeref:struct:__anon2154
201 extern args_type command_line;
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-more-actions.h106 typedef typename ::std::tuple_element<k, args_type>::type argk_type;
H A Dgmock-generated-actions.h200 // 'args' and 'args_type', and refer to the mock function type and its
276 const args_type& args GTEST_ATTRIBUTE_UNUSED_, \
670 args_type;\
672 virtual return_type Perform(const args_type& args) {\
680 return_type gmock_PerformImpl(const args_type& args, \
731 args_type;\
733 virtual return_type Perform(const args_type& args) {\
741 return_type gmock_PerformImpl(const args_type& args, \
780 args_type;\
783 virtual return_type Perform(const args_type
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dextension-priv.h182 enum ext_lang_frame_args args_type,
H A Dextension.h292 enum ext_lang_frame_args args_type,
H A Dextension.c510 enum ext_lang_frame_args args_type,
522 args_type, out,
502 apply_ext_lang_frame_filter(struct frame_info *frame, frame_filter_flags flags, enum ext_lang_frame_args args_type, struct ui_out *out, int frame_low, int frame_high) argument
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dextension-priv.h183 enum ext_lang_frame_args args_type,
H A Dextension.h295 enum ext_lang_frame_args args_type,
H A Dextension.c536 enum ext_lang_frame_args args_type,
548 args_type, out,
528 apply_ext_lang_frame_filter(frame_info_ptr frame, frame_filter_flags flags, enum ext_lang_frame_args args_type, struct ui_out *out, int frame_low, int frame_high) argument
/netbsd-current/external/bsd/tmux/dist/
H A Darguments.c103 args_type_to_string (enum args_type type)

Completed in 296 milliseconds

12