/illumos-gate/usr/src/common/util/ |
H A D | bzero.c | 50 bzero(void *sp, size_t len) function
|
/illumos-gate/usr/src/ucblib/libucb/port/gen/ |
H A D | bzero.c | 53 bzero(char *sp, int len) function
|
/illumos-gate/usr/src/boot/sys/boot/common/ |
H A D | util.h | 41 #define bzero(buf, size) memset((buf), 0, (size)) macro
|
/illumos-gate/usr/src/uts/sun4u/ml/ |
H A D | mach_copy.s | 107 * uzero or bzero was called with t_lofault non-zero. 167 bzero(void *addr, size_t count) 172 ENTRY(bzero) function 348 ! here from either kzero() or bzero(). kzero() *always* 351 ! is otherwise zero. bzero() sets a lofault handler *only* 459 ! or bzero(). kzero() *always* sets a lofault handler. 462 ! bzero() sets a lofault handler *only* if one was 476 SET_SIZE(bzero)
|
/illumos-gate/usr/src/lib/libsocket/inet/ |
H A D | bindresvport.c | 47 #define bzero(s, len) (void) memset((s), 0, (len)) macro 66 bzero(bindaddr, sizeof (*bindaddr));
|
/illumos-gate/usr/src/stand/lib/sa/ |
H A D | strings.c | 66 bzero(void *p, size_t n) function
|
/illumos-gate/usr/src/boot/lib/libc/string/ |
H A D | memset.c | 54 bzero(void *dst0, size_t length) function
|
/illumos-gate/usr/src/psm/stand/cpr/sparcv9/sun4u/ |
H A D | cb_srt0.s | 86 call bzero 203 bzero(void *base, size_t len) 208 ENTRY(bzero) function 221 SET_SIZE(bzero)
|
/illumos-gate/usr/src/lib/libpkg/common/ |
H A D | nhash.c | 39 #define bzero(a, c) (void) memset(a, '\0', c) macro 92 bzero((*cp)->bp, sizeof (*(*cp)->bp) * hsz);
|
/illumos-gate/usr/src/cmd/format/ |
H A D | misc.h | 39 * Define macros bzero and bcopy for convenience 41 #ifndef bzero 42 #define bzero(p, n) (void) memset((p), 0, (n)) macro
|
/illumos-gate/usr/src/cmd/fs.d/ufs/labelit/ |
H A D | labelit.c | 55 #define bzero(s, n) memset(s, 0, n) macro
|
/illumos-gate/usr/src/uts/common/krtld/ |
H A D | kobj_subr.c | 44 * vector so that krtld may simply refer to bzero etc. 119 * Restore the kprintf/bcopy/bzero kobj vectors. 124 * certainly not code using bcopy or bzero which would 128 #undef bzero macro 136 kobj_bzero = bzero;
|
/illumos-gate/usr/src/uts/sun4v/cpu/ |
H A D | generic_copy.s | 1235 * call bzero and return 1 to ensure that the pages in cache should be 1254 ! Simply call bzero and notify the caller that bzero was used 1256 call bzero 1353 * uzero or bzero was called with t_lofault non-zero. 1405 bzero(void *addr, size_t count) 1410 ENTRY(bzero) function 1581 ! or bzero(). kzero() *always* sets a lofault handler. 1584 ! bzero() sets a lofault handler *only* if one was 1598 SET_SIZE(bzero) [all...] |
H A D | niagara_copy.s | 7438 * If the criteria for using this routine are not met then it calls bzero 7472 1: ! punt, call bzero but notify the caller that bzero was used 7474 call bzero 7546 restore %g0, 0, %o0 ! return (bzero or not) 7595 * Control flow of the bzero/kzero/uzero routine. 7605 * store using ASI_BLK_INIT_ST_QUAD_LDD_P (bzero/kzero) OR 7655 * uzero or bzero was called with t_lofault non-zero. 7707 bzero(void *addr, size_t count) 7712 ENTRY(bzero) function [all...] |
/illumos-gate/usr/src/lib/libumem/common/ |
H A D | linktest_stand.c | 38 void bzero(void) {} function
|
/illumos-gate/usr/src/cmd/fs.d/ufs/lockfs/ |
H A D | lockfs.c | 43 #define bzero(s, n) memset(s, 0, n); macro 269 bzero((caddr_t)&lf, sizeof (struct lockfs)); 382 bzero((caddr_t)&lf, sizeof (struct lockfs));
|
/illumos-gate/usr/src/cmd/ipf/tools/ |
H A D | ipnat.c | 80 #define bzero(a,b) memset(a,0,b) macro 186 bzero((char *)&ns, sizeof(ns)); 213 bzero((char *)&obj, sizeof(obj)); 443 bzero((char *)&obj, sizeof(obj)); 496 bzero((char *)&obj, sizeof(obj));
|
/illumos-gate/usr/src/lib/libldap5/include/ldap/ |
H A D | portable.h | 186 #define FD_ZERO(p) bzero((char *)(p), sizeof(*(p))) 369 void bzero(char *, int); 401 #define bzero(a, b) memset( a, 0, b ) macro 422 #define bzero(a, b) memset( a, 0, b ) macro
|
/illumos-gate/usr/src/cmd/rexd/ |
H A D | unix_login.c | 112 #define bzero(s, n) memset((s), 0, (n)) macro
|
H A D | on.c | 66 #define bzero(b, len) memset(b, '\0', len) macro 721 bzero((char *)&sin, sizeof (sin));
|
/illumos-gate/usr/src/cmd/fs.d/ufs/quotaon/ |
H A D | quotaon.c | 50 #define bzero(s, n) memset(s, 0, n) macro
|
/illumos-gate/usr/src/cmd/fs.d/ufs/tunefs/ |
H A D | tunefs.c | 55 #define bzero(s, n) memset(s, 0, n) macro
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | kobj_impl.h | 144 * context of krtld/kobj using bcopy or bzero must be directed 146 * or bzero are thus so vectored. 149 #define bzero(p, n) kobj_bzero((p), (n)) macro
|
/illumos-gate/usr/src/common/crypto/sha1/ |
H A D | sha1.c | 57 #define bzero(_m, _l) ((void) memset((_m), 0, (_l))) macro 438 bzero(ctx, sizeof (*ctx));
|
/illumos-gate/usr/src/uts/intel/ia32/ml/ |
H A D | copy.s | 128 * bcopy/kcopy/bzero/kzero operate on small buffers. For best performance for 1066 * A fault during bzero is indicated through an errno value 1140 bzero(void *addr, size_t count) 1147 ENTRY(bzero) function 1157 #define L(s) .bzero/**/s 1459 SET_SIZE(bzero) 1466 ENTRY(bzero) function 1491 SET_SIZE(bzero) 3118 .string "bzero: arguments below kernelbase"
|