Lines Matching refs:v
437 static inline void sclp_eval_textcmd(struct gds_vector *v) in sclp_eval_textcmd() argument
442 end = (void *) v + v->length; in sclp_eval_textcmd()
443 for (sv = (struct gds_subvector *) (v + 1); in sclp_eval_textcmd()
450 static inline void sclp_eval_cpmsu(struct gds_vector *v) in sclp_eval_cpmsu() argument
454 end = (void *) v + v->length; in sclp_eval_cpmsu()
455 for (v = v + 1; (void *) v < end; v = (void *) v + v->length) in sclp_eval_cpmsu()
456 if (v->gds_id == GDS_ID_TEXTCMD) in sclp_eval_cpmsu()
457 sclp_eval_textcmd(v); in sclp_eval_cpmsu()
461 static inline void sclp_eval_mdsmu(struct gds_vector *v) in sclp_eval_mdsmu() argument
463 v = sclp_find_gds_vector(v + 1, (void *) v + v->length, GDS_ID_CPMSU); in sclp_eval_mdsmu()
464 if (v) in sclp_eval_mdsmu()
465 sclp_eval_cpmsu(v); in sclp_eval_mdsmu()
470 struct gds_vector *v; in sclp_tty_receiver() local
472 v = sclp_find_gds_vector(evbuf + 1, (void *) evbuf + evbuf->length, in sclp_tty_receiver()
474 if (v) in sclp_tty_receiver()
475 sclp_eval_mdsmu(v); in sclp_tty_receiver()