HomeSort by: relevance | last modified time | path
    Searched defs:lenp (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/arch/sgimips/stand/common/
iris_scsictl.c 52 size_t *lenp; local
53 lenp = &len;
57 return wd33c93_go(sc, (uint8_t *)&cdb, sizeof(cdb), buf, lenp);
64 size_t *lenp; local
65 lenp = &len;
77 wd33c93_go(sc, (uint8_t *)&cdb, sizeof(cdb), buf, lenp); local
79 if (*lenp == olen)
89 size_t *lenp; local
90 lenp = &len;
103 wd33c93_go(sc, (uint8_t *)&cdb, sizeof(cdb), buf, lenp); local
    [all...]
  /src/lib/libresolv/
ns_sign.c 99 u_char *lenp; local
134 lenp = cp;
249 PUTSHORT(cp - lenp - INT16SZ, lenp);
287 u_char *cp, *eob, *lenp; local
335 lenp = cp;
386 PUTSHORT(cp - lenp - INT16SZ, lenp);
  /src/sys/external/bsd/libfdt/dist/
fdt.c 135 const fdt32_t *tagp, *lenp; local
159 lenp = fdt_offset_ptr(fdt, offset, sizeof(*lenp));
160 if (!lenp)
164 + fdt32_to_cpu(*lenp);
165 if (fdt_version(fdt) < 0x10 && fdt32_to_cpu(*lenp) >= 8 &&
166 ((offset - fdt32_to_cpu(*lenp)) % 8) != 0)
  /src/external/bsd/libbind/dist/nameser/
ns_sign.c 97 u_char *lenp; local
132 lenp = cp;
246 PUTSHORT(cp - lenp - INT16SZ, lenp);
284 u_char *cp, *eob, *lenp; local
331 lenp = cp;
382 PUTSHORT(cp - lenp - INT16SZ, lenp);
  /src/external/gpl3/gdb/dist/gdb/guile/
scm-string.c 81 size_t *lenp; member in struct:scm_to_stringn_data
95 data->result = scm_to_stringn (data->string, data->lenp, data->charset,
103 If LENP is NULL then the returned string is NUL-terminated,
116 gdbscm_scm_to_string (SCM string, size_t *lenp,
123 data.lenp = lenp;
205 If LENP is NULL then the returned string is NUL-terminated,
216 gdbscm_scm_to_host_string (SCM string, size_t *lenp, SCM *except_scmp)
218 return gdbscm_scm_to_string (string, lenp, host_charset (), 1, except_scmp);
  /src/external/gpl3/gdb.old/dist/gdb/guile/
scm-string.c 81 size_t *lenp; member in struct:scm_to_stringn_data
95 data->result = scm_to_stringn (data->string, data->lenp, data->charset,
103 If LENP is NULL then the returned string is NUL-terminated,
116 gdbscm_scm_to_string (SCM string, size_t *lenp,
123 data.lenp = lenp;
205 If LENP is NULL then the returned string is NUL-terminated,
216 gdbscm_scm_to_host_string (SCM string, size_t *lenp, SCM *except_scmp)
218 return gdbscm_scm_to_string (string, lenp, host_charset (), 1, except_scmp);
  /src/bin/pax/
file_subs.c 977 size_t *lenp; local
1039 lenp = &gnu_name_length;
1043 lenp = &gnu_link_length;
1047 lenp = NULL;
1051 char *nstr = *strp ? realloc(*strp, *lenp + wcnt + 1) :
1057 (void)strlcpy(&nstr[*lenp], st, wcnt + 1);
1059 *lenp += wcnt;
  /src/sys/lib/libsa/
bootparam.c 332 uint32_t *lenp; local
337 lenp = (uint32_t *)*pkt;
338 *pkt += sizeof(*lenp);
339 *lenp = htonl(len);
352 uint32_t *lenp; local
358 lenp = (uint32_t *)*pkt;
359 *pkt += sizeof(*lenp);
360 slen = ntohl(*lenp);
  /src/external/gpl2/dtc/dist/
util.c 87 int lenp = strlen(path); local
93 len = lenp + lenn + 2;
94 if ((lenp > 0) && (path[lenp-1] == '/')) {
100 memcpy(str, path, lenp);
102 str[lenp] = '/';
103 lenp++;
105 memcpy(str+lenp, name, lenn+1);
  /src/external/mpl/bind/dist/lib/dns/
qp.c 334 uint8_t len = 0, *lenp = NULL; local
337 lenp = isc_buffer_used(name->buffer);
355 *lenp = len;
  /src/external/bsd/openldap/dist/servers/slapd/
schema_init.c 2618 unsigned char lenbuf[sizeof(k) + 2], *lenp, neg = 0xff; local
2649 lenp = lenbuf + sizeof(lenbuf);
2652 *--lenp = ((unsigned char) chop & 0xff) ^ neg;
2654 } while ( (chop >>= 8) != 0 || (signmask >> 1) & (*lenp ^ neg) );
2656 * are 1, and the top n+2 bits of lenp[0] are the sign bit. */
2657 k = (lenbuf + sizeof(lenbuf)) - lenp;
2660 memcpy( key->bv_val, lenp, k );
  /src/external/gpl3/gcc/dist/gcc/c/
c-decl.cc 13557 size_t lenp = sizeof (prefix);
13559 char *name = XALLOCAVEC (char, lenp + len);
13560 memcpy (name, prefix, lenp - 1);
13561 memcpy (name + lenp - 1, p, len + 1);
13521 size_t lenp = sizeof (prefix); local
  /src/external/gpl3/gcc/dist/gcc/cp/
semantics.cc 6305 size_t lenp = sizeof (prefix);
6306 if (strncmp (p, prefix, lenp - 1) == 0)
6307 lenp = 1;
6310 char *name = XALLOCAVEC (char, lenp + len + lenm);
6311 if (lenp > 1)
6312 memcpy (name, prefix, lenp - 1);
6313 memcpy (name + lenp - 1, p, len + 1);
6316 name[lenp + len - 1] = '~';
6317 memcpy (name + lenp + len, m, lenm);
6304 size_t lenp = sizeof (prefix); local
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-decl.cc 12443 size_t lenp = sizeof (prefix);
12445 char *name = XALLOCAVEC (char, lenp + len);
12446 memcpy (name, prefix, lenp - 1);
12447 memcpy (name + lenp - 1, p, len + 1);
12407 size_t lenp = sizeof (prefix); local
  /src/external/gpl3/gcc.old/dist/gcc/cp/
semantics.cc 5882 size_t lenp = sizeof (prefix);
5883 if (strncmp (p, prefix, lenp - 1) == 0)
5884 lenp = 1;
5887 char *name = XALLOCAVEC (char, lenp + len + lenm);
5888 if (lenp > 1)
5889 memcpy (name, prefix, lenp - 1);
5890 memcpy (name + lenp - 1, p, len + 1);
5893 name[lenp + len - 1] = '~';
5894 memcpy (name + lenp + len, m, lenm);
5881 size_t lenp = sizeof (prefix); local
  /src/sys/compat/netbsd32/
netbsd32_syscallargs.h 894 syscallarg(netbsd32_size_tp) lenp; member in struct:netbsd32___futex_get_robust_list_args
  /src/sys/sys/
syscallargs.h 1046 syscallarg(size_t *) lenp; member in struct:sys___futex_get_robust_list_args

Completed in 84 milliseconds