History log of /netbsd-src/common/lib/libc/string/memset2.c (Results 1 – 10 of 10)
Revision Date Author Comments
# 5ceb9d96 15-Jan-2022 andvar <andvar@NetBSD.org>

fix typos in comments.


# 9eee6d14 19-Apr-2021 simonb <simonb@NetBSD.org>

Add CVS ID line.


# 2d634259 17-Apr-2021 mrg <mrg@NetBSD.org>

avoid redefinition warning for __OPTIMIZE_SIZE__.


# c47d8897 17-Apr-2021 simonb <simonb@NetBSD.org>

Use __register_t instead of uregister_t - this is available to all ports
and both userland and kernel.


# e857cfe9 17-Apr-2021 simonb <simonb@NetBSD.org>

Cast the fill value to unsigned char so that the "fill" value used for
full-word fills isn't garbage.


# 4e9c9067 17-Apr-2021 simonb <simonb@NetBSD.org>

Disable the larger/faster code path. While the optimised code path was
indeed quicker, it nonetheless failed to actually fill all the requested
memory with the specified value much of the time if a

Disable the larger/faster code path. While the optimised code path was
indeed quicker, it nonetheless failed to actually fill all the requested
memory with the specified value much of the time if a non-aligned start
address was used.

show more ...


# aaa101ee 02-Mar-2012 apb <apb@NetBSD.org>

remove trailing white space


# 29531143 02-Mar-2012 apb <apb@NetBSD.org>

Change CTASSERT to __CTASSERT (the spelling used in <sys/cdefs.h>),
include <sys/cdefs.h> so that it will be defined,
and move it to a better place.

The previous CTASSERT would never have been used

Change CTASSERT to __CTASSERT (the spelling used in <sys/cdefs.h>),
include <sys/cdefs.h> so that it will be defined,
and move it to a better place.

The previous CTASSERT would never have been used because
of the ifdef. If it had been used, it would have had
unwanted effects from being just after the "static inline"
that appears when BZERO is defined.

Also move the __RCSID to a more conventional location.

show more ...


# 4041630e 08-Nov-2011 joerg <joerg@NetBSD.org>

libkern.h maps memcmp, memset and strcpy to the compiler builtins on
some platforms, so make sure to #undef them first.


# 8daf714e 14-Dec-2009 matt <matt@NetBSD.org>

Merge from matt-nb5-mips64