Home
last modified time | relevance | path

Searched refs:next_pos (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/bsd/tre/dist/src/
Dagrep.c743 char *next_pos = regexp; in main() local
748 next_pos = regexp; in main()
749 while (next_pos) in main()
751 next_pos = strstr(next_pos, "\\E"); in main()
752 if (next_pos) in main()
755 next_pos += 2; in main()
767 next_pos = regexp; in main()
771 while (next_pos) in main()
773 char *start = next_pos; in main()
774 next_pos = strstr(next_pos, "\\E"); in main()
[all …]
/netbsd/src/external/bsd/kyua-cli/dist/utils/fs/
Dpath.cpp61 const std::string::size_type next_pos = in.find('/', pos); in normalize() local
63 const std::string component = in.substr(pos, next_pos - pos); in normalize()
71 if (next_pos == std::string::npos) in normalize()
72 pos = next_pos; in normalize()
74 pos = next_pos + 1; in normalize()
/netbsd/src/external/bsd/atf/dist/tools/
Dfs.cpp279 const std::string::size_type next_pos = in.find('/', pos); in normalize() local
281 const std::string component = in.substr(pos, next_pos - pos); in normalize()
289 if (next_pos == std::string::npos) in normalize()
290 pos = next_pos; in normalize()
292 pos = next_pos + 1; in normalize()
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
Ds390-multiarch.c248 size_t next_pos = desc_pos + ((note[1] + 3) & ~3); in elfbuf_handle_note_segment() local
250 if (desc_pos > len || next_pos > len) in elfbuf_handle_note_segment()
258 pos = next_pos; in elfbuf_handle_note_segment()
/netbsd/src/external/gpl3/binutils/dist/gold/
Doptions.cc1310 size_t next_pos; in finalize() local
1313 next_pos = libpath.find(':', pos); in finalize()
1314 size_t len = (next_pos == std::string::npos in finalize()
1315 ? next_pos in finalize()
1316 : next_pos - pos); in finalize()
1319 pos = next_pos + 1; in finalize()
1321 while (next_pos != std::string::npos); in finalize()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dpointer-query.cc2428 HOST_WIDE_INT next_pos = -1; in field_at_offset() local
2448 HOST_WIDE_INT fldpos = next_pos < 0 ? int_byte_position (fld) : next_pos; in field_at_offset()
2474 next_pos = tree_to_shwi (pos); in field_at_offset()
2475 *nextoff = *fldoff + next_pos; in field_at_offset()
2519 *nextoff = next_pos; in field_at_offset()