Lines Matching refs:vdp
85 * vdp - Pointer to NULL terminated array of Val_desc descriptors.
90 * If val is found in the vdp array, and in the osabi version of
99 Conv_fmt_flags_t flags, const Val_desc *vdp, const char *local_sgs_msg)
101 for (; vdp->v_msg; vdp++) {
102 if (val == vdp->v_val)
103 return (MSG_ORIG_STRTAB(vdp->v_msg, local_sgs_msg));
113 Conv_elfvalue_t val, Conv_fmt_flags_t flags, const Val_desc2 *vdp,
116 for (; vdp->v_msg; vdp++) {
117 if (CONV_VD2_SKIP(osabi, mach, vdp))
120 if (val == vdp->v_val)
121 return (MSG_ORIG_STRTAB(vdp->v_msg, local_sgs_msg));
218 * vdp - Pointer to NULL terminated array of Val_desc descriptors.
227 * vdp. In the case of the OSABI-version of this function, strings from
236 _conv_iter_vd(const Val_desc *vdp, conv_iter_cb_t func, void *uvalue,
239 for (; vdp->v_msg; vdp++) {
240 if ((* func)(MSG_ORIG_STRTAB(vdp->v_msg, local_sgs_msg),
241 vdp->v_val, uvalue) == CONV_ITER_DONE)
250 _conv_iter_vd2(conv_iter_osabi_t osabi, Half mach, const Val_desc2 *vdp,
253 for (; vdp->v_msg; vdp++) {
254 if (CONV_ITER_VD2_SKIP(osabi, mach, vdp))
257 if ((* func)(MSG_ORIG_STRTAB(vdp->v_msg, local_sgs_msg),
258 vdp->v_val, uvalue) == CONV_ITER_DONE)