Searched refs:maxlength (Results 1 – 5 of 5) sorted by relevance
/illumos-gate/usr/src/uts/intel/os/ |
H A D | copy_subr.c | 44 copystr_nofault(const char *src, char *dst, size_t maxlength, in copystr_nofault() argument 50 if ((leftover = maxlength) == 0) in copystr_nofault() 65 *lencopied = maxlength - leftover; in copystr_nofault() 71 copyinstr_noerr(const char *uaddr, char *kaddr, size_t maxlength, in copyinstr_noerr() argument 84 return (copystr_nofault(ua, kaddr, maxlength, lencopied)); in copyinstr_noerr() 88 copyoutstr_noerr(const char *kaddr, char *uaddr, size_t maxlength, in copyoutstr_noerr() argument 101 return (copystr_nofault(kaddr, ua, maxlength, lencopied)); in copyoutstr_noerr()
|
/illumos-gate/usr/src/lib/pam_modules/authtok_check/ |
H A D | authtok_check.c | 95 uint_t maxlength; /* maximum (significant) length */ member 284 p->maxlength = _PASS_MAX_XPG; in get_passwd_defaults() 308 p->maxlength = _PASS_MAX; in get_passwd_defaults() 310 p->maxlength = _PASS_MAX_XPG; in get_passwd_defaults() 317 p->maxlength = _PASS_MAX; in get_passwd_defaults() 338 if (p->maxlength < p->minlength) { in get_passwd_defaults() 459 uint_t significant = pwdef->maxlength; in check_composition() 499 if (pwdef->maxlength < strlen(pw)) in check_composition() 516 "contain at least %%d %%s."), progname, pwdef->maxlength); in check_composition() 620 max = pwdef->maxlength; in check_diff() [all …]
|
/illumos-gate/usr/src/uts/sun4/ml/ |
H A D | copy.S | 65 ! maxlength <= 0 67 bz %ncc, .cs_out ! maxlength = 0 70 b 2f ! maxlength < 0 177 ! maxlength is unsigned so the only error is if it's 0
|
/illumos-gate/usr/src/test/util-tests/tests/awk/gnu/ |
H A D | funstack.awk | 502 function html_breakpoint(title,maxlength, break_after,k) 507 if (html_length(title) > maxlength) # then need to split title across lines 517 for (k = min(maxlength,length(title)); k < length(title); ++k) 521 if (html_length(substr(title,1,k)) <= maxlength) 529 for (k = min(maxlength,length(title)) - 1; \
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | watchpoint.c | 945 size_t maxlength, in watch_copyinstr() argument 953 if ((resid = maxlength) == 0) in watch_copyinstr() 1051 *lencopied = maxlength - resid; in watch_copyinstr() 1059 size_t maxlength, in watch_copyoutstr() argument 1067 if ((resid = maxlength) == 0) in watch_copyoutstr() 1158 *lencopied = maxlength - resid; in watch_copyoutstr()
|