Searched refs:dstsize (Results 1 – 7 of 7) sorted by relevance
/openbsd/bin/csh/ |
H A D | str.c | 96 dstsize = MALLOC_INCR; in str2short() 101 edst = &dst[dstsize]; in str2short() 107 edst = &sdst[dstsize]; in str2short() 126 dstsize = MALLOC_INCR; in short2str() 130 edst = &dst[dstsize]; in short2str() 354 dstsize = MALLOC_INCR; in short2qstr() 358 edst = &dst[dstsize]; in short2qstr() 363 dstsize += MALLOC_INCR; in short2qstr() 365 edst = &sdst[dstsize]; in short2qstr() 398 if (dstsize < n) { in vis_str() [all …]
|
/openbsd/sys/dev/pci/drm/include/linux/ |
H A D | string.h | 85 strscpy(char *dst, const char *src, size_t dstsize) in strscpy() argument 88 r = strlcpy(dst, src, dstsize); in strscpy() 89 if (dstsize == 0 || r >= dstsize) in strscpy() 95 strscpy_pad(char *dst, const char *src, size_t dstsize) in strscpy_pad() argument 97 memset(dst, 0, dstsize); in strscpy_pad() 98 return strscpy(dst, src, dstsize); in strscpy_pad()
|
/openbsd/libexec/login_yubikey/ |
H A D | yubikey.h | 67 extern void yubikey_modhex_decode(char *dst, const char *src, size_t dstsize); 70 extern void yubikey_hex_decode(char *dst, const char *src, size_t dstsize);
|
/openbsd/usr.sbin/vmctl/ |
H A D | main.c | 620 ctl_convert(const char *srcfile, const char *dstfile, int dsttype, size_t dstsize) in ctl_convert() argument 649 if (dstsize == 0) in ctl_convert() 650 dstsize = src.size; in ctl_convert() 651 if (dstsize < (size_t)src.size) { in ctl_convert() 657 dst.size = ALIGNSZ(dstsize, 1048576); in ctl_convert() 725 if (dstsize < (size_t)dst.size) in ctl_convert()
|
/openbsd/sys/kern/ |
H A D | kern_exec.c | 267 size_t len, sgap, dstsize; in sys_execve() local 332 dstsize = NCARGS; in sys_execve() 334 len = strlcpy(dp, pack.ep_fa[argc], dstsize); in sys_execve() 336 dp += len; dstsize -= len; in sys_execve()
|
/openbsd/usr.sbin/config/ |
H A D | sem.c | 1064 extend(char *dst, size_t dstsize, char *p, const char *name) in extend() argument 1073 if (((p - dst) + l + 2) > dstsize) { in extend()
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | TargetLibraryInfo.def | 556 /// size_t dstsize) 704 /// size_t dstsize); 710 /// size_t dstsize);
|