Home
last modified time | relevance | path

Searched refs:op_id (Results 1 – 16 of 16) sorted by relevance

/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 Dlinear_linear.hpp253 static const std::size_t op_id = OpId; member in boost::geometry::detail::relate::linear_linear::turns_analyser
277 overlay::operation_type const op = it->operations[op_id].operation; in apply()
279 segment_identifier const& seg_id = it->operations[op_id].seg_id; in apply()
307 if ( it->operations[op_id].position == overlay::position_back ) in apply()
326 if ( ! turn_on_the_same_ip<op_id>(m_exit_watcher.get_exit_turn(), *it) ) in apply()
347 && turn_on_the_same_ip<op_id>(m_exit_watcher.get_exit_turn(), *it) ) in apply()
364 … bool const this_b = it->operations[op_id].position == overlay::position_front // ignore spikes! in apply()
366 it->operations[op_id], in apply()
396 && it->operations[op_id].position != overlay::position_front in apply()
425 bool const is_collinear = it->operations[op_id].is_collinear; in apply()
[all …]
H A Dlinear_areal.hpp619 static const std::size_t op_id = 0; member in boost::geometry::detail::relate::linear_areal::turns_analyser
645 overlay::operation_type op = it->operations[op_id].operation; in apply()
655 segment_identifier const& seg_id = it->operations[op_id].seg_id; in apply()
671 if ( ! turn_on_the_same_ip<op_id>(m_exit_watcher.get_exit_turn(), *it) ) in apply()
681 … segment_identifier const& prev_seg_id = m_previous_turn_ptr->operations[op_id].seg_id; in apply()
706 … && seg_id.multi_index == m_previous_turn_ptr->operations[op_id].seg_id.multi_index ) in apply()
713 && turn_on_the_same_ip<op_id>(m_exit_watcher.get_exit_turn(), *it) ) in apply()
731 …|| seg_id.multi_index != m_previous_turn_ptr->operations[op_id].seg_id.multi_index ) ) // or the n… in apply()
733 && ! turn_on_the_same_ip<op_id>(*m_previous_turn_ptr, *it) ) in apply()
765 if ( ! turn_on_the_same_ip<op_id>(*m_previous_turn_ptr, *it) ) in apply()
[all …]
H A Dareal_areal.hpp432 static const std::size_t op_id = OpId; member in boost::geometry::detail::relate::areal_areal::turns_analyser
450 overlay::operation_type const op = it->operations[op_id].operation; in apply()
460 segment_identifier const& seg_id = it->operations[op_id].seg_id; in apply()
471 || ! turn_on_the_same_ip<op_id>(*m_previous_turn_ptr, *it) ) in apply()
487 || ! turn_on_the_same_ip<op_id>(*m_previous_turn_ptr, *it) ) in apply()
H A Dfollow_helpers.hpp233 static const std::size_t op_id = OpId; member in boost::geometry::detail::relate::exit_watcher
258 overlay::operation_type exit_op = turn.operations[op_id].operation; in exit()
/OK3568_Linux_fs/kernel/drivers/mtd/nand/raw/
H A Dvf610_nfc.c347 vf610_get_next_instr(const struct nand_subop *subop, int *op_id) in vf610_get_next_instr() argument
349 if (*op_id + 1 >= subop->ninstrs) in vf610_get_next_instr()
352 (*op_id)++; in vf610_get_next_instr()
354 return &subop->instrs[*op_id]; in vf610_get_next_instr()
362 int op_id = -1, trfr_sz = 0, offset = 0; in vf610_nfc_cmd() local
372 instr = vf610_get_next_instr(subop, &op_id); in vf610_nfc_cmd()
380 instr = vf610_get_next_instr(subop, &op_id); in vf610_nfc_cmd()
384 int naddrs = nand_subop_get_num_addr_cyc(subop, op_id); in vf610_nfc_cmd()
385 int i = nand_subop_get_addr_start_off(subop, op_id); in vf610_nfc_cmd()
397 instr = vf610_get_next_instr(subop, &op_id); in vf610_nfc_cmd()
[all …]
H A Darasan-nand-controller.c526 unsigned int op_id; in anfc_parse_instructions() local
533 for (op_id = 0; op_id < subop->ninstrs; op_id++) { in anfc_parse_instructions()
538 instr = &subop->instrs[op_id]; in anfc_parse_instructions()
551 offset = nand_subop_get_addr_start_off(subop, op_id); in anfc_parse_instructions()
552 naddrs = nand_subop_get_num_addr_cyc(subop, op_id); in anfc_parse_instructions()
568 offset = nand_subop_get_data_start_off(subop, op_id); in anfc_parse_instructions()
571 nfc_op->len = nand_subop_get_data_len(subop, op_id); in anfc_parse_instructions()
814 int op_id; in anfc_check_op() local
823 for (op_id = 0; op_id < op->ninstrs; op_id++) { in anfc_check_op()
824 instr = &op->instrs[op_id]; in anfc_check_op()
H A Dtegra_nand.c353 unsigned int op_id, size = 0, offset = 0; in tegra_nand_cmd() local
358 for (op_id = 0; op_id < subop->ninstrs; op_id++) { in tegra_nand_cmd()
363 instr = &subop->instrs[op_id]; in tegra_nand_cmd()
380 offset = nand_subop_get_addr_start_off(subop, op_id); in tegra_nand_cmd()
381 naddrs = nand_subop_get_num_addr_cyc(subop, op_id); in tegra_nand_cmd()
396 size = nand_subop_get_data_len(subop, op_id); in tegra_nand_cmd()
397 offset = nand_subop_get_data_start_off(subop, op_id); in tegra_nand_cmd()
406 size = nand_subop_get_data_len(subop, op_id); in tegra_nand_cmd()
407 offset = nand_subop_get_data_start_off(subop, op_id); in tegra_nand_cmd()
H A Dmxic_nand.c394 unsigned int op_id; in mxic_nfc_exec_op() local
401 for (op_id = 0; op_id < op->ninstrs; op_id++) { in mxic_nfc_exec_op()
402 instr = &op->instrs[op_id]; in mxic_nfc_exec_op()
H A Dcadence-nand-controller.c2004 unsigned int op_id = 0; in cadence_nand_cmd_opcode() local
2008 instr = &subop->instrs[op_id]; in cadence_nand_cmd_opcode()
2034 unsigned int op_id = 0; in cadence_nand_cmd_address() local
2042 instr = &subop->instrs[op_id]; in cadence_nand_cmd_address()
2050 offset = nand_subop_get_addr_start_off(subop, op_id); in cadence_nand_cmd_address()
2051 naddrs = nand_subop_get_num_addr_cyc(subop, op_id); in cadence_nand_cmd_address()
2074 unsigned int op_id; in cadence_nand_cmd_erase() local
2098 for (op_id = 0; op_id < subop->ninstrs; op_id++) { in cadence_nand_cmd_erase()
2102 .instrs = &subop->instrs[op_id], in cadence_nand_cmd_erase()
2118 unsigned int offset, op_id = 0; in cadence_nand_cmd_data() local
[all …]
H A Dmarvell_nand.c1681 unsigned int op_id; in marvell_nfc_parse_instructions() local
1687 for (op_id = 0; op_id < subop->ninstrs; op_id++) { in marvell_nfc_parse_instructions()
1692 instr = &subop->instrs[op_id]; in marvell_nfc_parse_instructions()
1709 offset = nand_subop_get_addr_start_off(subop, op_id); in marvell_nfc_parse_instructions()
1710 naddrs = nand_subop_get_num_addr_cyc(subop, op_id); in marvell_nfc_parse_instructions()
1730 nfc_op->data_instr_idx = op_id; in marvell_nfc_parse_instructions()
1736 len = nand_subop_get_data_len(subop, op_id); in marvell_nfc_parse_instructions()
1744 nfc_op->data_instr_idx = op_id; in marvell_nfc_parse_instructions()
1750 len = nand_subop_get_data_len(subop, op_id); in marvell_nfc_parse_instructions()
1770 unsigned int op_id = nfc_op->data_instr_idx; in marvell_nfc_xfer_data_pio() local
[all …]
H A Dfsmc_nand.c625 unsigned int op_id; in fsmc_exec_op() local
633 for (op_id = 0; op_id < op->ninstrs; op_id++) { in fsmc_exec_op()
634 instr = &op->instrs[op_id]; in fsmc_exec_op()
H A Dmeson_nand.c899 u32 op_id, delay_idle, cmd; in meson_nfc_exec_op() local
906 for (op_id = 0; op_id < op->ninstrs; op_id++) { in meson_nfc_exec_op()
907 instr = &op->instrs[op_id]; in meson_nfc_exec_op()
H A Dstm32_fmc2_nand.c1298 unsigned int op_id, i, timeout; in stm32_fmc2_nfc_exec_op() local
1308 for (op_id = 0; op_id < op->ninstrs; op_id++) { in stm32_fmc2_nfc_exec_op()
1309 instr = &op->instrs[op_id]; in stm32_fmc2_nfc_exec_op()
H A Dnandsim.c2171 unsigned int op_id; in ns_exec_op() local
2180 for (op_id = 0; op_id < op->ninstrs; op_id++) { in ns_exec_op()
2181 instr = &op->instrs[op_id]; in ns_exec_op()
/OK3568_Linux_fs/kernel/include/linux/mtd/
H A Drawnand.h840 unsigned int op_id);
842 unsigned int op_id);
844 unsigned int op_id);
846 unsigned int op_id);
/OK3568_Linux_fs/kernel/include/trace/events/
H A Dafs.h1229 __field(unsigned int, op_id )
1235 __entry->op_id = call->operation_ID;
1240 __entry->call, __entry->op_id, &__entry->srx.transport)
1250 __field(unsigned int, op_id )
1256 __entry->op_id = call->operation_ID;
1261 __entry->call, __entry->op_id, &__entry->uuid)