HomeSort by relevance Sort by last modified time
    Searched refs:dstsize (Results 1 - 20 of 20) sorted by null

  /toolchain/binutils/binutils-2.25/include/vms/
eihs.h 38 unsigned char dstsize[4]; member in struct:vms_eihs
  /external/openssh/
loginrec.h 125 char *line_fullname(char *dst, const char *src, u_int dstsize);
126 char *line_stripname(char *dst, const char *src, int dstsize);
127 char *line_abbrevname(char *dst, const char *src, int dstsize);
loginrec.c 560 line_fullname(char *dst, const char *src, u_int dstsize)
562 memset(dst, '\0', dstsize);
563 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5)))
564 strlcpy(dst, src, dstsize);
566 strlcpy(dst, "/dev/", dstsize);
567 strlcat(dst, src, dstsize);
574 line_stripname(char *dst, const char *src, int dstsize)
576 memset(dst, '\0', dstsize);
578 strlcpy(dst, src + 5, dstsize);
580 strlcpy(dst, src, dstsize);
    [all...]
  /external/libcups/cups/
snmp-private.h 110 extern int *_cupsSNMPCopyOID(int *dst, const int *src, int dstsize)
118 size_t dstsize) _CUPS_API_1_4;
124 int *dst, int dstsize)
snmp.c 91 int dstsize) /* I - Number of integers in dst */
96 DEBUG_printf(("4_cupsSNMPCopyOID(dst=%p, src=%p, dstsize=%d)", dst, src,
97 dstsize));
99 for (i = 0, dstsize --; src[i] >= 0 && i < dstsize; i ++)
258 size_t dstsize) /* I - Size of string buffer */
264 DEBUG_printf(("4_cupsSNMPOIDToString(src=%p, dst=%p, dstsize=" CUPS_LLFMT ")",
265 src, dst, CUPS_LLCAST dstsize));
271 if (!src || !dst || dstsize < 4)
278 for (dstptr = dst, dstend = dstptr + dstsize - 1
    [all...]
http-private.h 429 size_t dstsize);
432 size_t dstsize);
http-support.c 110 int dstsize, const char *term,
    [all...]
dest.c 210 size_t dstsize);
    [all...]
  /bionic/libc/dns/nameser/
ns_samedomain.c 170 ns_makecanon(const char *src, char *dst, size_t dstsize) {
173 if (n + sizeof "." > dstsize) { /* Note: sizeof == 2 */
  /external/libnl/lib/
attr.c 370 * @arg dstsize Size of destination buffer in bytes.
372 * Copies at most dstsize - 1 bytes to the destination buffer.
378 size_t nla_strlcpy(char *dst, const struct nlattr *nla, size_t dstsize)
386 if (dstsize > 0) {
387 size_t len = (srclen >= dstsize) ? dstsize - 1 : srclen;
389 memset(dst, 0, dstsize);
  /external/opencv/cv/src/
cvutils.cpp 484 CvSize srcsize, dstsize; local
506 dstsize = cvGetMatSize(dst);
517 dst->data.ptr, dststep, dstsize,
523 dst->data.ptr, dststep, dstsize,
531 dst->data.ptr, dststep, dstsize,
_cvipp.h 276 void* dst, int dststep, CvSize dstsize, int interpolation ))
    [all...]
cvpyramids.cpp     [all...]
cvimgwarp.cpp     [all...]
  /external/opencv/cxcore/src/
cxcopy.cpp 997 CvSize srcsize, dstsize; local
    [all...]
cxmatmul.cpp     [all...]
cxmatrix.cpp 1401 CvSize dstsize = cvGetMatSize( dst ); local
    [all...]
  /external/curl/packages/OS400/
os400sys.c 1209 unsigned int dstsize; local
1226 dstsize = sizeof *dstaddr - offsetof(struct sockaddr_un, sun_path);
1228 i = QadrtConvertA2E(dstu->sun_path, srcu->sun_path, dstsize - 1, srclen);
  /toolchain/binutils/binutils-2.25/bfd/
vms-alpha.c 628 unsigned int dstsize = bfd_getl32 (p + EIHS__L_DSTSIZE);
635 vms_debug (4, "EIHS record gstvbn %d gstsize %d dstvbn %d dstsize %d dmtvbn %d dmtbytes %d\n",
636 gstvbn, gstsize, dstvbn, dstsize, dmtvbn, dmtbytes);
647 section->size = dstsize;
626 unsigned int dstsize = bfd_getl32 (p + EIHS__L_DSTSIZE); local
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 1006 milliseconds