Lines Matching refs:vlen
57 size_t off, len, vlen, wlen;
73 vlen = 0;
79 * Set vlen to the length of the variable name and then
86 vlen = (size_t)(q + len - v);
94 if (vlen > 2 && v[1] == '$') {
95 vlen--;
105 wlen = vlen - (w - v);
111 vlen = strlen(v);
116 } else if (vlen > 1) {
117 char *vstr = alloca(vlen);
120 (void) strncpy(vstr, v + 1, vlen - 1);
121 vstr[vlen - 1] = '\0';
128 vlen = snprintf(buf, 32, "%d", idp->di_id);
137 if (len + vlen >= dtrace_probespecs[spec].dtps_len)
142 bcopy(v, (char *)pdp + off + len, vlen);
143 bcopy(w, (char *)pdp + off + len + vlen, wlen);