Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/mpp/mpp/base/
H A Dmpp_cluster.cpp239 RK_U32 old_st = node->state; in mpp_node_task_schedule_f() local
244 if (old_st & NODE_WAIT) { in mpp_node_task_schedule_f()
245 cluster_dbg_flow("%s sched task %x stay wait\n", node_name, old_st); in mpp_node_task_schedule_f()
249 if (old_st & NODE_IDLE) { in mpp_node_task_schedule_f()
250 new_st = old_st ^ (NODE_IDLE | NODE_WAIT); in mpp_node_task_schedule_f()
251 cluster_dbg_flow("%s sched task %x -> %x wait\n", node_name, old_st, new_st); in mpp_node_task_schedule_f()
253 } else if (old_st & NODE_RUN) { in mpp_node_task_schedule_f()
254 new_st = old_st | NODE_SIGNAL; in mpp_node_task_schedule_f()
256 cluster_dbg_flow("%s sched task %x -> %x signal\n", node_name, old_st, new_st); in mpp_node_task_schedule_f()
258 cluster_dbg_flow("%s sched task %x unknow state %x\n", node_name, old_st); in mpp_node_task_schedule_f()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_kms.h147 struct drm_crtc_state *old_st; in is_only_changed_connector() local
150 old_st = drm_atomic_get_old_crtc_state(st->state, st->crtc); in is_only_changed_connector()
151 changed_connectors = st->connector_mask ^ old_st->connector_mask; in is_only_changed_connector()
H A Dkomeda_crtc.c325 struct komeda_crtc_state *old_st = to_kcrtc_st(old); in komeda_crtc_atomic_disable() local
333 old_st->active_pipes, old_st->affected_pipes); in komeda_crtc_atomic_disable()
335 if (slave && has_bit(slave->id, old_st->active_pipes)) in komeda_crtc_atomic_disable()
338 if (has_bit(master->id, old_st->active_pipes)) in komeda_crtc_atomic_disable()
H A Dkomeda_pipeline_state.c673 struct komeda_component_state *c_st, *old_st; in komeda_compiz_set_input() local
706 old_st = komeda_component_get_old_state(&compiz->base, drm_st); in komeda_compiz_set_input()
707 WARN_ON(!old_st); in komeda_compiz_set_input()
710 if (memcmp(&(to_compiz_st(old_st)->cins[idx]), cin, sizeof(*cin))) in komeda_compiz_set_input()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/
H A Dphl_p2pps.c186 u64 new_st = 0, old_st = 0; in _phl_p2pps_calc_next_noa_s_time() local
190 old_st = (((u64)orig_desc->start_t_h << 32) | orig_desc->start_t_l); in _phl_p2pps_calc_next_noa_s_time()
192 (u32)(old_st >> 32), (u32)old_st); in _phl_p2pps_calc_next_noa_s_time()
196 delta_t = tog_t - old_st; in _phl_p2pps_calc_next_noa_s_time()
202 new_st = old_st + (intv_cnt * new_desc->interval); in _phl_p2pps_calc_next_noa_s_time()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/
H A Dphl_p2pps.c186 u64 new_st = 0, old_st = 0; in _phl_p2pps_calc_next_noa_s_time() local
190 old_st = (((u64)orig_desc->start_t_h << 32) | orig_desc->start_t_l); in _phl_p2pps_calc_next_noa_s_time()
192 (u32)(old_st >> 32), (u32)old_st); in _phl_p2pps_calc_next_noa_s_time()
196 delta_t = tog_t - old_st; in _phl_p2pps_calc_next_noa_s_time()
202 new_st = old_st + (intv_cnt * new_desc->interval); in _phl_p2pps_calc_next_noa_s_time()
/OK3568_Linux_fs/kernel/block/
H A Dbfq-wf2q.c718 __bfq_entity_update_weight_prio(struct bfq_service_tree *old_st, in __bfq_entity_update_weight_prio() argument
722 struct bfq_service_tree *new_st = old_st; in __bfq_entity_update_weight_prio()
746 old_st->wsum -= entity->weight; in __bfq_entity_update_weight_prio()
807 if (new_st != old_st) in __bfq_entity_update_weight_prio()
H A Dbfq-iosched.h1039 __bfq_entity_update_weight_prio(struct bfq_service_tree *old_st,