Searched refs:firstv (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/libs/graph/test/ |
D | floyd_warshall_test.cpp | 36 typename boost::graph_traits< Graph >::vertex_iterator firstv, lastv, in acceptance_test() local 39 for (boost::tie(firstv, lastv) = boost::vertices(g); firstv != lastv; in acceptance_test() 40 firstv++) in acceptance_test() 42 boost::put(index, *firstv, x); in acceptance_test() 76 for (boost::tie(firstv, lastv) = boost::vertices(g); firstv != lastv; in acceptance_test() 77 firstv++) in acceptance_test() 79 boost::put(distance_row, *firstv, int_inf); in acceptance_test() 80 matrixRow[*firstv] = int_inf; in acceptance_test() 82 for (boost::tie(firstv, lastv) = boost::vertices(g); firstv != lastv; in acceptance_test() 83 firstv++) in acceptance_test() [all …]
|
/third_party/boost/boost/graph/ |
D | floyd_warshall_shortest.hpp | 99 typename graph_traits< VertexAndEdgeListGraph >::vertex_iterator firstv, in floyd_warshall_all_pairs_shortest_paths() local 103 for (boost::tie(firstv, lastv) = vertices(g); firstv != lastv; firstv++) in floyd_warshall_all_pairs_shortest_paths() 106 d[*firstv][*firstv2] = inf; in floyd_warshall_all_pairs_shortest_paths() 108 for (boost::tie(firstv, lastv) = vertices(g); firstv != lastv; firstv++) in floyd_warshall_all_pairs_shortest_paths() 109 d[*firstv][*firstv] = zero; in floyd_warshall_all_pairs_shortest_paths()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/ |
D | assembler_arm.cc | 3089 DRegister firstv = EvenDRegisterOf(kDartFirstVolatileFpuReg); in EnterCallRuntimeFrame() local 3091 if ((lastv - firstv + 1) >= 16) { in EnterCallRuntimeFrame() 3092 DRegister mid = static_cast<DRegister>(firstv + 16); in EnterCallRuntimeFrame() 3094 vstmd(DB_W, SP, firstv, 16); in EnterCallRuntimeFrame() 3096 vstmd(DB_W, SP, firstv, lastv - firstv + 1); in EnterCallRuntimeFrame() 3124 DRegister firstv = EvenDRegisterOf(kDartFirstVolatileFpuReg); in LeaveCallRuntimeFrame() local 3126 if ((lastv - firstv + 1) >= 16) { in LeaveCallRuntimeFrame() 3127 DRegister mid = static_cast<DRegister>(firstv + 16); in LeaveCallRuntimeFrame() 3128 vldmd(IA_W, SP, firstv, 16); in LeaveCallRuntimeFrame() 3131 vldmd(IA_W, SP, firstv, lastv - firstv + 1); in LeaveCallRuntimeFrame()
|