Lines Matching full:v
48 /*50 P Q R S T U V W */
56 /*70 p q r s t u v w */
324 struct gds_vector *v; in sclp_find_gds_vector() local
326 for (v = start; (void *)v < end; v = (void *)v + v->length) in sclp_find_gds_vector()
327 if (v->gds_id == id) in sclp_find_gds_vector()
328 return v; in sclp_find_gds_vector()
343 static struct gds_subvector *sclp_eval_textcmd(struct gds_vector *v) in sclp_eval_textcmd() argument
348 end = (void *)v + v->length; in sclp_eval_textcmd()
349 for (sv = (struct gds_subvector *)(v + 1); (void *)sv < end; in sclp_eval_textcmd()
356 static struct gds_subvector *sclp_eval_cpmsu(struct gds_vector *v) in sclp_eval_cpmsu() argument
360 end = (void *)v + v->length; in sclp_eval_cpmsu()
361 for (v = v + 1; (void *)v < end; v = (void *)v + v->length) in sclp_eval_cpmsu()
362 if (v->gds_id == GDS_ID_TEXTCMD) in sclp_eval_cpmsu()
363 return sclp_eval_textcmd(v); in sclp_eval_cpmsu()
367 static struct gds_subvector *sclp_eval_mdsmu(struct gds_vector *v) in sclp_eval_mdsmu() argument
369 v = sclp_find_gds_vector(v + 1, (void *)v + v->length, GDS_ID_CPMSU); in sclp_eval_mdsmu()
370 if (v) in sclp_eval_mdsmu()
371 return sclp_eval_cpmsu(v); in sclp_eval_mdsmu()
377 struct gds_vector *v = (void *)ebh + sizeof(*ebh); in console_read_lm() local
380 v = sclp_find_gds_vector(v, (void *)ebh + ebh->length, in console_read_lm()
382 if (!v) in console_read_lm()
385 sv = sclp_eval_mdsmu(v); in console_read_lm()