| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/buffer/ |
| H A D | turn_in_piece_visitor.hpp | 80 template <typename Box, typename Turn> 81 static inline void apply(Box& total, Turn const& turn) in apply() 83 geometry::expand(total, turn.robust_point); in apply() 89 template <typename Box, typename Turn> 90 static inline bool apply(Box const& box, Turn const& turn) in apply() 92 return ! geometry::detail::disjoint::disjoint_point_box(turn.robust_point, box); in apply() 124 template <typename Point, typename Turn> 126 Point const& current, Turn const& turn, in check_segment() argument 132 segment_type const p(turn.rob_pi, turn.rob_pj); in check_segment() 133 segment_type const q(turn.rob_qi, turn.rob_qj); in check_segment() [all …]
|
| H A D | turn_in_original_visitor.hpp | 52 template <typename Turn> 53 static inline bool apply(Turn const& turn) in apply() 55 return turn.location == location_ok; in apply() 61 template <typename Box, typename Turn> 62 static inline bool apply(Box const& box, Turn const& turn) in apply() 64 if (turn.location != location_ok || turn.within_original) in apply() 71 turn.robust_point, box); in apply() 214 template <typename Turn, typename Original> 215 inline bool apply(Turn const& turn, Original const& original, bool first = true) in apply() argument 219 if (turn.location != location_ok || turn.within_original) in apply() [all …]
|
| H A D | buffer_policies.hpp | 66 typename boost::range_value<Turns>::type const& /*turn*/, in apply() 121 template <typename Turns, typename Turn, typename Operation> 122 …void visit_traverse(Turns const& /*turns*/, Turn const& /*turn*/, Operation const& /*op*/, const c… in visit_traverse() 126 template <typename Turns, typename Turn, typename Operation> 127 void visit_traverse_reject(Turns const& , Turn const& , Operation const& , in visit_traverse_reject() 133 // Should follow traversal-turn-concept (enrichment, visit structure) 222 template <typename Turn> 223 inline bool operator()(Turn const& left, Turn const& right) const in operator ()()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/is_valid/ |
| H A D | is_acceptable_turn.hpp | 78 template <typename Turn> 79 static inline bool apply(Turn const&) in apply() 89 template <typename Turn, typename Method, typename Operation> 90 static inline bool check_turn(Turn const& turn, in check_turn() argument 94 return turn.method == method in check_turn() 95 && turn.operations[0].operation == operation in check_turn() 96 && turn.operations[1].operation == operation; in check_turn() 101 template <typename Turn> 102 static inline bool apply(Turn const& turn) in apply() argument 106 if ( turn.operations[0].seg_id.ring_index in apply() [all …]
|
| H A D | debug_print_turns.hpp | 28 template <typename Turn> 29 inline void debug_print_turn(Turn const& turn) in debug_print_turn() argument 32 << geometry::method_char(turn.method) in debug_print_turn() 34 << geometry::operation_char(turn.operations[0].operation) in debug_print_turn() 36 << geometry::operation_char(turn.operations[1].operation) in debug_print_turn() 38 << turn.operations[0].seg_id.multi_index in debug_print_turn() 40 << turn.operations[1].seg_id.multi_index in debug_print_turn() 42 << turn.operations[0].seg_id.ring_index in debug_print_turn() 44 << turn.operations[1].seg_id.ring_index in debug_print_turn() 46 << turn.operations[0].seg_id.segment_index in debug_print_turn() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/ |
| H A D | traversal.hpp | 44 template <typename Turn, typename Operation> 46 inline void debug_traverse(Turn const& turn, Operation op, in debug_traverse() argument 55 << " meth: " << method_char(turn.method) in debug_traverse() 58 << " of: " << operation_char(turn.operations[0].operation) in debug_traverse() 59 << operation_char(turn.operations[1].operation) in debug_traverse() 60 << " " << geometry::wkt(turn.point) in debug_traverse() 69 inline void debug_traverse(Turn const& , Operation, const char*, bool = true) 141 turn_type& turn = *it; in finalize_visit_info() local 144 turn_operation_type& op = turn.operations[i]; in finalize_visit_info() 150 //! Sets visited for ALL turns traveling to the same turn [all …]
|
| H A D | traversal_switch_detector.hpp | 95 // Keeps turn indices per ring 226 turn_type& turn = m_turns[turn_index]; in assign_isolation() local 230 turn_operation_type& op = turn.operations[op_index]; in assign_isolation() 252 turn_type& turn = m_turns[*sit]; in assign_regions() local 256 turn_operation_type& op = turn.operations[i]; in assign_regions() 262 signed_size_type const& id0 = turn.operations[0].enriched.region_id; in assign_regions() 263 signed_size_type const& id1 = turn.operations[1].enriched.region_id; in assign_regions() 273 if (turn.cluster_id < 0) in assign_regions() 275 // Turn is not colocated, add reference to connection in assign_regions() 281 // Turn is colocated, only add region reference if it was not yet registered in assign_regions() [all …]
|
| H A D | is_self_turn.hpp | 25 template <typename Turn> 26 static inline bool apply(Turn const& turn) in apply() 28 return turn.operations[0].seg_id.source_index in apply() 29 == turn.operations[1].seg_id.source_index; in apply() 36 template <typename Turn> 37 static inline bool apply(Turn const& turn) in apply() 46 template <typename Turn> 47 static inline bool apply(Turn const& turn) in apply() 54 template <overlay_type OverlayType, typename Turn> 55 bool is_self_turn(Turn const& turn) in is_self_turn() argument [all …]
|
| H A D | handle_self_turns.hpp | 53 turn_type& turn = *it; in apply() local 55 if (turn.cluster_id >= 0 in apply() 56 || turn.discarded in apply() 57 || ! is_self_turn<overlay_union>(turn)) in apply() 63 turn.operations[0].seg_id.source_index == 0 in apply() 64 ? geometry::within(turn.point, geometry1) in apply() 65 : geometry::within(turn.point, geometry0); in apply() 70 turn.discarded = true; in apply() 90 turn_type& turn = *it; in apply() local 92 if (turn.cluster_id >= 0 in apply() [all …]
|
| H A D | follow.hpp | 42 template <typename Turn, typename Operation> 43 static inline bool is_entering(Turn const& /* TODO remove this parameter */, Operation const& op) in is_entering() 55 typename Turn, 61 static inline bool last_covered_by(Turn const& turn, Operation const& op, in last_covered_by() argument 71 typename Turn, 77 static inline bool is_leaving(Turn const& turn, Operation const& op, in is_leaving() argument 85 || turn.method == method_crosses in is_leaving() 86 || (first && last_covered_by(turn, op, linestring, polygon, strategy)) in is_leaving() 95 typename Turn, 101 static inline bool is_staying_inside(Turn const& turn, Operation const& op, in is_staying_inside() argument [all …]
|
| H A D | follow_linear_linear.hpp | 56 template <typename Turn, typename Operation> 57 static inline bool is_entering(Turn const& turn, in is_entering() argument 60 if ( turn.method != method_touch && turn.method != method_touch_interior ) in is_entering() 69 template <typename Turn, typename Operation> 70 static inline bool is_staying_inside(Turn const& turn, in is_staying_inside() argument 79 if ( turn.method != method_equal && turn.method != method_collinear ) in is_staying_inside() 88 template <typename Turn, typename Operation> 89 static inline bool is_leaving(Turn const& turn, in is_leaving() argument 98 if ( turn.method != method_touch in is_leaving() 99 && turn.method != method_touch_interior in is_leaving() [all …]
|
| H A D | handle_colocations.hpp | 110 // Order xx first - used to discard any following colocated turn in operator ()() 175 template <typename Turn, typename ClusterPerSegment> 176 inline signed_size_type add_turn_to_cluster(Turn const& turn, in add_turn_to_cluster() argument 179 signed_size_type cid0 = get_cluster_id(turn.operations[0], cluster_per_segment); in add_turn_to_cluster() 180 signed_size_type cid1 = get_cluster_id(turn.operations[1], cluster_per_segment); in add_turn_to_cluster() 185 add_cluster_id(turn.operations[0], cluster_per_segment, cluster_id); in add_turn_to_cluster() 186 add_cluster_id(turn.operations[1], cluster_per_segment, cluster_id); in add_turn_to_cluster() 191 add_cluster_id(turn.operations[0], cluster_per_segment, cid1); in add_turn_to_cluster() 196 add_cluster_id(turn.operations[1], cluster_per_segment, cid0); in add_turn_to_cluster() 242 turn_type& turn = turns[toi.turn_index]; in handle_colocation_cluster() local [all …]
|
| H A D | enrich_intersection_points.hpp | 110 turn_type& turn = turns[it->turn_index]; in enrich_assign() local 111 op_type& op = turn.operations[it->operation_index]; in enrich_assign() 113 // Normal behaviour: next should point at next turn: in enrich_assign() 121 while (turn.cluster_id != -1 in enrich_assign() 123 && turn.cluster_id == turns[next->turn_index].cluster_id in enrich_assign() 140 // Next turn is located further on same segment in enrich_assign() 197 turn_type const& turn = *it; in create_map() local 198 if (turn.discarded) in create_map() 205 op_it = boost::begin(turn.operations); in create_map() 206 op_it != boost::end(turn.operations); in create_map() [all …]
|
| H A D | check_enrich.hpp | 28 template<typename Turn> 32 Turn const* turn; member 35 inline meta_turn(int i, Turn const& t) in meta_turn() 36 : index(i), turn(&t) in meta_turn() 49 << "\tMethods: " << method_char(meta_turn.turn->method) in display() 50 << " operations: " << operation_char(meta_turn.turn->operations[0].operation) in display() 51 << operation_char(meta_turn.turn->operations[1].operation) in display() 52 << " travels to " << meta_turn.turn->operations[0].enriched.travels_to_ip_index in display() 53 << " and " << meta_turn.turn->operations[1].enriched.travels_to_ip_index in display() 67 int const ip_index = meta_turn.turn->operations[op_index].enriched.travels_to_ip_index; in check_detailed() [all …]
|
| H A D | overlay.hpp | 83 template <typename Turns, typename Turn, typename Operation> 84 void visit_traverse(Turns const& , Turn const& , Operation const& , char const*) in visit_traverse() 87 template <typename Turns, typename Turn, typename Operation> 88 void visit_traverse_reject(Turns const& , Turn const& , Operation const& , traverse_error_type ) in visit_traverse_reject() 115 typename boost::range_value<Turns>::type const& turn = *it; in get_ring_turn_info() local 118 ? turn.colocated_uu : turn.colocated_ii; in get_ring_turn_info() 120 ? turn.colocated_ii : turn.colocated_uu; in get_ring_turn_info() 121 bool const both_opposite = turn.both(opposite_operation); in get_ring_turn_info() 124 = turn.operations[0].visited.finalized() in get_ring_turn_info() 125 || turn.operations[0].visited.rejected() in get_ring_turn_info() [all …]
|
| H A D | traversal_ring_creator.hpp | 208 turn_type const& turn = m_turns[current_turn_index]; in traverse() local 209 if (turn.cluster_id == start_turn.cluster_id) in traverse() 312 turn_type const& turn = m_turns[turn_index]; in iterate() local 314 if (turn.discarded || turn.blocked()) in iterate() 320 if (turn.both(operation_continue)) in iterate() 322 // Traverse only one turn, the one with the SMALLEST remaining distance in iterate() 323 // to avoid skipping a turn in between, which can happen in rare cases in iterate() 325 turn_operation_type const& op0 = turn.operations[0]; in iterate() 326 turn_operation_type const& op1 = turn.operations[1]; in iterate() 330 traverse_with_operation(turn, turn_index, op_index, in iterate() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/is_simple/ |
| H A D | linear.hpp | 64 template <typename Turn> 65 inline bool check_segment_indices(Turn const& turn, in check_segment_indices() argument 69 (turn.operations[0].seg_id.segment_index == 0 in check_segment_indices() 70 && turn.operations[1].seg_id.segment_index == last_index) in check_segment_indices() 72 (turn.operations[0].seg_id.segment_index == 0 in check_segment_indices() 73 && turn.operations[1].seg_id.segment_index == last_index); in check_segment_indices() 92 template <typename Turn> 93 inline bool apply(Turn const& turn) const in apply() 97 && turn.method == overlay::method_none in apply() 98 && check_segment_indices(turn, boost::size(m_linestring) - 2) in apply() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/relate/ |
| H A D | turns.hpp | 158 template <typename Turn> 159 inline bool operator()(Turn const& left, Turn const& right) const in operator ()() 174 template <typename Turn> 175 inline bool operator()(Turn const& left, Turn const& right) const in operator ()() 184 typedef typename Turn::turn_operation_type operation_type; in operator ()() 209 template <typename Turn> 210 inline bool operator()(Turn const& left, Turn const& right) const in operator ()() 219 typedef typename Turn::turn_operation_type operation_type; in operator ()() 261 template <typename Turn> 262 inline bool operator()(Turn const& left, Turn const& right) const in operator ()() [all …]
|
| H A D | follow_helpers.hpp | 77 // check predicate for each contained geometry without generated turn in for_empty() 114 // check predicate for each contained geometry without generated turn in for_turns() 245 void enter(TurnInfo const& turn) in enter() argument 248 point_info(turn.point, turn.operations[other_op_id].seg_id) ); in enter() 254 void exit(TurnInfo const& turn, bool exit_per_geometry = true) in exit() argument 256 //segment_identifier const& seg_id = turn.operations[op_id].seg_id; in exit() 257 segment_identifier const& other_id = turn.operations[other_op_id].seg_id; in exit() 258 overlay::operation_type exit_op = turn.operations[op_id].operation; in exit() 277 m_exit_turn_ptr = boost::addressof(turn); in exit() 288 bool is_outside(TurnInfo const& turn) const in is_outside() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/turns/ |
| H A D | debug_turn.hpp | 33 template <typename Turn, typename Operation> 34 inline void debug_turn(Turn const& turn, Operation op, in debug_turn() argument 39 << " meth: " << method_char(turn.method) in debug_turn() 41 << " of: " << operation_char(turn.operations[0].operation) in debug_turn() 42 << operation_char(turn.operations[1].operation) in debug_turn() 43 << " " << geometry::wkt(turn.point) in debug_turn() 52 template <typename Turn, typename Operation> 53 inline void debug_turn(Turn const& , Operation, const char*)
|
| H A D | compare_turns.hpp | 63 template <typename Turn> 64 static inline bool use_other_id(Turn const& left, Turn const& right) in use_other_id() 85 template <typename Turn> 86 static inline bool use_fraction(Turn const& left, Turn const& right) in use_fraction() 98 template <typename Turn> 99 inline bool operator()(Turn const& left, Turn const& right) const in operator ()()
|
| H A D | filter_continue_turns.hpp | 46 template <typename Turn> 47 bool operator()(Turn const& turn) const in operator ()() 49 if ( turn.method != detail::overlay::method_collinear in operator ()() 50 && turn.method != detail::overlay::method_equal ) in operator ()() 55 return is_continue_or_opposite(turn.operations[0].operation) in operator ()() 56 && is_continue_or_opposite(turn.operations[1].operation); in operator ()()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeorouteparserosrmv5.cpp | 225 return QGeoRouteParserOsrmV5::tr("Make a U-turn"); in instructionContinue() 227 return QGeoRouteParserOsrmV5::tr("Make a U-turn onto %1").arg(wayName); in instructionContinue() 261 return QGeoRouteParserOsrmV5::tr("At the end of the road, turn left"); in instructionEndOfRoad() 263 … return QGeoRouteParserOsrmV5::tr("At the end of the road, turn left onto %1").arg(wayName); in instructionEndOfRoad() 269 return QGeoRouteParserOsrmV5::tr("At the end of the road, turn right"); in instructionEndOfRoad() 271 … return QGeoRouteParserOsrmV5::tr("At the end of the road, turn right onto %1").arg(wayName); in instructionEndOfRoad() 275 return QGeoRouteParserOsrmV5::tr("At the end of the road, make a U-turn"); in instructionEndOfRoad() 277 … return QGeoRouteParserOsrmV5::tr("At the end of the road, make a U-turn onto %1").arg(wayName); in instructionEndOfRoad() 310 return QGeoRouteParserOsrmV5::tr("At the fork, turn left"); in instructionFork() 312 return QGeoRouteParserOsrmV5::tr("At the fork, turn left onto %1").arg(wayName); in instructionFork() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/power/ |
| H A D | palmas.c | 34 /* TURN ON LDO1 */ in lp873x_mmc1_poweron_ldo() 37 printf("lp873x: could not turn on LDO1.\n"); in lp873x_mmc1_poweron_ldo() 60 /* TURN ON LDO1 */ in palmas_mmc1_poweron_ldo() 64 printf("tps65903x: could not turn on LDO1.\n"); in palmas_mmc1_poweron_ldo() 90 /* Turn on */ in twl603x_mmc1_set_ldo9() 108 printf("twl603x: could not turn %s LDO9: err = %d\n", in twl603x_mmc1_set_ldo9() 115 * Turn audio codec power and 32 kHz clock on/off. Use for 135 /* Turn on or off SMPS9 */ in twl603x_audio_power() 138 printf("twl603x: could not turn SMPS9 %s: err = %d\n", in twl603x_audio_power() 145 printf("twl603x: could not turn CLK32KGAUDIO %s: err = %d\n", in twl603x_audio_power()
|
| /OK3568_Linux_fs/kernel/fs/overlayfs/ |
| H A D | Kconfig | 15 bool "Overlayfs: turn on redirect directory feature by default" 20 still possible to turn off redirects globally with the 46 bool "Overlayfs: turn on inodes index feature by default" 51 In this case it is still possible to turn off index globally with the 65 bool "Overlayfs: turn on NFS export feature by default" 72 In this case, it is still possible to turn off NFS export support 111 bool "Overlayfs: turn on metadata only copy up feature by default" 118 possible to turn off this feature globally with the "metacopy=off"
|