summaryrefslogtreecommitdiffstats
path: root/sys/dev/rasops/rasops_bitops.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix various whitespace and formatting issues in rasops(9).fcambus2020-07-201-6/+6
|
* change wsdisplay attribute type from long to uint32_tjsg2020-05-251-2/+2
| | | | | | | | miod explained it was initially a long as it was thought drivers may need to allocate storage but in practice they don't need more than 32 bits for an attribute. suggested and reviewed by miod@
* In copycols() remove useless code that modifies the uninitializedbluhm2017-09-071-4/+2
| | | | | sp variable. Its value is not used, it is overwritten later on. found by clang -Wuninitialized; OK deraadt@
* ansify function definitions, and constify a few arrays while there.miod2010-08-281-10/+4
| | | | no functional change.
* Change the wsdisplay_emulops return types from void to int; emulops will nowmiod2009-09-051-10/+16
| | | | | | return zero on success and nonzero on failure. This commit only performs mechanical changes for the existing emulops to always return zero.
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-261-8/+1
| | | | | | | | | Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@
* It is not clear that the order of operations will be what the programmerhenric2003-02-121-3/+5
| | | | | | intended. (This fixes a gcc3 warning.) ok jason, millert
* Unstaticize functions, for my ddb sessions pleasure.miod2002-07-271-4/+4
| | | | Plus it makes hangman more difficult.
* Import rasops from NetBSD. This gives improved performance for rasternate2001-03-181-0/+318
operations.