/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | paragraph_manager.cpp | 215 if (textAffinity == TextAffinity::UPSTREAM || std::next(it) == paragraphs_.end()) { in CalcCaretMetricsByPosition() 386 auto next = std::next(iter); in IsSelectLineHeadAndUseLeadingMargin() local 387 if (next != paragraphs_.end()) { in IsSelectLineHeadAndUseLeadingMargin() 388 auto nextParagraph = *next; in IsSelectLineHeadAndUseLeadingMargin()
|
/foundation/multimedia/player_framework/services/engine/common/recorder_profiles/ |
H A D | recorder_profiles_xml_parser.cpp | 113 for (; currNode != nullptr; currNode = currNode->next) {
in ParseInternal() 174 for (; child; child = child->next) {
in ParseRecorderCapsData() 380 for (; child; child = child->next) {
in ParseRecorderProfilesData() 420 for (; child; child = child->next) {
in ParseRecorderProfileSettingsData() 452 for (; leafChild; leafChild = leafChild->next) {
in ParseRecorderProfileVideoAudioData()
|
/foundation/multimodalinput/input/service/touch_event_normalize/src/ |
H A D | touch_gesture_detector.cpp | 501 double *next = vertices[(j + 1) % count]; in CalcGravityCenter() local 502 double crossProduct = current[0] * next[1] - next[0] * current[1]; in CalcGravityCenter() 504 xSum += (current[0] + next[0]) * crossProduct; in CalcGravityCenter() 505 ySum += (current[1] + next[1]) * crossProduct; in CalcGravityCenter()
|
/kernel/linux/linux-5.10/arch/arm64/kernel/ |
H A D | smp.c | 659 goto next; in of_parse_and_init_cpus() 664 goto next; in of_parse_and_init_cpus() 677 goto next; in of_parse_and_init_cpus() 693 goto next; in of_parse_and_init_cpus() 699 next: in of_parse_and_init_cpus()
|
/kernel/linux/linux-5.10/drivers/base/regmap/ |
H A D | regmap-debugfs.c | 548 struct rb_node *next; in regmap_debugfs_init() local 639 next = rb_first(&map->range_tree); in regmap_debugfs_init() 640 while (next) { in regmap_debugfs_init() 641 range_node = rb_entry(next, struct regmap_range_node, node); in regmap_debugfs_init() 648 next = rb_next(&range_node->node); in regmap_debugfs_init()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/aquantia/atlantic/ |
H A D | aq_ring.c | 370 if (buff_->next >= self->size) { in aq_ring_rx_clean() 376 next_ = buff_->next, in aq_ring_rx_clean() 398 if (buff_->next >= self->size) { in aq_ring_rx_clean() 402 next_ = buff_->next, in aq_ring_rx_clean() 461 next_ = buff_->next; in aq_ring_rx_clean()
|
/kernel/linux/linux-5.10/drivers/md/ |
H A D | dm-region-hash.c | 442 struct dm_region *reg, *next; in dm_rh_update_states() local 483 list_for_each_entry_safe(reg, next, &recovered, list) { in dm_rh_update_states() 489 list_for_each_entry_safe(reg, next, &failed_recovered, list) { in dm_rh_update_states() 494 list_for_each_entry_safe(reg, next, &clean, list) { in dm_rh_update_states() 552 * We can move the region to corresponding list for next action. in dm_rh_dec() 594 * Ask the dirty log what's next. in __rh_recovery_prepare() 651 reg = list_entry(rh->quiesced_regions.next, in dm_rh_recovery_start()
|
/kernel/linux/linux-5.10/drivers/usb/host/ |
H A D | uhci-debug.c | 220 struct urb_priv *urbp = list_entry(qh->queue.next, in uhci_show_qh() 222 struct uhci_td *td = list_entry(urbp->td_list.next, in uhci_show_qh() 435 tmp = tmp->next; in uhci_sprint_schedule() 507 tmp = head->next; in uhci_sprint_schedule() 511 tmp = tmp->next; in uhci_sprint_schedule() 536 " last QH not linked to next skeleton!\n"); in uhci_sprint_schedule()
|
/kernel/linux/linux-5.10/net/tipc/ |
H A D | msg.c | 78 skb->next = NULL; in tipc_buf_acquire() 145 frag->next = NULL; in tipc_buf_append() 172 tail->next = frag; in tipc_buf_append() 577 * Returns position of next msg 743 skb->next = NULL; in tipc_msg_assemble() 783 frag->next = NULL; in tipc_msg_reassemble()
|
/kernel/linux/linux-5.10/scripts/kconfig/ |
H A D | parser.y | 618 for (prop = sym->prop; prop; prop = prop->next) { 714 else if (menu->next) 715 menu = menu->next; 719 if (menu->next) { 720 menu = menu->next;
|
/kernel/linux/linux-5.10/fs/afs/ |
H A D | proc.c | 79 .next = afs_proc_cells_next, 252 .next = afs_proc_cell_volumes_next, 368 .next = afs_proc_cell_vlservers_next, 427 .next = afs_proc_servers_next, 482 .next = afs_proc_sysname_next,
|
/kernel/linux/linux-5.10/mm/ |
H A D | oom_kill.c | 314 goto next; in oom_evaluate_task() 318 goto next; in oom_evaluate_task() 328 goto next; in oom_evaluate_task() 343 goto next; in oom_evaluate_task() 351 next: in oom_evaluate_task()
|
/kernel/linux/linux-5.10/kernel/time/ |
H A D | alarmtimer.c | 195 * the next future alarm timer expires. 265 struct timerqueue_node *next; in alarmtimer_suspend() local 269 next = timerqueue_getnext(&base->timerqueue); in alarmtimer_suspend() 271 if (!next) in alarmtimer_suspend() 273 delta = ktime_sub(next->expires, base->get_ktime()); in alarmtimer_suspend() 275 expires = next->expires; in alarmtimer_suspend()
|
/kernel/linux/linux-5.10/net/core/ |
H A D | datagram.c | 153 skb->prev->next = nskb; in skb_set_peeked() 154 skb->next->prev = nskb; in skb_set_peeked() 156 nskb->next = skb->next; in skb_set_peeked() 360 if (skb->next) { in __sk_queue_drop_skb()
|
/kernel/linux/linux-5.10/drivers/staging/octeon/ |
H A D | ethernet-tx.c | 99 t->next = to_free_list; in cvm_oct_free_tx_skbs() 109 to_free_list = to_free_list->next; in cvm_oct_free_tx_skbs() 445 skb->next = to_free_list; in cvm_oct_xmit() 462 t->next = to_free_list; in cvm_oct_xmit() 473 to_free_list = to_free_list->next; in cvm_oct_xmit() 540 * leave 8 bytes for a next pointer (unused). We also need to in cvm_oct_xmit_pow()
|
/kernel/linux/linux-6.6/fs/afs/ |
H A D | proc.c | 79 .next = afs_proc_cells_next, 252 .next = afs_proc_cell_volumes_next, 368 .next = afs_proc_cell_vlservers_next, 427 .next = afs_proc_servers_next, 482 .next = afs_proc_sysname_next,
|
/kernel/linux/linux-6.6/drivers/staging/octeon/ |
H A D | ethernet-tx.c | 97 t->next = to_free_list; in cvm_oct_free_tx_skbs() 107 to_free_list = to_free_list->next; in cvm_oct_free_tx_skbs() 443 skb->next = to_free_list; in cvm_oct_xmit() 460 t->next = to_free_list; in cvm_oct_xmit() 471 to_free_list = to_free_list->next; in cvm_oct_xmit() 537 * leave 8 bytes for a next pointer (unused). We also need to in cvm_oct_xmit_pow()
|
/kernel/linux/linux-6.6/drivers/usb/host/ |
H A D | uhci-debug.c | 220 struct urb_priv *urbp = list_entry(qh->queue.next, in uhci_show_qh() 222 struct uhci_td *td = list_entry(urbp->td_list.next, in uhci_show_qh() 435 tmp = tmp->next; in uhci_sprint_schedule() 507 tmp = head->next; in uhci_sprint_schedule() 511 tmp = tmp->next; in uhci_sprint_schedule() 536 " last QH not linked to next skeleton!\n"); in uhci_sprint_schedule()
|
/kernel/linux/linux-6.6/drivers/base/regmap/ |
H A D | regmap-debugfs.c | 548 struct rb_node *next; in regmap_debugfs_init() local 650 next = rb_first(&map->range_tree); in regmap_debugfs_init() 651 while (next) { in regmap_debugfs_init() 652 range_node = rb_entry(next, struct regmap_range_node, node); in regmap_debugfs_init() 659 next = rb_next(&range_node->node); in regmap_debugfs_init()
|
/kernel/linux/linux-6.6/drivers/md/ |
H A D | dm-region-hash.c | 445 struct dm_region *reg, *next; in dm_rh_update_states() local 486 list_for_each_entry_safe(reg, next, &recovered, list) { in dm_rh_update_states() 492 list_for_each_entry_safe(reg, next, &failed_recovered, list) { in dm_rh_update_states() 497 list_for_each_entry_safe(reg, next, &clean, list) { in dm_rh_update_states() 555 * We can move the region to corresponding list for next action. in dm_rh_dec() 597 * Ask the dirty log what's next. in __rh_recovery_prepare() 654 reg = list_entry(rh->quiesced_regions.next, in dm_rh_recovery_start()
|
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-annotate.c | 327 struct rb_node *nd = rb_first_cached(&hists->entries), *next; in hists__find_annotations() local 392 next = rb_next(nd); in hists__find_annotations() 396 next = rb_prev(nd); in hists__find_annotations() 402 if (next != NULL) in hists__find_annotations() 403 nd = next; in hists__find_annotations()
|
/kernel/linux/linux-6.6/net/tls/ |
H A D | tls_strp.c | 171 goto next; in tls_strp_msg_hold() 183 next: in tls_strp_msg_hold() 184 iter = iter->next; in tls_strp_msg_hold() 305 last->next = nskb; in tls_strp_copyin_skb() 442 skb = skb->next; in tls_strp_check_queue_ok()
|
/kernel/linux/linux-6.6/scripts/kconfig/ |
H A D | conf.c | 487 for (child = menu->list; child; child = child->next) { in conf_choice() 542 for (child = menu->list; child; child = child->next) { in conf_choice() 555 for (child = child->list; child; child = child->next) { in conf_choice() 625 for (child = menu->list; child; child = child->next) in conf() 663 for (child = menu->list; child; child = child->next) in check_conf()
|
H A D | parser.y | 609 for (prop = sym->prop; prop; prop = prop->next) { 705 else if (menu->next) 706 menu = menu->next; 710 if (menu->next) { 711 menu = menu->next;
|
/kernel/linux/linux-6.6/kernel/time/ |
H A D | tick-broadcast.c | 416 ktime_t next = ktime_add_ns(dev->next_event, TICK_NSEC); in tick_handle_periodic_broadcast() local 418 clockevents_program_event(dev, next, true); in tick_handle_periodic_broadcast() 881 * Bail out if there is no next event. in ___tick_broadcast_oneshot_control() 1007 ktime_t next; in tick_get_next_period() local 1016 next = tick_next_period; in tick_get_next_period() 1018 return next; in tick_get_next_period() 1069 * get their wake-up at the next tick. This is achieved by ORing in tick_broadcast_setup_oneshot() 1075 * next tick_broadcast_enter() would observe the bit set and fail in tick_broadcast_setup_oneshot() 1094 * The device was already armed for the next tick in tick_broadcast_setup_oneshot() 1103 * device for the next tic in tick_broadcast_setup_oneshot() [all...] |