1*4a5d661aSToomas Soome /*-
2*4a5d661aSToomas Soome * Copyright (c) 1990, 1993
3*4a5d661aSToomas Soome * The Regents of the University of California. All rights reserved.
4*4a5d661aSToomas Soome *
5*4a5d661aSToomas Soome * This code is derived from software contributed to Berkeley by
6*4a5d661aSToomas Soome * Mike Hibler and Chris Torek.
7*4a5d661aSToomas Soome *
8*4a5d661aSToomas Soome * Redistribution and use in source and binary forms, with or without
9*4a5d661aSToomas Soome * modification, are permitted provided that the following conditions
10*4a5d661aSToomas Soome * are met:
11*4a5d661aSToomas Soome * 1. Redistributions of source code must retain the above copyright
12*4a5d661aSToomas Soome * notice, this list of conditions and the following disclaimer.
13*4a5d661aSToomas Soome * 2. Redistributions in binary form must reproduce the above copyright
14*4a5d661aSToomas Soome * notice, this list of conditions and the following disclaimer in the
15*4a5d661aSToomas Soome * documentation and/or other materials provided with the distribution.
16*4a5d661aSToomas Soome * 3. Neither the name of the University nor the names of its contributors
17*4a5d661aSToomas Soome * may be used to endorse or promote products derived from this software
18*4a5d661aSToomas Soome * without specific prior written permission.
19*4a5d661aSToomas Soome *
20*4a5d661aSToomas Soome * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21*4a5d661aSToomas Soome * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22*4a5d661aSToomas Soome * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23*4a5d661aSToomas Soome * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24*4a5d661aSToomas Soome * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25*4a5d661aSToomas Soome * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26*4a5d661aSToomas Soome * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27*4a5d661aSToomas Soome * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28*4a5d661aSToomas Soome * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29*4a5d661aSToomas Soome * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30*4a5d661aSToomas Soome * SUCH DAMAGE.
31*4a5d661aSToomas Soome */
32*4a5d661aSToomas Soome
33*4a5d661aSToomas Soome #if defined(LIBC_SCCS) && !defined(lint)
34*4a5d661aSToomas Soome static char sccsid[] = "@(#)memset.c 8.1 (Berkeley) 6/4/93";
35*4a5d661aSToomas Soome #endif /* LIBC_SCCS and not lint */
36*4a5d661aSToomas Soome #include <sys/cdefs.h>
37*4a5d661aSToomas Soome __FBSDID("$FreeBSD$");
38*4a5d661aSToomas Soome
39*4a5d661aSToomas Soome #include <sys/types.h>
40*4a5d661aSToomas Soome
41*4a5d661aSToomas Soome #include <limits.h>
42*4a5d661aSToomas Soome
43*4a5d661aSToomas Soome #define wsize sizeof(u_int)
44*4a5d661aSToomas Soome #define wmask (wsize - 1)
45*4a5d661aSToomas Soome
46*4a5d661aSToomas Soome #ifdef BZERO
47*4a5d661aSToomas Soome #include <strings.h>
48*4a5d661aSToomas Soome
49*4a5d661aSToomas Soome #define RETURN return
50*4a5d661aSToomas Soome #define VAL 0
51*4a5d661aSToomas Soome #define WIDEVAL 0
52*4a5d661aSToomas Soome
53*4a5d661aSToomas Soome void
bzero(void * dst0,size_t length)54*4a5d661aSToomas Soome bzero(void *dst0, size_t length)
55*4a5d661aSToomas Soome #else
56*4a5d661aSToomas Soome #include <string.h>
57*4a5d661aSToomas Soome
58*4a5d661aSToomas Soome #define RETURN return (dst0)
59*4a5d661aSToomas Soome #define VAL c0
60*4a5d661aSToomas Soome #define WIDEVAL c
61*4a5d661aSToomas Soome
62*4a5d661aSToomas Soome void *
63*4a5d661aSToomas Soome memset(void *dst0, int c0, size_t length)
64*4a5d661aSToomas Soome #endif
65*4a5d661aSToomas Soome {
66*4a5d661aSToomas Soome size_t t;
67*4a5d661aSToomas Soome #ifndef BZERO
68*4a5d661aSToomas Soome u_int c;
69*4a5d661aSToomas Soome #endif
70*4a5d661aSToomas Soome u_char *dst;
71*4a5d661aSToomas Soome
72*4a5d661aSToomas Soome dst = dst0;
73*4a5d661aSToomas Soome /*
74*4a5d661aSToomas Soome * If not enough words, just fill bytes. A length >= 2 words
75*4a5d661aSToomas Soome * guarantees that at least one of them is `complete' after
76*4a5d661aSToomas Soome * any necessary alignment. For instance:
77*4a5d661aSToomas Soome *
78*4a5d661aSToomas Soome * |-----------|-----------|-----------|
79*4a5d661aSToomas Soome * |00|01|02|03|04|05|06|07|08|09|0A|00|
80*4a5d661aSToomas Soome * ^---------------------^
81*4a5d661aSToomas Soome * dst dst+length-1
82*4a5d661aSToomas Soome *
83*4a5d661aSToomas Soome * but we use a minimum of 3 here since the overhead of the code
84*4a5d661aSToomas Soome * to do word writes is substantial.
85*4a5d661aSToomas Soome */
86*4a5d661aSToomas Soome if (length < 3 * wsize) {
87*4a5d661aSToomas Soome while (length != 0) {
88*4a5d661aSToomas Soome *dst++ = VAL;
89*4a5d661aSToomas Soome --length;
90*4a5d661aSToomas Soome }
91*4a5d661aSToomas Soome RETURN;
92*4a5d661aSToomas Soome }
93*4a5d661aSToomas Soome
94*4a5d661aSToomas Soome #ifndef BZERO
95*4a5d661aSToomas Soome if ((c = (u_char)c0) != 0) { /* Fill the word. */
96*4a5d661aSToomas Soome c = (c << 8) | c; /* u_int is 16 bits. */
97*4a5d661aSToomas Soome #if UINT_MAX > 0xffff
98*4a5d661aSToomas Soome c = (c << 16) | c; /* u_int is 32 bits. */
99*4a5d661aSToomas Soome #endif
100*4a5d661aSToomas Soome #if UINT_MAX > 0xffffffff
101*4a5d661aSToomas Soome c = (c << 32) | c; /* u_int is 64 bits. */
102*4a5d661aSToomas Soome #endif
103*4a5d661aSToomas Soome }
104*4a5d661aSToomas Soome #endif
105*4a5d661aSToomas Soome /* Align destination by filling in bytes. */
106*4a5d661aSToomas Soome if ((t = (long)dst & wmask) != 0) {
107*4a5d661aSToomas Soome t = wsize - t;
108*4a5d661aSToomas Soome length -= t;
109*4a5d661aSToomas Soome do {
110*4a5d661aSToomas Soome *dst++ = VAL;
111*4a5d661aSToomas Soome } while (--t != 0);
112*4a5d661aSToomas Soome }
113*4a5d661aSToomas Soome
114*4a5d661aSToomas Soome /* Fill words. Length was >= 2*words so we know t >= 1 here. */
115*4a5d661aSToomas Soome t = length / wsize;
116*4a5d661aSToomas Soome do {
117*4a5d661aSToomas Soome *(u_int *)dst = WIDEVAL;
118*4a5d661aSToomas Soome dst += wsize;
119*4a5d661aSToomas Soome } while (--t != 0);
120*4a5d661aSToomas Soome
121*4a5d661aSToomas Soome /* Mop up trailing bytes, if any. */
122*4a5d661aSToomas Soome t = length & wmask;
123*4a5d661aSToomas Soome if (t != 0)
124*4a5d661aSToomas Soome do {
125*4a5d661aSToomas Soome *dst++ = VAL;
126*4a5d661aSToomas Soome } while (--t != 0);
127*4a5d661aSToomas Soome RETURN;
128*4a5d661aSToomas Soome }
129