Home | History | Annotate | Download | only in libyasm

Lines Matching refs:vp

139  * \param vp            valparam
142 * \return Expression, or NULL if vp is NULL or the parameter cannot be
147 (const yasm_valparam *vp, yasm_symtab *symtab, unsigned long line);
151 * \param vp valparam
152 * \return String, or NULL if vp is NULL or the parameter cannot be realized
156 /*@null@*/ /*@dependent@*/ const char *yasm_vp_string(const yasm_valparam *vp);
159 * \param vp valparam
160 * \return Identifier (string), or NULL if vp is NULL or the parameter is not
164 /*@null@*/ /*@dependent@*/ const char *yasm_vp_id(const yasm_valparam *vp);
196 * \param vp valparam
198 void yasm_vps_append(yasm_valparamhead *headp, /*@keep@*/ yasm_valparam *vp);
200 #define yasm_vps_append(headp, vp) do { \
201 if (vp) \
202 STAILQ_INSERT_TAIL(headp, vp, link); \
253 * \param vp value/parameter
260 int (*helper) (void *obj, yasm_valparam *vp, unsigned long line,
298 yasm_valparam *vp,
303 * It does not look at the vp; rather, it uses the value of the arg parameter,
306 * \param vp unused
313 int yasm_dir_helper_flag_set(void *obj, yasm_valparam *vp, unsigned long line,
317 * It does not look at the vp; rather, it uses the value of the arg parameter,
320 * \param vp unused
327 int yasm_dir_helper_flag_or(void *obj, yasm_valparam *vp, unsigned long line,
331 * It does not look at the vp; rather, it uses the value of the arg parameter,
334 * \param vp unused
341 int yasm_dir_helper_flag_and(void *obj, yasm_valparam *vp, unsigned long line,
352 * \param vp valparam
359 int yasm_dir_helper_expr(void *obj, yasm_valparam *vp, unsigned long line,
370 * \param vp valparam
377 int yasm_dir_helper_intn(void *obj, yasm_valparam *vp, unsigned long line,
387 * \param vp valparam
394 int yasm_dir_helper_string(void *obj, yasm_valparam *vp, unsigned long line,
400 * \param vp valparam
406 int yasm_dir_helper_valparam_warn(void *obj, yasm_valparam *vp,