/kernel/linux/linux-5.10/arch/s390/kvm/ |
H A D | trace-s390.h | 82 TP_PROTO(unsigned int id, int state), 83 TP_ARGS(id, state), 87 __field(int, state) 92 __entry->state = state; 95 TP_printk("%s cpu %d", __entry->state ? "starting" : "stopping", 267 TP_PROTO(unsigned int id, int state), 268 TP_ARGS(id, state), 272 __field(int, state) 277 __entry->state [all...] |
/kernel/linux/linux-5.10/drivers/mux/ |
H A D | core.c | 25 * The idle-as-is "state" is not an actual state that may be selected, it 26 * only implies that the state should not be changed. So, use that state 27 * as indication that the cached state of the multiplexer is unknown. 72 * the desired idle state in the returned mux_chip->mux[N].idle_state members. 73 * The default idle state is MUX_IDLE_AS_IS. The mux driver also needs to 127 static int mux_control_set(struct mux_control *mux, int state) in mux_control_set() argument 129 int ret = mux->chip->ops->set(mux, state); in mux_control_set() 131 mux->cached_state = ret < 0 ? MUX_CACHE_UNKNOWN : state; in mux_control_set() 296 __mux_control_select(struct mux_control *mux, int state) __mux_control_select() argument 334 mux_control_select(struct mux_control *mux, unsigned int state) mux_control_select() argument 366 mux_control_try_select(struct mux_control *mux, unsigned int state) mux_control_try_select() argument [all...] |
/kernel/linux/linux-6.6/arch/s390/kvm/ |
H A D | trace-s390.h | 82 TP_PROTO(unsigned int id, int state), 83 TP_ARGS(id, state), 87 __field(int, state) 92 __entry->state = state; 95 TP_printk("%s cpu %d", __entry->state ? "starting" : "stopping", 267 TP_PROTO(unsigned int id, int state), 268 TP_ARGS(id, state), 272 __field(int, state) 277 __entry->state [all...] |
/kernel/linux/linux-5.10/drivers/input/touchscreen/ |
H A D | da9034-ts.c | 56 int state; member 145 switch (touch->state) { in da9034_event_handler() 157 touch->state = STATE_BUSY; in da9034_event_handler() 175 touch->state = STATE_STOP; in da9034_event_handler() 193 touch->state = STATE_WAIT; in da9034_event_handler() 198 touch->state = STATE_IDLE; in da9034_event_handler() 208 touch->state = STATE_BUSY; in da9034_event_handler() 211 touch->state = STATE_IDLE; in da9034_event_handler() 218 touch->state = STATE_IDLE; in da9034_event_handler() 240 if ((event & DA9034_EVENT_PEN_DOWN) && touch->state in da9034_touch_notifier() [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/cx18/ |
H A D | cx18-av-audio.c | 15 struct cx18_av_state *state = &cx->av_state; in set_audclk_freq() local 56 if (state->aud_input > CX18_AV_AUDIO_SERIAL2) { in set_audclk_freq() 284 state->audclk_freq = freq; in set_audclk_freq() 291 struct cx18_av_state *state = &cx->av_state; in cx18_av_audio_set_path() local 305 if (state->aud_input <= CX18_AV_AUDIO_SERIAL2) { in cx18_av_audio_set_path() 317 set_audclk_freq(cx, state->audclk_freq); in cx18_av_audio_set_path() 323 if (state->aud_input > CX18_AV_AUDIO_SERIAL2) { in cx18_av_audio_set_path() 377 struct cx18_av_state *state = &cx->av_state; in set_mute() local 380 if (state->aud_input > CX18_AV_AUDIO_SERIAL2) { in set_mute() 405 struct cx18_av_state *state in cx18_av_s_clock_freq() local [all...] |
/kernel/linux/linux-5.10/drivers/pwm/ |
H A D | pwm-sprd.c | 69 struct pwm_state *state) in sprd_pwm_get_state() 91 state->enabled = true; in sprd_pwm_get_state() 93 state->enabled = false; in sprd_pwm_get_state() 106 state->period = DIV_ROUND_CLOSEST_ULL(tmp, chn->clk_rate); in sprd_pwm_get_state() 111 state->duty_cycle = DIV_ROUND_CLOSEST_ULL(tmp, chn->clk_rate); in sprd_pwm_get_state() 112 state->polarity = PWM_POLARITY_NORMAL; in sprd_pwm_get_state() 114 /* Disable PWM clocks if the PWM channel is not in enable state. */ in sprd_pwm_get_state() 115 if (!state->enabled) in sprd_pwm_get_state() 160 const struct pwm_state *state) in sprd_pwm_apply() 165 struct pwm_state *cstate = &pwm->state; in sprd_pwm_apply() 68 sprd_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm, struct pwm_state *state) sprd_pwm_get_state() argument 159 sprd_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, const struct pwm_state *state) sprd_pwm_apply() argument [all...] |
/kernel/linux/linux-6.6/drivers/pwm/ |
H A D | pwm-cros-ec.c | 158 const struct pwm_state *state) in cros_ec_pwm_apply() 166 if (state->period != EC_PWM_MAX_DUTY) in cros_ec_pwm_apply() 169 if (state->polarity != PWM_POLARITY_NORMAL) in cros_ec_pwm_apply() 176 duty_cycle = state->enabled ? state->duty_cycle : 0; in cros_ec_pwm_apply() 182 channel->duty_cycle = state->duty_cycle; in cros_ec_pwm_apply() 188 struct pwm_state *state) in cros_ec_pwm_get_state() 200 state->enabled = (ret > 0); in cros_ec_pwm_get_state() 201 state->period = EC_PWM_MAX_DUTY; in cros_ec_pwm_get_state() 202 state in cros_ec_pwm_get_state() 157 cros_ec_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, const struct pwm_state *state) cros_ec_pwm_apply() argument 187 cros_ec_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm, struct pwm_state *state) cros_ec_pwm_get_state() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/cx18/ |
H A D | cx18-av-audio.c | 15 struct cx18_av_state *state = &cx->av_state; in set_audclk_freq() local 56 if (state->aud_input > CX18_AV_AUDIO_SERIAL2) { in set_audclk_freq() 284 state->audclk_freq = freq; in set_audclk_freq() 291 struct cx18_av_state *state = &cx->av_state; in cx18_av_audio_set_path() local 305 if (state->aud_input <= CX18_AV_AUDIO_SERIAL2) { in cx18_av_audio_set_path() 317 set_audclk_freq(cx, state->audclk_freq); in cx18_av_audio_set_path() 323 if (state->aud_input > CX18_AV_AUDIO_SERIAL2) { in cx18_av_audio_set_path() 377 struct cx18_av_state *state = &cx->av_state; in set_mute() local 380 if (state->aud_input > CX18_AV_AUDIO_SERIAL2) { in set_mute() 405 struct cx18_av_state *state in cx18_av_s_clock_freq() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/arm/ |
H A D | hdlcd_crtc.c | 85 const struct drm_framebuffer *fb = crtc->primary->state->fb; in hdlcd_set_pxl_fmt() 130 struct drm_display_mode *m = &crtc->state->adjusted_mode; in hdlcd_crtc_mode_set_nofb() 170 struct drm_atomic_state *state) in hdlcd_crtc_atomic_enable() 181 struct drm_atomic_state *state) in hdlcd_crtc_atomic_disable() 207 struct drm_atomic_state *state) in hdlcd_crtc_atomic_begin() 209 struct drm_pending_vblank_event *event = crtc->state->event; in hdlcd_crtc_atomic_begin() 212 crtc->state->event = NULL; in hdlcd_crtc_atomic_begin() 231 struct drm_atomic_state *state) in hdlcd_plane_atomic_check() 233 struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state, in hdlcd_plane_atomic_check() 246 for_each_new_crtc_in_state(state, crt in hdlcd_plane_atomic_check() 169 hdlcd_crtc_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state) hdlcd_crtc_atomic_enable() argument 180 hdlcd_crtc_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *state) hdlcd_crtc_atomic_disable() argument 206 hdlcd_crtc_atomic_begin(struct drm_crtc *crtc, struct drm_atomic_state *state) hdlcd_crtc_atomic_begin() argument 230 hdlcd_plane_atomic_check(struct drm_plane *plane, struct drm_atomic_state *state) hdlcd_plane_atomic_check() argument 261 hdlcd_plane_atomic_update(struct drm_plane *plane, struct drm_atomic_state *state) hdlcd_plane_atomic_update() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/mediatek/ |
H A D | mtk_drm_ddp_comp.h | 66 struct mtk_plane_state *state); 68 struct mtk_plane_state *state, 71 struct drm_crtc_state *state); 75 struct drm_crtc_state *state); 173 struct mtk_plane_state *state) in mtk_ddp_comp_layer_check() 176 return comp->funcs->layer_check(comp->dev, idx, state); in mtk_ddp_comp_layer_check() 182 struct mtk_plane_state *state, in mtk_ddp_comp_layer_config() 186 comp->funcs->layer_config(comp->dev, idx, state, cmdq_pkt); in mtk_ddp_comp_layer_config() 190 struct drm_crtc_state *state) in mtk_ddp_gamma_set() 193 comp->funcs->gamma_set(comp->dev, state); in mtk_ddp_gamma_set() 171 mtk_ddp_comp_layer_check(struct mtk_ddp_comp *comp, unsigned int idx, struct mtk_plane_state *state) mtk_ddp_comp_layer_check() argument 180 mtk_ddp_comp_layer_config(struct mtk_ddp_comp *comp, unsigned int idx, struct mtk_plane_state *state, struct cmdq_pkt *cmdq_pkt) mtk_ddp_comp_layer_config() argument 189 mtk_ddp_gamma_set(struct mtk_ddp_comp *comp, struct drm_crtc_state *state) mtk_ddp_gamma_set() argument 208 mtk_ddp_ctm_set(struct mtk_ddp_comp *comp, struct drm_crtc_state *state) mtk_ddp_ctm_set() argument [all...] |
/kernel/linux/linux-6.6/drivers/input/touchscreen/ |
H A D | da9034-ts.c | 56 int state; member 145 switch (touch->state) { in da9034_event_handler() 157 touch->state = STATE_BUSY; in da9034_event_handler() 175 touch->state = STATE_STOP; in da9034_event_handler() 193 touch->state = STATE_WAIT; in da9034_event_handler() 198 touch->state = STATE_IDLE; in da9034_event_handler() 208 touch->state = STATE_BUSY; in da9034_event_handler() 211 touch->state = STATE_IDLE; in da9034_event_handler() 218 touch->state = STATE_IDLE; in da9034_event_handler() 240 if ((event & DA9034_EVENT_PEN_DOWN) && touch->state in da9034_touch_notifier() [all...] |
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nft_xfrm.c | 96 * state does have a valid address (BEET, TUNNEL). 120 const struct xfrm_state *state) in nft_xfrm_state_get_key() 125 state->props.family, in nft_xfrm_state_get_key() 126 state->props.mode)) { in nft_xfrm_state_get_key() 137 *dest = (__force __u32)state->id.daddr.a4; in nft_xfrm_state_get_key() 140 memcpy(dest, &state->id.daddr.in6, sizeof(struct in6_addr)); in nft_xfrm_state_get_key() 143 *dest = (__force __u32)state->props.saddr.a4; in nft_xfrm_state_get_key() 146 memcpy(dest, &state->props.saddr.in6, sizeof(struct in6_addr)); in nft_xfrm_state_get_key() 149 *dest = state->props.reqid; in nft_xfrm_state_get_key() 152 *dest = (__force __u32)state in nft_xfrm_state_get_key() 118 nft_xfrm_state_get_key(const struct nft_xfrm *priv, struct nft_regs *regs, const struct xfrm_state *state) nft_xfrm_state_get_key() argument 164 const struct xfrm_state *state; nft_xfrm_get_eval_in() local [all...] |
/third_party/glfw/tests/ |
H A D | joysticks.c | 26 // This test displays the state of every button and axis of every connected 123 static void hat_widget(struct nk_context* nk, unsigned char state) in hat_widget() argument 143 if (state) in hat_widget() 155 const float cosa = nk_cos(angles[state]); in hat_widget() 156 const float sina = nk_sin(angles[state]); in hat_widget() 260 GLFWgamepadstate state; in main() local 265 nk_label(nk, "Joystick state", NK_TEXT_LEFT); in main() 293 if (glfwGetGamepadState(joysticks[i], &state)) in main() 305 "Gamepad state: %s", in main() 311 nk_slide_float(nk, -1.f, state in main() [all...] |
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_job_common.c | 185 pvr_csb_pack (&pbe_cs_words[1], PBESTATE_STATE_WORD1, state) { in pvr_pbe_pack_state() 186 state.emptytile = true; in pvr_pbe_pack_state() 195 pvr_csb_pack (&pbe_cs_words[0], PBESTATE_STATE_WORD0, state) { in pvr_pbe_pack_state() 196 state.address_low = surface_params->addr; in pvr_pbe_pack_state() 199 pvr_csb_pack (&pbe_cs_words[1], PBESTATE_STATE_WORD1, state) { in pvr_pbe_pack_state() 200 state.address_high = surface_params->addr; in pvr_pbe_pack_state() 202 state.source_format = surface_params->source_format; in pvr_pbe_pack_state() 206 &state.source_pos, in pvr_pbe_pack_state() 207 &state.source_pos_offset_128); in pvr_pbe_pack_state() 210 state in pvr_pbe_pack_state() [all...] |
/third_party/mesa3d/src/intel/vulkan/ |
H A D | genX_blorp_exec.c | 146 struct anv_state state = in blorp_alloc_dynamic_state() local 149 *offset = state.offset; in blorp_alloc_dynamic_state() 150 return state.map; in blorp_alloc_dynamic_state() 161 struct anv_state state = in blorp_alloc_general_state() local 165 *offset = state.offset; in blorp_alloc_general_state() 166 return state.map; in blorp_alloc_general_state() 272 return cmd_buffer->state.current_l3_config; in blorp_get_l3_config() 336 /* Calculate state that does not get touched by blorp. in blorp_exec_on_render() 355 cmd_buffer->state.gfx.vb_dirty = ~0; in blorp_exec_on_render() 356 cmd_buffer->state in blorp_exec_on_render() [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_linear.c | 52 linear_fallback(const struct lp_rast_state *state, in linear_fallback() argument 77 lp_fs_linear_run(const struct lp_rast_state *state, in lp_fs_linear_run() argument 86 const struct lp_fragment_shader_variant *variant = state->variant; in lp_fs_linear_run() 107 nr_consts = state->jit_context.num_constants[0]; in lp_fs_linear_run() 110 float val = state->jit_context.constants[0][i]; in lp_fs_linear_run() 127 state->jit_context.u8_blend_color[32] + in lp_fs_linear_run() 128 (state->jit_context.u8_blend_color[16] << 8) + in lp_fs_linear_run() 129 (state->jit_context.u8_blend_color[0] << 16) + in lp_fs_linear_run() 130 (state->jit_context.u8_blend_color[48] << 24); in lp_fs_linear_run() 132 jit.alpha_ref_value = float_to_ubyte(state in lp_fs_linear_run() [all...] |
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | model.py | 157 def __init__(self, state, address, pname): 159 self.state = state 162 t1 = address in state.ptr_list 164 rname = state.ptr_type_list[address] 178 tmp = "{}_{}".format(pname, state.ptr_types_list[pname]) 179 state.ptr_list[address] = tmp 180 state.ptr_type_list[address] = pname 183 if pname not in self.state.ptr_types_list: 184 self.state [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | DisplayVk.cpp | 26 DisplayVk::DisplayVk(const egl::DisplayState &state) in DisplayVk() argument 27 : DisplayImpl(state), in DisplayVk() 129 SurfaceImpl *DisplayVk::createWindowSurface(const egl::SurfaceState &state, in createWindowSurface() argument 133 return createWindowSurfaceVk(state, window); in createWindowSurface() 136 SurfaceImpl *DisplayVk::createPbufferSurface(const egl::SurfaceState &state, in createPbufferSurface() argument 140 return new OffscreenSurfaceVk(state, mRenderer); in createPbufferSurface() 143 SurfaceImpl *DisplayVk::createPbufferFromClientBuffer(const egl::SurfaceState &state, in createPbufferFromClientBuffer() argument 152 SurfaceImpl *DisplayVk::createPixmapSurface(const egl::SurfaceState &state, in createPixmapSurface() argument 160 ImageImpl *DisplayVk::createImage(const egl::ImageState &state, in createImage() argument 165 return new ImageVk(state, contex in createImage() 173 createContext(const gl::State &state, gl::ErrorSet *errorSet, const egl::Config *configuration, const gl::Context *shareContext, const egl::AttributeMap &attribs) createContext() argument [all...] |
/third_party/skia/tests/ |
H A D | CanvasStateTest.cpp | 39 // dlopen, the library flag and canvas state helpers are only used for tests which require this flag 45 " that receives the captured canvas state. Functions from the library will be" 128 bool (*drawFn)(SkCanvasState* state, float l, float t, in DEF_TEST() 164 SkCanvasState* state = SkCanvasStateUtils::CaptureCanvasState(canvas); in DEF_TEST() local 165 REPORTER_ASSERT(reporter, state); in DEF_TEST() 168 bool success = complex_layers_draw_from_canvas_state(state, in DEF_TEST() 173 SkCanvasStateUtils::ReleaseCanvasState(state); in DEF_TEST() 222 bool (*drawFn)(SkCanvasState* state, int32_t l, int32_t t, in DEF_TEST() 254 SkCanvasState* state = SkCanvasStateUtils::CaptureCanvasState(canvas); in DEF_TEST() local 255 REPORTER_ASSERT(reporter, state); in DEF_TEST() 302 SkCanvasState* state = SkCanvasStateUtils::CaptureCanvasState(&canvas); DEF_TEST() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | sha512-internal.c | 120 /* copy state into S */ in sha512_compress() 122 S[i] = md->state[i]; in sha512_compress() 125 /* copy the state into 1024-bits into W[0..15] */ in sha512_compress() 151 md->state[i] = md->state[i] + S[i]; in sha512_compress() 160 Initialize the hash state 161 @param md The hash state you wish to initialize 168 md->state[0] = CONST64(0x6a09e667f3bcc908); in sha512_init() 169 md->state[1] = CONST64(0xbb67ae8584caa73b); in sha512_init() 170 md->state[ in sha512_init() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | sha512-internal.c | 120 /* copy state into S */ in sha512_compress() 122 S[i] = md->state[i]; in sha512_compress() 125 /* copy the state into 1024-bits into W[0..15] */ in sha512_compress() 151 md->state[i] = md->state[i] + S[i]; in sha512_compress() 160 Initialize the hash state 161 @param md The hash state you wish to initialize 168 md->state[0] = CONST64(0x6a09e667f3bcc908); in sha512_init() 169 md->state[1] = CONST64(0xbb67ae8584caa73b); in sha512_init() 170 md->state[ in sha512_init() [all...] |
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
H A D | mod.rs | 1373 fn hash<H: ::hash::Hasher>(&self, state: &mut H) { in hash() 1374 unsafe { self.val.hash(state) }; in hash() 1414 fn hash<H: ::hash::Hasher>(&self, state: &mut H) { in hash() 1421 ident.hash(state); in hash() 1422 filter.hash(state); in hash() 1423 flags.hash(state); in hash() 1424 fflags.hash(state); in hash() 1425 data.hash(state); in hash() 1426 udata.hash(state); in hash() 1470 fn hash<H: ::hash::Hasher>(&self, state [all...] |
/kernel/linux/linux-5.10/fs/xfs/libxfs/ |
H A D | xfs_attr_leaf.c | 53 STATIC void xfs_attr3_leaf_rebalance(xfs_da_state_t *state, 56 STATIC int xfs_attr3_leaf_figure_balance(xfs_da_state_t *state, 1299 struct xfs_da_state *state, in xfs_attr3_leaf_split() 1306 trace_xfs_attr_leaf_split(state->args); in xfs_attr3_leaf_split() 1312 error = xfs_da_grow_inode(state->args, &blkno); in xfs_attr3_leaf_split() 1315 error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp); in xfs_attr3_leaf_split() 1325 xfs_attr3_leaf_rebalance(state, oldblk, newblk); in xfs_attr3_leaf_split() 1326 error = xfs_da3_blk_link(state, oldblk, newblk); in xfs_attr3_leaf_split() 1337 if (state->inleaf) { in xfs_attr3_leaf_split() 1338 trace_xfs_attr_leaf_add_old(state in xfs_attr3_leaf_split() 1298 xfs_attr3_leaf_split( struct xfs_da_state *state, struct xfs_da_state_blk *oldblk, struct xfs_da_state_blk *newblk) xfs_attr3_leaf_split() argument 1666 xfs_attr3_leaf_rebalance( struct xfs_da_state *state, struct xfs_da_state_blk *blk1, struct xfs_da_state_blk *blk2) xfs_attr3_leaf_rebalance() argument 1856 xfs_attr3_leaf_figure_balance( struct xfs_da_state *state, struct xfs_da_state_blk *blk1, struct xfs_attr3_icleaf_hdr *ichdr1, struct xfs_da_state_blk *blk2, struct xfs_attr3_icleaf_hdr *ichdr2, int *countarg, int *usedbytesarg) xfs_attr3_leaf_figure_balance() argument 1956 xfs_attr3_leaf_toosmall( struct xfs_da_state *state, int *action) xfs_attr3_leaf_toosmall() argument 2237 xfs_attr3_leaf_unbalance( struct xfs_da_state *state, struct xfs_da_state_blk *drop_blk, struct xfs_da_state_blk *save_blk) xfs_attr3_leaf_unbalance() argument [all...] |
/kernel/linux/linux-6.6/fs/xfs/libxfs/ |
H A D | xfs_attr_leaf.c | 55 STATIC void xfs_attr3_leaf_rebalance(xfs_da_state_t *state, 58 STATIC int xfs_attr3_leaf_figure_balance(xfs_da_state_t *state, 492 /* All remaining matches need to be filtered by INCOMPLETE state. */ in xfs_attr_match() 1344 struct xfs_da_state *state, in xfs_attr3_leaf_split() 1351 trace_xfs_attr_leaf_split(state->args); in xfs_attr3_leaf_split() 1357 error = xfs_da_grow_inode(state->args, &blkno); in xfs_attr3_leaf_split() 1360 error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp); in xfs_attr3_leaf_split() 1370 xfs_attr3_leaf_rebalance(state, oldblk, newblk); in xfs_attr3_leaf_split() 1371 error = xfs_da3_blk_link(state, oldblk, newblk); in xfs_attr3_leaf_split() 1382 if (state in xfs_attr3_leaf_split() 1343 xfs_attr3_leaf_split( struct xfs_da_state *state, struct xfs_da_state_blk *oldblk, struct xfs_da_state_blk *newblk) xfs_attr3_leaf_split() argument 1712 xfs_attr3_leaf_rebalance( struct xfs_da_state *state, struct xfs_da_state_blk *blk1, struct xfs_da_state_blk *blk2) xfs_attr3_leaf_rebalance() argument 1902 xfs_attr3_leaf_figure_balance( struct xfs_da_state *state, struct xfs_da_state_blk *blk1, struct xfs_attr3_icleaf_hdr *ichdr1, struct xfs_da_state_blk *blk2, struct xfs_attr3_icleaf_hdr *ichdr2, int *countarg, int *usedbytesarg) xfs_attr3_leaf_figure_balance() argument 2002 xfs_attr3_leaf_toosmall( struct xfs_da_state *state, int *action) xfs_attr3_leaf_toosmall() argument 2283 xfs_attr3_leaf_unbalance( struct xfs_da_state *state, struct xfs_da_state_blk *drop_blk, struct xfs_da_state_blk *save_blk) xfs_attr3_leaf_unbalance() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb4/ |
H A D | l2t.c | 164 if (sync && e->state != L2T_STATE_SWITCHING) in write_l2e() 165 e->state = L2T_STATE_SYNC_WRITE; in write_l2e() 203 if (e->state != L2T_STATE_SWITCHING) { in do_l2t_write_rpl() 205 e->state = (e->neigh->nud_state & NUD_STALE) ? in do_l2t_write_rpl() 227 switch (e->state) { in cxgb4_l2t_send() 231 if (e->state == L2T_STATE_STALE) in cxgb4_l2t_send() 232 e->state = L2T_STATE_VALID; in cxgb4_l2t_send() 240 if (e->state != L2T_STATE_SYNC_WRITE && in cxgb4_l2t_send() 241 e->state != L2T_STATE_RESOLVING) { in cxgb4_l2t_send() 248 if (e->state in cxgb4_l2t_send() [all...] |