HomeSort by: relevance | last modified time | path
    Searched refs:dstsize (Results 1 - 8 of 8) sorted by relevancy

  /src/bin/csh/
str.c 101 static size_t dstsize = 0; local in function:str2short
107 dstsize = MALLOC_INCR;
108 sdst = xreallocarray(NULL, (size_t)dstsize, sizeof(*sdst));
112 edst = &dst[dstsize];
116 dstsize += MALLOC_INCR;
117 sdst = xreallocarray(sdst, (size_t)dstsize, sizeof(*sdst));
118 edst = &sdst[dstsize];
130 static size_t dstsize = 0; local in function:short2str
137 dstsize = MALLOC_INCR;
138 sdst = xreallocarray(NULL, dstsize, sizeof(*sdst))
373 static size_t dstsize = 0; local in function:short2qstr
415 static size_t dstsize = 0; local in function:vis_str
    [all...]
  /src/sys/dev/arcbios/
arcbios.c 175 char *dst, size_t dstsize)
178 dstsize--;
179 if (dstsize > node->IdentifierLength)
180 dstsize = node->IdentifierLength;
181 memcpy(dst, (void *)(intptr_t)node->Identifier, dstsize);
182 dst[dstsize] = '\0';
  /src/sys/external/bsd/drm2/include/linux/
string.h 98 strscpy(char *dst, const char *src, size_t dstsize)
100 size_t n = dstsize;
115 return dstsize - n;
  /src/lib/libc/nameser/
ns_samedomain.c 175 ns_makecanon(const char *src, char *dst, size_t dstsize) {
178 if (n + sizeof "." > dstsize) { /*%< Note: sizeof == 2 */
  /src/sys/net/
nd.c 313 uint8_t *lldst, size_t dstsize)
352 memcpy(lldst, &ln->ll_addr, MIN(dstsize, ifp->if_addrlen));
  /src/sys/netinet6/
nd6.c 1568 const struct sockaddr *_dst, uint8_t *lldst, size_t dstsize)
1598 memcpy(lldst, &ln->ll_addr, MIN(dstsize, ifp->if_addrlen));
1631 error = nd_resolve(ln, rt, m, lldst, dstsize);
  /src/usr.sbin/syslogd/
syslogd.c 1288 size_t idst = 0, isrc = 0, dstsize = INIT_BUFSIZE, i; local in function:copy_utf8_ascii
1291 MALLOC(dst, dstsize);
1293 if (dstsize < idst + 10) {
1296 tmp_dst = realloc(dst, dstsize + INIT_BUFSIZE);
1300 dstsize += INIT_BUFSIZE;
1321 idst += snprintf(&dst[idst], dstsize - idst, "U+%x",
  /src/sys/dev/pci/
hifn7751.c 2823 bus_size_t dstsize; local in function:hifn_callback_comp
2832 dstsize = cmd->dst_map->dm_mapsize;
2859 xlen = dstsize;
2897 olen = dstsize - (letoh16(baseres.dst_cnt) |

Completed in 20 milliseconds