/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | tree-ssa-threadbackward.c | 62 auto_vec<basic_block> m_path; variable 155 if (m_path.is_empty ()) in profitable_jump_thread_path() 158 if (m_path.length () + 1 in profitable_jump_thread_path() 180 m_path.safe_push (bbi); in profitable_jump_thread_path() 184 loop_p loop = m_path[0]->loop_father; in profitable_jump_thread_path() 198 for (unsigned j = 0; j < m_path.length (); j++) in profitable_jump_thread_path() 200 basic_block bb = m_path[j]; in profitable_jump_thread_path() 211 if (j < m_path.length () - 1) in profitable_jump_thread_path() 265 m_path.pop (); in profitable_jump_thread_path() 303 gimple *stmt = get_gimple_control_stmt (m_path[0]); in profitable_jump_thread_path() [all …]
|
H A D | selftest-rtl.c | 90 : m_path (path) in rtl_dump_test() 105 free (m_path); in ~rtl_dump_test()
|
H A D | tree-diagnostic-path.cc | 51 : m_path (path), m_start_idx (start_idx) in path_label() 57 const diagnostic_event &event = m_path->get_event (event_idx); in get_text() 75 const diagnostic_path *m_path; member in __anon1e00e3a70111::path_label 126 : m_path (path), in event_range() 179 const diagnostic_event &iter_event = m_path->get_event (i); in print() 201 const diagnostic_path *m_path; member
|
H A D | selftest-rtl.h | 87 char *m_path;
|
/netbsd-src/external/bsd/atf/dist/atf-c++/detail/ |
H A D | fs.cpp | 114 atf_error_t err = atf_fs_path_init_fmt(&m_path, "%s", s.c_str()); in path() 121 atf_error_t err = atf_fs_path_copy(&m_path, &p.m_path); in path() 128 atf_error_t err = atf_fs_path_copy(&m_path, p); in path() 135 atf_fs_path_fini(&m_path); in ~path() 142 return atf_fs_path_cstring(&m_path); in c_str() 149 return &m_path; in c_path() 163 return atf_fs_path_is_absolute(&m_path); in is_absolute() 170 return atf_fs_path_is_root(&m_path); in is_root() 180 err = atf_fs_path_branch_path(&m_path, &bp); in branch_path() 196 err = atf_fs_path_leaf_name(&m_path, &ln); in leaf_name() [all …]
|
H A D | fs.hpp | 75 atf_fs_path_t m_path; member in atf::fs::path
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | tree-ssa-threadbackward.cc | 106 auto_vec<basic_block> m_path; member in back_threader 207 if (m_path.is_empty ()) in maybe_register_path_dump() 211 dump_path (dump_file, m_path); in maybe_register_path_dump() 232 edge taken_edge = find_taken_edge (m_path); in maybe_register_path() 245 if (m_profit.profitable_path_p (m_path, m_name, taken_edge, in maybe_register_path() 249 m_registry.register_path (m_path, taken_edge); in maybe_register_path() 252 vect_free_loop_info_assumptions (m_path[0]->loop_father); in maybe_register_path() 368 bool profitable_p = m_path[0]->loop_father == e->src->loop_father; in resolve_phi() 377 dump_path (dump_file, m_path); in resolve_phi() 414 m_path.safe_push (bb); in find_paths_to_names() [all …]
|
H A D | gimple-range-path.h | 74 basic_block entry_bb () { return m_path[m_path.length () - 1]; } in entry_bb() 75 basic_block exit_bb () { return m_path[0]; } in exit_bb() 76 basic_block curr_bb () { return m_path[m_pos]; } in curr_bb() 77 basic_block prev_bb () { return m_path[m_pos + 1]; } in prev_bb() 78 basic_block next_bb () { return m_path[m_pos - 1]; } in next_bb() 79 bool at_entry () { return m_pos == m_path.length () - 1; } in at_entry() 90 auto_vec<basic_block> m_path; variable
|
H A D | gimple-range-path.cc | 113 if (m_path.is_empty ()) in dump() 119 dump_ranger (dump_file, m_path); in dump() 146 return !bb || !m_path.contains (bb); in defined_outside_path() 251 m_path = path.copy (); in set_path() 252 m_pos = m_path.length () - 1; in set_path() 597 && m_path.contains (e->src) in compute_imports() 605 for (i = 0; i < m_path.length (); ++i) in compute_imports() 607 basic_block bb = m_path[i]; in compute_imports() 766 jt_fur_source src (stmt, this, &m_ranger->gori (), m_path); in range_of_stmt() 862 jt_fur_source src (NULL, this, &m_ranger->gori (), m_path); in compute_outgoing_relations()
|
H A D | selftest-rtl.cc | 90 : m_path (path) in rtl_dump_test() 105 free (m_path); in ~rtl_dump_test()
|
H A D | tree-diagnostic-path.cc | 51 : m_path (path), m_start_idx (start_idx) in path_label() 57 const diagnostic_event &event = m_path->get_event (event_idx); in get_text() 75 const diagnostic_path *m_path; member in __anon16ac341a0111::path_label 120 : m_path (path), in event_range() 173 const diagnostic_event &iter_event = m_path->get_event (i); in print() 195 const diagnostic_path *m_path; member
|
H A D | selftest-rtl.h | 87 char *m_path;
|
/netbsd-src/external/bsd/elftosb/dist/common/ |
H A D | SourceFile.cpp | 74 : m_path(path), m_stream() in SourceFile() 92 m_stream = new std::ifstream(m_path.c_str(), std::ios_base::in | std::ios_base::binary); in open() 95 throw std::runtime_error(format_string("failed to open file: %s", m_path.c_str())); in open() 173 throw std::runtime_error(format_string("unexpected end of file: %s", m_path.c_str())); in createDataSource()
|
H A D | SourceFile.h | 57 inline const std::string & getPath() const { return m_path; } in getPath() 125 std::string m_path; //!< Path to the file.
|
/netbsd-src/usr.sbin/catman/ |
H A D | catman.c | 82 char *m_path = NULL; in main() local 107 m_path = optarg; in main() 124 setdefentries(m_path, m_add, (argc == 0) ? NULL : argv[argc-1]); in main() 136 setdefentries(char *m_path, char *m_add, const char *sections) in setdefentries() argument 184 if (m_path == NULL) in setdefentries() 185 m_path = getenv("MANPATH"); in setdefentries() 186 if (m_path != NULL) { in setdefentries() 191 for (p = strtok(m_path, ":"); in setdefentries() 209 if (m_path == NULL) { in setdefentries()
|
/netbsd-src/external/bsd/atf/dist/atf-c/detail/ |
H A D | fs.c | 84 char m_path[1024]; member 103 data->m_path, (unsigned int)data->m_umask); in invalid_umask_format() 116 strncpy(data.m_path, atf_fs_path_cstring(path), sizeof(data.m_path)); in invalid_umask_error() 117 data.m_path[sizeof(data.m_path) - 1] = '\0'; in invalid_umask_error() 132 const char *m_path; member 147 data->m_path); in unknown_type_format() 157 data.m_path = path; in unknown_type_error()
|
H A D | process.c | 167 sb->m_path = path; in atf_process_stream_init_redirect_path() 352 int aux = open(atf_fs_path_cstring(sp->m_sb->m_path), in child_connect() 356 atf_fs_path_cstring(sp->m_sb->m_path)); in child_connect()
|
H A D | process_test.c | 353 atf_fs_path_t m_path; member 369 RE(atf_fs_path_init_fmt(&s->m_path, "stdout")); in redirect_path_stream_init() 372 RE(atf_fs_path_init_fmt(&s->m_path, "stderr")); in redirect_path_stream_init() 379 RE(atf_process_stream_init_redirect_path(&s->m_base.m_sb, &s->m_path)); in redirect_path_stream_init() 390 atf_fs_path_fini(&s->m_path); in redirect_path_stream_fini()
|
H A D | process.h | 57 const atf_fs_path_t *m_path; member
|
/netbsd-src/external/bsd/atf/dist/tools/ |
H A D | process.cpp | 323 m_path(p) in stream_redirect_path() 341 const int aux = ::open(m_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0644); in connect_child() 344 "Could not create " + m_path.str(), errno); in connect_child()
|
H A D | fs.cpp | 593 m_path.reset(new path(buf.get())); in temp_dir() 598 cleanup(*m_path); in ~temp_dir() 605 return *m_path; in get_path()
|
H A D | fs.hpp | 329 std::unique_ptr< tools::fs::path > m_path; member in tools::fs::temp_dir
|
/netbsd-src/external/bsd/atf/dist/atf-sh/ |
H A D | atf-check.cpp | 111 std::unique_ptr< atf::fs::path > m_path; member in __anon9a50e0e80111::temp_file 128 m_path.reset(new atf::fs::path(buf.get())); in temp_file() 135 remove(*m_path); in ~temp_file() 144 return *m_path; in get_path()
|
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/include/ |
H A D | line-map.h | 1728 const diagnostic_path *get_path () const { return m_path; } in get_path() 1729 void set_path (const diagnostic_path *path) { m_path = path; } in set_path() 1756 const diagnostic_path *m_path; variable
|
/netbsd-src/external/gpl3/gcc/dist/libcpp/include/ |
H A D | line-map.h | 1787 const diagnostic_path *get_path () const { return m_path; } in get_path() 1788 void set_path (const diagnostic_path *path) { m_path = path; } in set_path() 1828 const diagnostic_path *m_path; variable
|