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

1 2

  /src/external/bsd/am-utils/dist/m4/
copy-if-newbig 13 $dstsize = $dststat[7];
17 if ($srcsize > $dstsize && $srcmtime > $dstmtime) {
  /src/external/gpl3/binutils/dist/include/vms/
eihs.h 38 unsigned char dstsize[4]; member in struct:vms_eihs
  /src/external/gpl3/binutils.old/dist/include/vms/
eihs.h 38 unsigned char dstsize[4]; member in struct:vms_eihs
  /src/external/gpl3/gdb.old/dist/include/vms/
eihs.h 38 unsigned char dstsize[4]; member in struct:vms_eihs
  /src/external/gpl3/gdb/dist/include/vms/
eihs.h 38 unsigned char dstsize[4]; member in struct:vms_eihs
  /src/bin/csh/
str.c 101 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, sizeof(*sdst))
373 static size_t dstsize = 0; local
415 static size_t dstsize = 0; local
    [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); local
182 dst[dstsize] = '\0';
  /src/external/bsd/libpcap/dist/
portability.h 63 extern size_t pcapint_strlcat(char * restrict dst, const char * restrict src, size_t dstsize);
81 extern size_t pcapint_strlcpy(char * restrict dst, const char * restrict src, size_t dstsize);
  /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/external/bsd/libbind/dist/nameser/
ns_samedomain.c 168 ns_makecanon(const char *src, char *dst, size_t dstsize) {
171 if (n + sizeof "." > dstsize) { /*%< Note: sizeof == 2 */
  /src/external/gpl3/binutils/dist/gprofng/libcollector/
libcol_util.h 45 extern size_t __collector_strlcpy (char *dst, const char *src, size_t dstsize);
48 extern size_t __collector_strlcat (char *dst, const char *src, size_t dstsize);
53 extern size_t __collector_strncpy (char *dst, const char *src, size_t dstsize);
54 extern size_t __collector_strncat (char *dst, const char *src, size_t dstsize);
libcol_util.c 375 __collector_strlcpy (char *dst, const char *src, size_t dstsize)
378 size_t n = dstsize - 1;
383 if (dstsize > 0)
389 __collector_strncpy (char *dst, const char *src, size_t dstsize)
392 for (i = 0; i < dstsize; i++)
415 __collector_strlcat (char *dst, const char *src, size_t dstsize)
418 return sz + __collector_strlcpy (dst + sz, src, dstsize - sz);
  /src/external/gpl3/binutils.old/dist/gprofng/libcollector/
libcol_util.h 45 extern size_t __collector_strlcpy (char *dst, const char *src, size_t dstsize);
48 extern size_t __collector_strlcat (char *dst, const char *src, size_t dstsize);
53 extern size_t __collector_strncpy (char *dst, const char *src, size_t dstsize);
54 extern size_t __collector_strncat (char *dst, const char *src, size_t dstsize);
libcol_util.c 375 __collector_strlcpy (char *dst, const char *src, size_t dstsize)
378 size_t n = dstsize - 1;
383 if (dstsize > 0)
389 __collector_strncpy (char *dst, const char *src, size_t dstsize)
392 for (i = 0; i < dstsize; i++)
415 __collector_strlcat (char *dst, const char *src, size_t dstsize)
418 return sz + __collector_strlcpy (dst + sz, src, dstsize - sz);
  /src/external/mpl/bind/dist/lib/ns/
hooks.c 53 ns_plugin_expandpath(const char *src, char *dst, size_t dstsize) {
63 result = snprintf(dst, dstsize, "%s", src);
68 result = snprintf(dst, dstsize, "%s/%s", NAMED_PLUGINDIR, src);
73 } else if ((size_t)result >= dstsize) {
  /src/external/gpl3/binutils/dist/gprofng/src/
collector_module.h 95 size_t (*strlcat)(char *dest, const char *src, size_t dstsize);
96 size_t (*strlcpy)(char *dest, const char *src, size_t dstsize);
99 size_t (*strncpy)(char *dst, const char *src, size_t dstsize);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
collector_module.h 95 size_t (*strlcat)(char *dest, const char *src, size_t dstsize);
96 size_t (*strlcpy)(char *dest, const char *src, size_t dstsize);
99 size_t (*strncpy)(char *dst, const char *src, size_t dstsize);
  /src/external/mpl/bind/dist/lib/ns/include/ns/
hooks.h 518 ns_plugin_expandpath(const char *src, char *dst, size_t dstsize);
522 * in 'dst', which is 'dstsize' bytes large.
  /src/external/bsd/openldap/dist/contrib/slapd-modules/passwd/pbkdf2/
pw-pbkdf2.c 80 * dstsize will require src length + 2, due to output string have
84 static int ab64_to_b64(char *src, char *dst, size_t dstsize){
88 if(i >= dstsize){
99 if(i >= dstsize){
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-warn-access.cc 1244 DSTSIZE is the size of the destination object.
1261 tree maxread, tree srcstr, tree dstsize,
1345 if (!dstsize)
1346 dstsize = maxobjsize;
1355 integer_zerop (dstsize) ? SR_ALLOW_ZERO : 0,
1387 && ((tree_fits_uhwi_p (dstsize)
1388 && tree_int_cst_lt (dstsize, range[0]))
1412 func, range[0], dstsize)
1417 range[0], dstsize));
1428 range, dstsize,
2609 tree dstsize = compute_objsize (dst, stmt, ost, &data.dst, &m_ptr_qry); local
2640 tree dstsize = compute_objsize (dst, stmt, ost, &data.dst, &m_ptr_qry); local
2767 tree dstsize = compute_objsize (dest, stmt, 0, &data.dst, &m_ptr_qry); local
3534 tree dstsize = NULL_TREE, srcsize = NULL_TREE; local
    [all...]
gimple-ssa-sprintf.cc 4393 unsigned HOST_WIDE_INT dstsize = HOST_WIDE_INT_M1U;
4586 dstsize = get_destination_size (dstptr, info.callstmt, ptr_qry);
4594 dstsize = tree_to_uhwi (size);
4601 if (dstsize > target_size_max () / 2)
4611 dstsize, target_size_max () / 2);
4612 /* POSIX requires snprintf to fail if DSTSIZE is greater
4617 else if (dstsize > target_int_max ())
4621 dstsize);
4622 /* POSIX requires snprintf to fail if DSTSIZE is greater
4642 dstsize = warn_level < 2 ? maxsize : minsize
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-warn-access.cc 1241 DSTSIZE is the size of the destination object.
1258 tree maxread, tree srcstr, tree dstsize,
1342 if (!dstsize)
1343 dstsize = maxobjsize;
1379 && ((tree_fits_uhwi_p (dstsize)
1380 && tree_int_cst_lt (dstsize, range[0]))
1403 func, range[0], dstsize)
1408 range[0], dstsize));
1419 range, dstsize,
1445 tree size = dstsize;
2583 tree dstsize = compute_objsize (dst, stmt, ost, &data.dst, &m_ptr_qry); local
2614 tree dstsize = compute_objsize (dst, stmt, ost, &data.dst, &m_ptr_qry); local
2741 tree dstsize = compute_objsize (dest, stmt, 0, &data.dst, &m_ptr_qry); local
3520 tree dstsize = NULL_TREE, srcsize = NULL_TREE; local
    [all...]
gimple-ssa-sprintf.cc 4376 unsigned HOST_WIDE_INT dstsize = HOST_WIDE_INT_M1U;
4569 dstsize = get_destination_size (dstptr, info.callstmt, ptr_qry);
4577 dstsize = tree_to_uhwi (size);
4584 if (dstsize > target_size_max () / 2)
4594 dstsize, target_size_max () / 2);
4595 /* POSIX requires snprintf to fail if DSTSIZE is greater
4600 else if (dstsize > target_int_max ())
4604 dstsize);
4605 /* POSIX requires snprintf to fail if DSTSIZE is greater
4625 dstsize = warn_level < 2 ? maxsize : minsize
    [all...]
  /src/sys/net/
nd.c 312 uint8_t *lldst, size_t dstsize)
351 memcpy(lldst, &ln->ll_addr, MIN(dstsize, ifp->if_addrlen));

Completed in 116 milliseconds

1 2