Searched refs:aend (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | url.c | 91 const char *cur, *aend, *p; in ff_url_decompose() local 108 aend = find_delim("/?#", cur, end); in ff_url_decompose() 112 p = find_delim("@", cur, aend); in ff_url_decompose() 119 p = find_delim("]", cur, aend); in ff_url_decompose() 122 if (p + 1 < aend && p[1] != ':') in ff_url_decompose() 126 cur = find_delim(":", cur, aend); in ff_url_decompose() 131 cur = aend; in ff_url_decompose()
|
/third_party/boost/boost/graph/ |
D | edge_connectivity.hpp | 52 typename graph_traits< Graph >::adjacency_iterator ai, aend; in neighbors() local 53 for (boost::tie(ai, aend) = adjacent_vertices(u, g); ai != aend; ++ai) in neighbors()
|
/third_party/boost/libs/graph/example/ |
D | edge-connectivity.cpp | 48 typename graph_traits< Graph >::adjacency_iterator ai, aend; in neighbors() local 49 for (boost::tie(ai, aend) = adjacent_vertices(u, g); ai != aend; ++ai) in neighbors()
|
/third_party/boost/boost/graph/distributed/ |
D | strong_components.hpp | 241 adjacency_iterator abegin, aend; in fleischer_hendrickson_pinar_strong_components() local 246 for( boost::tie(abegin,aend) = adjacent_vertices(local_comp_map[i][j], g); in fleischer_hendrickson_pinar_strong_components() 247 abegin != aend; abegin++ ) in fleischer_hendrickson_pinar_strong_components()
|