Lines Matching refs:vdp
99 Conv_fmt_flags_t flags, const Val_desc *vdp, const char *local_sgs_msg) in map_vd2str() argument
101 for (; vdp->v_msg; vdp++) { in map_vd2str()
102 if (val == vdp->v_val) in map_vd2str()
103 return (MSG_ORIG_STRTAB(vdp->v_msg, local_sgs_msg)); in map_vd2str()
113 Conv_elfvalue_t val, Conv_fmt_flags_t flags, const Val_desc2 *vdp, in map_vd22str() argument
116 for (; vdp->v_msg; vdp++) { in map_vd22str()
117 if (CONV_VD2_SKIP(osabi, mach, vdp)) in map_vd22str()
120 if (val == vdp->v_val) in map_vd22str()
121 return (MSG_ORIG_STRTAB(vdp->v_msg, local_sgs_msg)); in map_vd22str()
236 _conv_iter_vd(const Val_desc *vdp, conv_iter_cb_t func, void *uvalue, in _conv_iter_vd() argument
239 for (; vdp->v_msg; vdp++) { in _conv_iter_vd()
240 if ((* func)(MSG_ORIG_STRTAB(vdp->v_msg, local_sgs_msg), in _conv_iter_vd()
241 vdp->v_val, uvalue) == CONV_ITER_DONE) in _conv_iter_vd()
250 _conv_iter_vd2(conv_iter_osabi_t osabi, Half mach, const Val_desc2 *vdp, in _conv_iter_vd2() argument
253 for (; vdp->v_msg; vdp++) { in _conv_iter_vd2()
254 if (CONV_ITER_VD2_SKIP(osabi, mach, vdp)) in _conv_iter_vd2()
257 if ((* func)(MSG_ORIG_STRTAB(vdp->v_msg, local_sgs_msg), in _conv_iter_vd2()
258 vdp->v_val, uvalue) == CONV_ITER_DONE) in _conv_iter_vd2()