Searched refs:dstsize (Results 1 - 25 of 43) sorted by relevance

12

/netbsd-current/external/bsd/am-utils/dist/m4/
H A Dcopy-if-newbig13 $dstsize = $dststat[7];
17 if ($srcsize > $dstsize && $srcmtime > $dstmtime) {
/netbsd-current/external/gpl3/binutils/dist/include/vms/
H A Deihs.h38 unsigned char dstsize[4]; member in struct:vms_eihs
/netbsd-current/external/gpl3/gdb.old/dist/include/vms/
H A Deihs.h38 unsigned char dstsize[4]; member in struct:vms_eihs
/netbsd-current/external/gpl3/gdb/dist/include/vms/
H A Deihs.h38 unsigned char dstsize[4]; member in struct:vms_eihs
/netbsd-current/external/gpl3/binutils.old/dist/include/vms/
H A Deihs.h38 unsigned char dstsize[4]; member in struct:vms_eihs
/netbsd-current/bin/csh/
H A Dstr.c101 static size_t dstsize = 0; local
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
137 dstsize = MALLOC_INCR;
138 sdst = xreallocarray(NULL, dstsize, sizeo
373 static size_t dstsize = 0; local
415 static size_t dstsize = 0; local
[all...]
/netbsd-current/sys/dev/arcbios/
H A Darcbios.c175 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); local
182 dst[dstsize] = '\0';
174 arcbios_component_id_copy(struct arcbios_component *node, char *dst, size_t dstsize) argument
/netbsd-current/external/bsd/libpcap/dist/
H A Dportability.h63 extern size_t pcap_strlcat(char * restrict dst, const char * restrict src, size_t dstsize);
81 extern size_t pcap_strlcpy(char * restrict dst, const char * restrict src, size_t dstsize);
/netbsd-current/sys/external/bsd/drm2/include/linux/
H A Dstring.h98 strscpy(char *dst, const char *src, size_t dstsize) argument
100 size_t n = dstsize;
115 return dstsize - n;
/netbsd-current/external/bsd/libbind/dist/nameser/
H A Dns_samedomain.c168 ns_makecanon(const char *src, char *dst, size_t dstsize) { argument
171 if (n + sizeof "." > dstsize) { /*%< Note: sizeof == 2 */
/netbsd-current/lib/libc/nameser/
H A Dns_samedomain.c175 ns_makecanon(const char *src, char *dst, size_t dstsize) { argument
178 if (n + sizeof "." > dstsize) { /*%< Note: sizeof == 2 */
/netbsd-current/external/gpl3/binutils/dist/gprofng/libcollector/
H A Dlibcol_util.h44 extern size_t __collector_strlcpy (char *dst, const char *src, size_t dstsize);
47 extern size_t __collector_strlcat (char *dst, const char *src, size_t dstsize);
52 extern size_t __collector_strncpy (char *dst, const char *src, size_t dstsize);
53 extern size_t __collector_strncat (char *dst, const char *src, size_t dstsize);
H A Dlibcol_util.c381 __collector_strlcpy (char *dst, const char *src, size_t dstsize) argument
384 size_t n = dstsize - 1;
389 if (dstsize > 0)
395 __collector_strncpy (char *dst, const char *src, size_t dstsize) argument
398 for (i = 0; i < dstsize; i++)
421 __collector_strlcat (char *dst, const char *src, size_t dstsize) argument
424 return sz + __collector_strlcpy (dst + sz, src, dstsize - sz);
/netbsd-current/external/gpl3/binutils.old/dist/gprofng/libcollector/
H A Dlibcol_util.h44 extern size_t __collector_strlcpy (char *dst, const char *src, size_t dstsize);
47 extern size_t __collector_strlcat (char *dst, const char *src, size_t dstsize);
52 extern size_t __collector_strncpy (char *dst, const char *src, size_t dstsize);
53 extern size_t __collector_strncat (char *dst, const char *src, size_t dstsize);
H A Dlibcol_util.c381 __collector_strlcpy (char *dst, const char *src, size_t dstsize) argument
384 size_t n = dstsize - 1;
389 if (dstsize > 0)
395 __collector_strncpy (char *dst, const char *src, size_t dstsize) argument
398 for (i = 0; i < dstsize; i++)
421 __collector_strlcat (char *dst, const char *src, size_t dstsize) argument
424 return sz + __collector_strlcpy (dst + sz, src, dstsize - sz);
/netbsd-current/external/mpl/bind/dist/lib/ns/
H A Dhooks.c62 ns_plugin_expandpath(const char *src, char *dst, size_t dstsize) { argument
72 result = snprintf(dst, dstsize, "%s", src);
77 result = snprintf(dst, dstsize, "%s/%s", NAMED_PLUGINDIR, src);
82 } else if ((size_t)result >= dstsize) {
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A Dcollector_module.h91 size_t (*strlcat)(char *dest, const char *src, size_t dstsize);
92 size_t (*strlcpy)(char *dest, const char *src, size_t dstsize);
95 size_t (*strncpy)(char *dst, const char *src, size_t dstsize);
/netbsd-current/external/gpl3/binutils.old/dist/gprofng/src/
H A Dcollector_module.h91 size_t (*strlcat)(char *dest, const char *src, size_t dstsize);
92 size_t (*strlcpy)(char *dest, const char *src, size_t dstsize);
95 size_t (*strncpy)(char *dst, const char *src, size_t dstsize);
/netbsd-current/external/mpl/bind/dist/lib/ns/include/ns/
H A Dhooks.h517 ns_plugin_expandpath(const char *src, char *dst, size_t dstsize);
521 * in 'dst', which is 'dstsize' bytes large.
/netbsd-current/external/bsd/openldap/dist/contrib/slapd-modules/passwd/pbkdf2/
H A Dpw-pbkdf2.c80 * dstsize will require src length + 2, due to output string have
84 static int ab64_to_b64(char *src, char *dst, size_t dstsize){ argument
88 if(i >= dstsize){
99 if(i >= dstsize){
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dgimple-ssa-warn-access.cc1257 tree maxread, tree srcstr, tree dstsize,
1341 if (!dstsize)
1342 dstsize = maxobjsize;
1378 && ((tree_fits_uhwi_p (dstsize)
1379 && tree_int_cst_lt (dstsize, range[0]))
1402 func, range[0], dstsize)
1407 range[0], dstsize));
1418 range, dstsize,
1444 tree size = dstsize;
1523 tree maxread, tree srcstr, tree dstsize,
1256 check_access(GimpleOrTree exp, tree dstwrite, tree maxread, tree srcstr, tree dstsize, access_mode mode, const access_data *pad, range_query *rvals) argument
1522 check_access(gimple *stmt, tree dstwrite, tree maxread, tree srcstr, tree dstsize, access_mode mode, const access_data *pad, range_query *rvals) argument
1532 check_access(tree expr, tree dstwrite, tree maxread, tree srcstr, tree dstsize, access_mode mode, const access_data *pad ) argument
2584 tree dstsize = compute_objsize (dst, stmt, ost, &data.dst, &m_ptr_qry); local
2615 tree dstsize = compute_objsize (dst, stmt, ost, &data.dst, &m_ptr_qry); local
2742 tree dstsize = compute_objsize (dest, stmt, 0, &data.dst, &m_ptr_qry); local
3521 tree dstsize = NULL_TREE, srcsize = NULL_TREE; local
[all...]
H A Dgimple-ssa-sprintf.cc4374 unsigned HOST_WIDE_INT dstsize = HOST_WIDE_INT_M1U;
4567 dstsize = get_destination_size (dstptr, info.callstmt, ptr_qry);
4575 dstsize = tree_to_uhwi (size);
4582 if (dstsize > target_size_max () / 2)
4592 dstsize, target_size_max () / 2);
4598 else if (dstsize > target_int_max ())
4602 dstsize);
4623 dstsize = warn_level < 2 ? maxsize : minsize;
4649 if (info.bounded && !dstsize)
4677 info.objsize = dstsize < objsiz
[all...]
/netbsd-current/sys/net/
H A Dnd.c311 uint8_t *lldst, size_t dstsize)
350 memcpy(lldst, &ln->ll_addr, MIN(dstsize, ifp->if_addrlen));
310 nd_resolve(struct llentry *ln, const struct rtentry *rt, struct mbuf *m, uint8_t *lldst, size_t dstsize) argument
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-ssa-sprintf.c4322 unsigned HOST_WIDE_INT dstsize = HOST_WIDE_INT_M1U; local
4515 dstsize = get_destination_size (dstptr);
4523 dstsize = tree_to_uhwi (size);
4530 if (dstsize > target_size_max () / 2)
4540 dstsize, target_size_max () / 2); local
4546 else if (dstsize > target_int_max ())
4550 dstsize); local
4568 dstsize = warn_level < 2 ? maxsize : minsize;
4601 if (info.bounded && !dstsize)
4630 info.objsize = dstsize < objsiz
4642 "of the destination object", dstsize, objsize); local
[all...]
/netbsd-current/external/bsd/openldap/dist/libraries/liblber/
H A Dsockbuf.c936 socklen_t dstsize; local
945 dstsize = dst->sa_family == AF_INET ? sizeof( struct sockaddr_in )
950 rc = sendto( sbiod->sbiod_sb->sb_fd, buf, len, 0, dst, dstsize );

Completed in 686 milliseconds

12