HomeSort by: relevance | last modified time | path
    Searched defs:dstsize (Results 1 - 3 of 3) 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/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) |
  /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",

Completed in 36 milliseconds