Home
last modified time | relevance | path

Searched refs:aend (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavformat/
Durl.c91 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/
Dedge_connectivity.hpp52 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/
Dedge-connectivity.cpp48 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/
Dstrong_components.hpp241 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()