Home
last modified time | relevance | path

Searched refs:map2 (Results 1 – 8 of 8) sorted by relevance

/oneTBB/examples/parallel_for/polygon_overlay/
H A Dpolyover.hpp30 Polygon_map_t *map2,
33 extern void SerialOverlayMaps(Polygon_map_t **resultMap, Polygon_map_t *map1, Polygon_map_t *map2);
51 extern bool ComparePolygonMaps(Polygon_map_t *map1, Polygon_map_t *map2);
H A Dpolyover.cpp57 RPolygon *p2 = &((*map2)[j]); in OverlayOnePolygonWithMap()
123 Polygon_map_t *map2, in ApplyOverlay() argument
127 m_map2(map2), in ApplyOverlay()
314 Flagged_map_t &map2() { in map2() function in blocked_range_with_maps
350 Flagged_map_t &fmap2 = r.map2(); in operator ()()
386 Polygon_map_t *map2, in ApplySplitOverlay() argument
390 m_map2(map2), in ApplySplitOverlay()
485 Flagged_map_t &fmap2 = r.map2(); in operator ()()
520 m_map2(map2) {} in ApplySplitOverlayCV()
622 Flagged_map_t &fmap2 = r.map2(); in operator ()()
[all …]
H A Dpolymain.hpp46 extern bool ComparePolygonMaps(Polygon_map_t *map1, Polygon_map_t *map2);
H A Dpolymain.cpp651 bool ComparePolygonMaps(Polygon_map_t *map1, Polygon_map_t *map2) { in ComparePolygonMaps() argument
662 t2->reserve(map2->size()); in ComparePolygonMaps()
663 for (unsigned int i = 1; i < map2->size(); i++) { in ComparePolygonMaps()
664 t2->push_back(map2->at(i)); in ComparePolygonMaps()
H A DREADME.md23 … by maxY, and sort the other map (map2) by minY. For p1 in map1, start testing for intersection at…
/oneTBB/test/tbb/
H A Dtest_concurrent_hash_map.cpp412 map2.clear(); in TestScopedAllocator()
415 map2.insert(std::move(v2)); in TestScopedAllocator()
418 map2.clear(); in TestScopedAllocator()
423 map2.clear(); in TestScopedAllocator()
429 map1 = map2; in TestScopedAllocator()
430 map2 = std::move(map1); in TestScopedAllocator()
434 map3 = map2; in TestScopedAllocator()
827 map_type map2({{42, 42}, {24, 42}}); variable
828 map_type map3(map2);
830 swap(map1, map2);
[all …]
/oneTBB/test/conformance/
H A Dconformance_concurrent_map.cpp117 TMap map2(v.begin(), v.end(), compare); in test_deduction_guides() local
118 static_assert(std::is_same_v<decltype(map2), TMap<int, int, decltype(compare)> >, "WRONG\n"); in test_deduction_guides()
H A Dconformance_concurrent_hash_map.cpp1066 map_type map2(compare, allocator); in TestHashCompareConstructors() local