Home
last modified time | relevance | path

Searched refs:state (Results 3026 - 3050 of 20609) sorted by relevance

1...<<121122123124125126127128129130>>...825

/kernel/linux/linux-5.10/drivers/firmware/arm_scmi/
H A Dscmi_pm_domain.c26 u32 state, ret_state; in scmi_pd_power() local
31 state = SCMI_POWER_STATE_GENERIC_ON; in scmi_pd_power()
33 state = SCMI_POWER_STATE_GENERIC_OFF; in scmi_pd_power()
35 ret = ops->state_set(pd->handle, pd->domain, state); in scmi_pd_power()
38 if (!ret && state != ret_state) in scmi_pd_power()
86 u32 state; in scmi_pm_domain_probe() local
88 if (handle->power_ops->state_get(handle, i, &state)) { in scmi_pm_domain_probe()
89 dev_warn(dev, "failed to get state for domain %d\n", i); in scmi_pm_domain_probe()
101 state == SCMI_POWER_STATE_GENERIC_OFF); in scmi_pm_domain_probe()
/kernel/linux/linux-5.10/drivers/input/keyboard/
H A Dimx_sc_key.c38 u32 state; member
67 bool state; in imx_sc_check_for_events() local
83 * but ONLY the first byte is the key state, other in imx_sc_check_for_events()
85 * ONLY take the first byte as key state. in imx_sc_check_for_events()
87 state = (bool)(msg.state & 0xff); in imx_sc_check_for_events()
89 if (state ^ priv->keystate) { in imx_sc_check_for_events()
90 priv->keystate = state; in imx_sc_check_for_events()
91 input_event(input, EV_KEY, priv->keycode, state); in imx_sc_check_for_events()
97 if (state) in imx_sc_check_for_events()
[all...]
/kernel/linux/linux-5.10/include/drm/
H A Ddrm_modeset_helper_vtables.h163 * MUST NOT touch any persistent state (hardware or software) or data
169 * Atomic drivers which need to inspect and adjust more state should
322 * the provided check helpers multiple times until the computed state
325 * This function is also allowed to inspect any other object's state and
326 * can add more state objects to the atomic commit if needed. Care must
327 * be taken though to ensure that state check and compute functions for
328 * these added states are all called, and derived state in other objects
339 * state objects passed-in or assembled in the overall &drm_atomic_state
350 * 0 on success, -EINVAL if the state or the transition can't be
352 * attempt to obtain another state objec
[all...]
/kernel/linux/linux-6.6/drivers/net/dsa/mv88e6xxx/
H A Dpcs-6185.c58 struct phylink_link_state *state) in mv88e6185_pcs_get_state()
73 state->link = !!(status & MV88E6XXX_PORT_STS_LINK); in mv88e6185_pcs_get_state()
74 if (state->link) { in mv88e6185_pcs_get_state()
75 state->duplex = status & MV88E6XXX_PORT_STS_DUPLEX ? in mv88e6185_pcs_get_state()
80 state->speed = SPEED_1000; in mv88e6185_pcs_get_state()
84 state->speed = SPEED_100; in mv88e6185_pcs_get_state()
88 state->speed = SPEED_10; in mv88e6185_pcs_get_state()
92 state->link = false; in mv88e6185_pcs_get_state()
57 mv88e6185_pcs_get_state(struct phylink_pcs *pcs, struct phylink_link_state *state) mv88e6185_pcs_get_state() argument
/kernel/linux/linux-6.6/fs/xfs/libxfs/
H A Dxfs_da_btree.h109 * Storage for holding state during Btree searches and split/join ops.
177 int xfs_da3_split(xfs_da_state_t *state);
182 int xfs_da3_join(xfs_da_state_t *state);
183 void xfs_da3_fixhashpath(struct xfs_da_state *state,
189 int xfs_da3_node_lookup_int(xfs_da_state_t *state, int *result);
190 int xfs_da3_path_shift(xfs_da_state_t *state, xfs_da_state_path_t *path,
195 int xfs_da3_blk_link(xfs_da_state_t *state, xfs_da_state_blk_t *old_blk,
229 void xfs_da_state_free(xfs_da_state_t *state);
230 void xfs_da_state_reset(struct xfs_da_state *state, struct xfs_da_args *args);
/kernel/linux/linux-6.6/drivers/remoteproc/
H A Dremoteproc_sysfs.c33 * state if it crashes. This is useful for debugging purposes;
37 * remote processor is in a crashed state, without changing
38 * or checking the recovery state (enabled/disabled).
110 if (rproc->state == RPROC_CRASHED) { in coredump_store()
142 if (rproc->state == RPROC_ATTACHED) in firmware_show()
163 * A state-to-string lookup table, for exposing a human readable state
177 /* Expose the state of the remote processor via sysfs */
182 unsigned int state; in state_show() local
184 state in state_show()
[all...]
/kernel/linux/linux-6.6/drivers/firmware/arm_scmi/
H A Dscmi_pm_domain.c28 u32 state, ret_state; in scmi_pd_power() local
32 state = SCMI_POWER_STATE_GENERIC_ON; in scmi_pd_power()
34 state = SCMI_POWER_STATE_GENERIC_OFF; in scmi_pd_power()
36 ret = power_ops->state_set(pd->ph, pd->domain, state); in scmi_pd_power()
39 if (!ret && state != ret_state) in scmi_pd_power()
92 u32 state; in scmi_pm_domain_probe() local
94 if (power_ops->state_get(ph, i, &state)) { in scmi_pm_domain_probe()
95 dev_warn(dev, "failed to get state for domain %d\n", i); in scmi_pm_domain_probe()
107 state == SCMI_POWER_STATE_GENERIC_OFF); in scmi_pm_domain_probe()
/kernel/linux/linux-6.6/drivers/leds/
H A Duleds.c31 enum uleds_state state; member
65 udev->state = ULEDS_STATE_UNKNOWN; in uleds_open()
87 if (udev->state == ULEDS_STATE_REGISTERED) { in uleds_write()
122 udev->state = ULEDS_STATE_REGISTERED; in uleds_write()
145 if (udev->state != ULEDS_STATE_REGISTERED) { in uleds_read()
164 udev->state != ULEDS_STATE_REGISTERED); in uleds_read()
186 if (udev->state == ULEDS_STATE_REGISTERED) { in uleds_release()
187 udev->state = ULEDS_STATE_UNKNOWN; in uleds_release()
/kernel/linux/linux-6.6/drivers/input/keyboard/
H A Dimx_sc_key.c38 u32 state; member
67 bool state; in imx_sc_check_for_events() local
83 * but ONLY the first byte is the key state, other in imx_sc_check_for_events()
85 * ONLY take the first byte as key state. in imx_sc_check_for_events()
87 state = (bool)(msg.state & 0xff); in imx_sc_check_for_events()
89 if (state ^ priv->keystate) { in imx_sc_check_for_events()
90 priv->keystate = state; in imx_sc_check_for_events()
91 input_event(input, EV_KEY, priv->keycode, state); in imx_sc_check_for_events()
97 if (state) in imx_sc_check_for_events()
[all...]
/kernel/linux/linux-6.6/tools/verification/dot2/
H A Dautomata.py74 # skip initial state transition
92 state = raw_state.replace('"', '').replace('};', '').replace(',','_')
93 if state[0:7] == "__init_":
94 initial_state = state[7:]
96 states.append(state)
98 final_states.append(state)
102 final_states.append(state)
110 # Insert the initial state at the bein og the states
154 for state in states:
155 states_dict[state]
[all...]
/kernel/linux/linux-6.6/net/bridge/
H A Dbr_private_mrp.h69 enum br_mrp_port_state_type state);
73 struct br_mrp_ring_state *state);
76 int br_mrp_set_in_state(struct net_bridge *br, struct br_mrp_in_state *state);
88 enum br_mrp_ring_state_type state);
93 int br_mrp_port_switchdev_set_state(struct net_bridge_port *p, u32 state);
101 enum br_mrp_in_state_type state);
125 __be16 state; member
134 __be16 state; member
/test/xts/hats/hdf/display/composer/benchmark/
H A Ddisplay_benchmark_ut_test.cpp70 void SetUp(const ::benchmark::State &state);
71 void TearDown(const ::benchmark::State &state);
110 void DisplayBenchmarkTest::SetUp(const ::benchmark::State &state) in SetUp() argument
114 void DisplayBenchmarkTest::TearDown(const ::benchmark::State &state) in TearDown() argument
125 BENCHMARK_F(DisplayBenchmarkTest, SUB_Driver_Display_Performace_3700)(benchmark::State &state) in BENCHMARK_F()
130 for (auto _ : state) { in BENCHMARK_F()
140 BENCHMARK_F(DisplayBenchmarkTest, SUB_Driver_Display_Performace_3800)(benchmark::State &state) in BENCHMARK_F()
147 for (auto _ : state) { in BENCHMARK_F()
/test/xts/hats/hdf/vibrator/hdi_adapter/hdi_impl/
H A Dhdi_vibrator_impl_test.cpp203 bool state{false}; in HWTEST_F()
204 g_vibratorInterface -> IsVibratorRunning(state); in HWTEST_F()
205 EXPECT_EQ(state, true); in HWTEST_F()
207 g_vibratorInterface -> IsVibratorRunning(state); in HWTEST_F()
208 EXPECT_EQ(state, false); in HWTEST_F()
220 bool state {false}; in HWTEST_F()
221 g_vibratorInterface -> IsVibratorRunning(state); in HWTEST_F()
222 EXPECT_EQ(state, false); in HWTEST_F()
/third_party/curl/tests/libtest/
H A Dlibntlmconnect.c98 enum HandleState state = ReadyForNewHandle; in test() local
132 if(state == ReadyForNewHandle) { in test()
154 state = NeedSocketForNewHandle; in test()
159 fprintf(stderr, "%s:%d running %d state %d\n", in test()
160 __FILE__, __LINE__, running, state); in test()
164 if(!running && state == NoMoreHandles) in test()
175 if(state == NeedSocketForNewHandle) { in test()
181 state = num_handles < MAX_EASY_HANDLES ? ReadyForNewHandle in test()
183 fprintf(stderr, "%s:%d new state %d\n", in test()
184 __FILE__, __LINE__, state); in test()
[all...]
/third_party/ffmpeg/libavformat/
H A Dspdifdec.c121 uint32_t state = 0; in ff_spdif_probe() local
127 state = (state << 8) | *buf; in ff_spdif_probe()
129 if (state == (AV_BSWAP16C(SYNCWORD1) << 16 | AV_BSWAP16C(SYNCWORD2)) in ff_spdif_probe()
178 uint32_t state = 0; in ff_spdif_read_packet() local
181 while (state != (AV_BSWAP16C(SYNCWORD1) << 16 | AV_BSWAP16C(SYNCWORD2))) { in ff_spdif_read_packet()
182 state = (state << 8) | avio_r8(pb); in ff_spdif_read_packet()
H A Drawdec.c168 int state = -1; in mjpeg_probe() local
179 state = 0xD8; in mjpeg_probe()
189 if (state == 0xD8) { in mjpeg_probe()
190 state = 0xC0; in mjpeg_probe()
195 if (state == 0xC0) { in mjpeg_probe()
196 state = 0xDA; in mjpeg_probe()
201 if (state == 0xDA) { in mjpeg_probe()
202 state = 0xD9; in mjpeg_probe()
/third_party/curl/lib/
H A Dcf-haproxy.c43 HAPROXY_INIT, /* init/default/no tunnel state */
49 int state; member
56 ctx->state = HAPROXY_INIT; in cf_haproxy_ctx_reset()
77 DEBUGASSERT(ctx->state == HAPROXY_INIT); in cf_haproxy_date_out_set()
122 switch(ctx->state) { in cf_haproxy_connect()
127 ctx->state = HAPROXY_SEND; in cf_haproxy_connect()
143 ctx->state = HAPROXY_DONE; in cf_haproxy_connect()
151 *done = (!result) && (ctx->state == HAPROXY_DONE); in cf_haproxy_connect()
216 ctx->state = HAPROXY_INIT; in cf_haproxy_create()
/third_party/node/test/fixtures/wpt/encoding/legacy-mb-japanese/iso-2022-jp/
H A Diso2022jp-decoder.js178 var state = null; variable
179 if (lead == 0x28 && byte == 0x42) state = "ascii";
180 if (lead == 0x28 && byte == 0x4a) state = "roman";
181 if (lead == 0x28 && byte == 0x49) state = "katakana";
183 state = "leadbyte";
184 if (state != null) {
185 decState = state;
186 outState = state;
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-graph-processor.h11 #include "src/maglev/maglev-interpreter-frame-state.h"
22 // the inferred corresponding InterpreterFrameState and (optionally) the state
41 // void Process(FooNode* node, const ProcessingState& state) {}
118 void ProcessNodeBase(NodeBase* node, const ProcessingState& state) { in ProcessNodeBase() argument
122 PreProcess(node->Cast<OPCODE>(), state); \ in ProcessNodeBase()
123 node_processor_.Process(node->Cast<OPCODE>(), state); \ in ProcessNodeBase()
130 void PreProcess(NodeBase* node, const ProcessingState& state) {} in PreProcess() argument
155 void Process(NodeBase* node, const ProcessingState& state) {} in Process() argument
165 void Process(Node* node, const ProcessingState& state) { in Process() argument
166 processor_.Process(node, state); in Process()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DDisplayVk.h65 DisplayVk(const egl::DisplayState &state);
88 SurfaceImpl *createWindowSurface(const egl::SurfaceState &state,
91 SurfaceImpl *createPbufferSurface(const egl::SurfaceState &state,
93 SurfaceImpl *createPbufferFromClientBuffer(const egl::SurfaceState &state,
97 SurfaceImpl *createPixmapSurface(const egl::SurfaceState &state,
101 ImageImpl *createImage(const egl::ImageState &state,
106 ContextImpl *createContext(const gl::State &state,
150 virtual SurfaceImpl *createWindowSurfaceVk(const egl::SurfaceState &state,
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/
H A Dintel_display.c545 needs_modeset(const struct intel_crtc_state *state) in needs_modeset() argument
547 return drm_atomic_crtc_needs_modeset(&state->uapi); in needs_modeset()
684 * single/dual channel state, if we even can. in i9xx_select_p2_div()
1064 static void wait_for_pipe_scanline_moving(struct intel_crtc *crtc, bool state) in wait_for_pipe_scanline_moving() argument
1070 if (wait_for(pipe_scanline_is_moving(dev_priv, pipe) == state, 100)) in wait_for_pipe_scanline_moving()
1073 pipe_name(pipe), onoff(state)); in wait_for_pipe_scanline_moving()
1108 enum pipe pipe, bool state) in assert_pll()
1115 I915_STATE_WARN(cur_state != state, in assert_pll()
1116 "PLL state assertion failure (expected %s, current %s)\n", in assert_pll()
1117 onoff(state), onof in assert_pll()
1107 assert_pll(struct drm_i915_private *dev_priv, enum pipe pipe, bool state) assert_pll() argument
1121 assert_dsi_pll(struct drm_i915_private *dev_priv, bool state) assert_dsi_pll() argument
1136 assert_fdi_tx(struct drm_i915_private *dev_priv, enum pipe pipe, bool state) assert_fdi_tx() argument
1163 assert_fdi_rx(struct drm_i915_private *dev_priv, enum pipe pipe, bool state) assert_fdi_rx() argument
1195 assert_fdi_rx_pll(struct drm_i915_private *dev_priv, enum pipe pipe, bool state) assert_fdi_rx_pll() argument
1266 assert_pipe(struct drm_i915_private *dev_priv, enum transcoder cpu_transcoder, bool state) assert_pipe() argument
1294 assert_plane(struct intel_plane *plane, bool state) assert_plane() argument
1342 bool state; assert_pch_dp_disabled() local
1360 bool state; assert_pch_hdmi_disabled() local
2336 intel_fb_xy_to_linear(int x, int y, const struct intel_plane_state *state, int color_plane) intel_fb_xy_to_linear() argument
2352 intel_add_fb_offsets(int *x, int *y, const struct intel_plane_state *state, int color_plane) intel_add_fb_offsets() argument
2437 intel_plane_adjust_aligned_offset(int *x, int *y, const struct intel_plane_state *state, int color_plane, u32 old_offset, u32 new_offset) intel_plane_adjust_aligned_offset() argument
2517 intel_plane_compute_aligned_offset(int *x, int *y, const struct intel_plane_state *state, int color_plane) intel_plane_compute_aligned_offset() argument
3633 struct intel_plane_state *state; intel_find_initial_plane_obj() local
4891 __intel_display_resume(struct drm_device *dev, struct drm_atomic_state *state, struct drm_modeset_acquire_ctx *ctx) __intel_display_resume() argument
4939 struct drm_atomic_state *state; intel_prepare_reset() local
4999 struct drm_atomic_state *state; intel_finish_reset() local
5829 intel_get_crtc_new_encoder(const struct intel_atomic_state *state, const struct intel_crtc_state *crtc_state) intel_get_crtc_new_encoder() argument
5862 ilk_pch_enable(const struct intel_atomic_state *state, const struct intel_crtc_state *crtc_state) ilk_pch_enable() argument
6533 intel_post_plane_update(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_post_plane_update() argument
6562 intel_pre_plane_update(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_pre_plane_update() argument
6649 intel_crtc_disable_planes(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_crtc_disable_planes() argument
6700 intel_encoders_update_prepare(struct intel_atomic_state *state) intel_encoders_update_prepare() argument
6726 intel_encoders_update_complete(struct intel_atomic_state *state) intel_encoders_update_complete() argument
6752 intel_encoders_pre_pll_enable(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_encoders_pre_pll_enable() argument
6774 intel_encoders_pre_enable(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_encoders_pre_enable() argument
6796 intel_encoders_enable(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_encoders_enable() argument
6819 intel_encoders_disable(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_encoders_disable() argument
6842 intel_encoders_post_disable(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_encoders_post_disable() argument
6864 intel_encoders_post_pll_disable(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_encoders_post_pll_disable() argument
6886 intel_encoders_update_pipe(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_encoders_update_pipe() argument
6916 ilk_crtc_enable(struct intel_atomic_state *state, struct intel_crtc *crtc) ilk_crtc_enable() argument
7070 hsw_crtc_enable(struct intel_atomic_state *state, struct intel_crtc *crtc) hsw_crtc_enable() argument
7178 ilk_crtc_disable(struct intel_atomic_state *state, struct intel_crtc *crtc) ilk_crtc_disable() argument
7235 hsw_crtc_disable(struct intel_atomic_state *state, struct intel_crtc *crtc) hsw_crtc_disable() argument
7472 valleyview_crtc_enable(struct intel_atomic_state *state, struct intel_crtc *crtc) valleyview_crtc_enable() argument
7538 i9xx_crtc_enable(struct intel_atomic_state *state, struct intel_crtc *crtc) i9xx_crtc_enable() argument
7605 i9xx_crtc_disable(struct intel_atomic_state *state, struct intel_crtc *crtc) i9xx_crtc_disable() argument
7667 struct drm_atomic_state *state; intel_crtc_disable_noatomic() local
7749 struct drm_atomic_state *state; intel_display_suspend() local
7821 struct drm_atomic_state *state = pipe_config->uapi.state; ilk_check_fdi_lanes() local
7979 struct intel_atomic_state *state = hsw_compute_ips_config() local
10358 struct intel_atomic_state *state = ilk_crtc_compute_clock() local
10820 struct intel_atomic_state *state = hsw_crtc_compute_clock() local
11908 intel_modeset_disable_planes(struct drm_atomic_state *state, struct drm_crtc *crtc) intel_modeset_disable_planes() argument
11946 struct drm_atomic_state *state = NULL, *restore_state = NULL; intel_get_load_detect_pipe() local
12100 struct drm_atomic_state *state = old->restore_state; intel_release_load_detect_pipe() local
12368 needs_scaling(const struct intel_plane_state *state) needs_scaling() argument
12508 check_single_encoder_cloning(struct drm_atomic_state *state, struct intel_crtc *crtc, struct intel_encoder *encoder) check_single_encoder_cloning() argument
12530 icl_add_linked_planes(struct intel_atomic_state *state) icl_add_linked_planes() argument
12559 struct intel_atomic_state *state = to_intel_atomic_state(crtc_state->uapi.state); icl_check_nv12_planes() local
12656 struct intel_atomic_state *state = c8_planes_changed() local
12716 hsw_compute_linetime_wm(struct intel_atomic_state *state, struct intel_crtc *crtc) hsw_compute_linetime_wm() argument
12742 intel_crtc_atomic_check(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_crtc_atomic_check() argument
12908 struct drm_atomic_state *state = pipe_config->uapi.state; compute_baseline_pipe_bpp() local
13075 intel_dump_pipe_config(const struct intel_crtc_state *pipe_config, struct intel_atomic_state *state, const char *context) intel_dump_pipe_config() argument
13215 check_digital_port_conflicts(struct intel_atomic_state *state) check_digital_port_conflicts() argument
13361 struct drm_atomic_state *state = pipe_config->uapi.state; intel_modeset_pipe_config() local
13499 struct intel_atomic_state *state = intel_modeset_pipe_config_late() local
14230 verify_connector_state(struct intel_atomic_state *state, struct intel_crtc *crtc) verify_connector_state() argument
14255 verify_encoder_state(struct drm_i915_private *dev_priv, struct intel_atomic_state *state) verify_encoder_state() argument
14312 struct drm_atomic_state *state = old_crtc_state->uapi.state; verify_crtc_state() local
14375 intel_verify_planes(struct intel_atomic_state *state) intel_verify_planes() argument
14467 intel_modeset_verify_crtc(struct intel_crtc *crtc, struct intel_atomic_state *state, struct intel_crtc_state *old_crtc_state, struct intel_crtc_state *new_crtc_state) intel_modeset_verify_crtc() argument
14493 intel_modeset_verify_disabled(struct drm_i915_private *dev_priv, struct intel_atomic_state *state) intel_modeset_verify_disabled() argument
14556 intel_modeset_clear_plls(struct intel_atomic_state *state) intel_modeset_clear_plls() argument
14580 hsw_mode_set_planes_workaround(struct intel_atomic_state *state) hsw_mode_set_planes_workaround() argument
14635 intel_calc_active_pipes(struct intel_atomic_state *state, u8 active_pipes) intel_calc_active_pipes() argument
14652 intel_modeset_checks(struct intel_atomic_state *state) intel_modeset_checks() argument
14669 calc_watermark_data(struct intel_atomic_state *state) calc_watermark_data() argument
14708 intel_crtc_add_planes_to_state(struct intel_atomic_state *state, struct intel_crtc *crtc, u8 plane_ids_mask) intel_crtc_add_planes_to_state() argument
14737 intel_atomic_check_planes(struct intel_atomic_state *state) intel_atomic_check_planes() argument
14796 intel_atomic_check_cdclk(struct intel_atomic_state *state, bool *need_cdclk_calc) intel_atomic_check_cdclk() argument
14849 intel_atomic_check_crtcs(struct intel_atomic_state *state) intel_atomic_check_crtcs() argument
14869 intel_cpu_transcoders_need_modeset(struct intel_atomic_state *state, u8 transcoders) intel_cpu_transcoders_need_modeset() argument
14895 struct intel_atomic_state *state = to_intel_atomic_state(_state); intel_atomic_check() local
15080 intel_atomic_prepare_commit(struct intel_atomic_state *state) intel_atomic_prepare_commit() argument
15174 commit_pipe_config(struct intel_atomic_state *state, struct intel_crtc *crtc) commit_pipe_config() argument
15209 intel_enable_crtc(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_enable_crtc() argument
15227 intel_update_crtc(struct intel_atomic_state *state, struct intel_crtc *crtc) intel_update_crtc() argument
15278 intel_old_crtc_state_disables(struct intel_atomic_state *state, struct intel_crtc_state *old_crtc_state, struct intel_crtc_state *new_crtc_state, struct intel_crtc *crtc) intel_old_crtc_state_disables() argument
15305 intel_commit_modeset_disables(struct intel_atomic_state *state) intel_commit_modeset_disables() argument
15350 intel_commit_modeset_enables(struct intel_atomic_state *state) intel_commit_modeset_enables() argument
15365 skl_commit_modeset_enables(struct intel_atomic_state *state) skl_commit_modeset_enables() argument
15488 struct intel_atomic_state *state, *next; intel_atomic_helper_free_state() local
15531 intel_cleanup_dsbs(struct intel_atomic_state *state) intel_cleanup_dsbs() argument
15544 struct intel_atomic_state *state = intel_atomic_cleanup_work() local
15556 intel_atomic_commit_tail(struct intel_atomic_state *state) intel_atomic_commit_tail() argument
15727 struct intel_atomic_state *state = intel_atomic_commit_work() local
15737 struct intel_atomic_state *state = intel_atomic_commit_ready() local
15758 intel_atomic_track_fbs(struct intel_atomic_state *state) intel_atomic_track_fbs() argument
15775 struct intel_atomic_state *state = to_intel_atomic_state(_state); intel_atomic_commit() local
15988 struct intel_atomic_state *state = intel_prepare_plane_fb() local
16104 struct intel_atomic_state *state = intel_cleanup_plane_fb() local
17585 sanitize_watermarks_add_affected(struct drm_atomic_state *state) sanitize_watermarks_add_affected() argument
17629 struct drm_atomic_state *state; sanitize_watermarks() local
17721 struct drm_atomic_state *state = NULL; intel_initial_commit() local
18845 struct drm_atomic_state *state = dev_priv->modeset_restore_state; intel_display_resume() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ipa/
H A Dgsi.c322 /* Return the hardware's notion of the current state of an event ring */
348 dev_err(dev, "GSI command %u for event ring %u timed out, state %u\n", in evt_ring_command()
349 opcode, evt_ring_id, evt_ring->state); in evt_ring_command()
354 /* Allocate an event ring in NOT_ALLOCATED state */
360 /* Get initial event ring state */ in gsi_evt_ring_alloc_command()
361 evt_ring->state = gsi_evt_ring_state(gsi, evt_ring_id); in gsi_evt_ring_alloc_command()
362 if (evt_ring->state != GSI_EVT_RING_STATE_NOT_ALLOCATED) { in gsi_evt_ring_alloc_command()
363 dev_err(gsi->dev, "bad event ring state %u before alloc\n", in gsi_evt_ring_alloc_command()
364 evt_ring->state); in gsi_evt_ring_alloc_command()
369 if (!ret && evt_ring->state ! in gsi_evt_ring_alloc_command()
382 enum gsi_evt_ring_state state = evt_ring->state; gsi_evt_ring_reset_command() local
455 enum gsi_channel_state state; gsi_channel_alloc_command() local
481 enum gsi_channel_state state; gsi_channel_start_command() local
507 enum gsi_channel_state state; gsi_channel_stop_command() local
544 enum gsi_channel_state state; gsi_channel_reset_command() local
569 enum gsi_channel_state state; gsi_channel_de_alloc_command() local
[all...]
/kernel/linux/linux-6.6/drivers/infiniband/sw/rxe/
H A Drxe_resp.c437 enum resp_states state; in check_rkey() local
486 state = RESPST_ERR_RKEY_VIOLATION; in check_rkey()
493 state = RESPST_ERR_RKEY_VIOLATION; in check_rkey()
507 state = RESPST_ERR_RKEY_VIOLATION; in check_rkey()
521 state = RESPST_ERR_RKEY_VIOLATION; in check_rkey()
529 state = RESPST_ERR_LENGTH; in check_rkey()
534 state = RESPST_ERR_LENGTH; in check_rkey()
541 state = RESPST_ERR_LENGTH; in check_rkey()
559 return state; in check_rkey()
624 res->state in rxe_prepare_res()
871 enum resp_states state; read_reply() local
1491 enum resp_states state; rxe_responder() local
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DVertexPipeline.cpp32 VertexPipeline::VertexPipeline(const VertexProcessor::State &state) : VertexRoutine(state, 0) in VertexPipeline() argument
44 if(state.vertexBlendMatrixCount == 0) in transformBlend()
55 if(state.indexedVertexBlendEnable) in transformBlend()
92 switch(state.vertexBlendMatrixCount) in transformBlend()
101 if(state.vertexBlendMatrixCount == 1) in transformBlend()
105 else if(state.vertexBlendMatrixCount == 2) in transformBlend()
120 else if(state.vertexBlendMatrixCount == 3) in transformBlend()
137 else if(state.vertexBlendMatrixCount == 4) in transformBlend()
166 if(!state in pipeline()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/
H A Dskl_watermark.c208 static void skl_sagv_pre_plane_update(struct intel_atomic_state *state) in skl_sagv_pre_plane_update() argument
210 struct drm_i915_private *i915 = to_i915(state->base.dev); in skl_sagv_pre_plane_update()
212 intel_atomic_get_new_bw_state(state); in skl_sagv_pre_plane_update()
221 static void skl_sagv_post_plane_update(struct intel_atomic_state *state) in skl_sagv_post_plane_update() argument
223 struct drm_i915_private *i915 = to_i915(state->base.dev); in skl_sagv_post_plane_update()
225 intel_atomic_get_new_bw_state(state); in skl_sagv_post_plane_update()
234 static void icl_sagv_pre_plane_update(struct intel_atomic_state *state) in icl_sagv_pre_plane_update() argument
236 struct drm_i915_private *i915 = to_i915(state->base.dev); in icl_sagv_pre_plane_update()
238 intel_atomic_get_old_bw_state(state); in icl_sagv_pre_plane_update()
240 intel_atomic_get_new_bw_state(state); in icl_sagv_pre_plane_update()
266 icl_sagv_post_plane_update(struct intel_atomic_state *state) icl_sagv_post_plane_update() argument
298 intel_sagv_pre_plane_update(struct intel_atomic_state *state) intel_sagv_pre_plane_update() argument
318 intel_sagv_post_plane_update(struct intel_atomic_state *state) intel_sagv_post_plane_update() argument
434 intel_compute_sagv_mask(struct intel_atomic_state *state) intel_compute_sagv_mask() argument
628 skl_crtc_allocate_ddb(struct intel_atomic_state *state, struct intel_crtc *crtc) skl_crtc_allocate_ddb() argument
1488 skl_crtc_allocate_plane_ddb(struct intel_atomic_state *state, struct intel_crtc *crtc) skl_crtc_allocate_plane_ddb() argument
2319 skl_build_pipe_wm(struct intel_atomic_state *state, struct intel_crtc *crtc) skl_build_pipe_wm() argument
2513 struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state); skl_ddb_add_affected_planes() local
2559 skl_compute_ddb(struct intel_atomic_state *state) skl_compute_ddb() argument
2673 skl_print_wm_changes(struct intel_atomic_state *state) skl_print_wm_changes() argument
2859 skl_wm_add_affected_planes(struct intel_atomic_state *state, struct intel_crtc *crtc) skl_wm_add_affected_planes() argument
2900 skl_compute_wm(struct intel_atomic_state *state) skl_compute_wm() argument
3435 intel_dbuf_destroy_state(struct intel_global_obj *obj, struct intel_global_state *state) intel_dbuf_destroy_state() argument
3447 intel_atomic_get_dbuf_state(struct intel_atomic_state *state) intel_atomic_get_dbuf_state() argument
3477 update_mbus_pre_enable(struct intel_atomic_state *state) update_mbus_pre_enable() argument
3512 intel_dbuf_pre_plane_update(struct intel_atomic_state *state) intel_dbuf_pre_plane_update() argument
3533 intel_dbuf_post_plane_update(struct intel_atomic_state *state) intel_dbuf_post_plane_update() argument
3571 intel_mbus_dbox_update(struct intel_atomic_state *state) intel_mbus_dbox_update() argument
[all...]

Completed in 29 milliseconds

1...<<121122123124125126127128129130>>...825