Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/actions/spelling/expect/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ changelists
charinfo
CHARSETINFO
chh
CHPE
chshdng
CHT
CLASSSTRING
Expand Down Expand Up @@ -857,6 +858,7 @@ INTERACTIVITYBASE
INTERCEPTCOPYPASTE
INTERNALNAME
Interner
intrin
intsafe
INVALIDARG
INVALIDATERECT
Expand Down Expand Up @@ -1336,6 +1338,7 @@ pipestr
pixelheight
PIXELSLIST
PJOBOBJECT
plast
platforming
playsound
ploc
Expand Down Expand Up @@ -1440,6 +1443,8 @@ Qxxxxxxxxxxxxxxx
qzmp
RAII
RALT
RAPIDHASH
rapidhash
rasterbar
rasterfont
rasterization
Expand Down Expand Up @@ -1690,6 +1695,7 @@ STDAPI
stdc
stdcpp
STDEXT
stdint
STDMETHODCALLTYPE
STDMETHODIMP
STGM
Expand Down Expand Up @@ -2127,6 +2133,7 @@ XIn
XManifest
XMath
xorg
Xors
XPan
XResource
xsi
Expand Down
34 changes: 34 additions & 0 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,40 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org/>
```

## rapidhash

**Source**: [https://github.com/Nicoshev/rapidhash](https://github.com/Nicoshev/rapidhash)

### License

```
Copyright (C) 2024 Nicolas De Carli
BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php)

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
```

## stb

**Source**: [https://github.com/nothings/stb](https://github.com/nothings/stb)
Expand Down
34 changes: 34 additions & 0 deletions oss/rapidhash/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* rapidhash - Very fast, high quality, platform independant hashing algorithm.
* Copyright (C) 2024 Nicolas De Carli
*
* Based on 'wyhash', by Wang Yi <godspeed_china@yeah.net>
*
* BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* You can contact the author at:
* - rapidhash source repository: https://github.com/Nicoshev/rapidhash
*/
4 changes: 4 additions & 0 deletions oss/rapidhash/MAINTAINER_README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
### Notes for Future Maintainers

[rapidhash](https://github.com/Nicoshev/rapidhash) is used as the 64-bit hash algorithm for `<til/hash.h>` and its `til::hasher`.
The source code can be found in `/src/inc/til/rapidhash.h`.
15 changes: 15 additions & 0 deletions oss/rapidhash/cgmanifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://json.schemastore.org/component-detection-manifest.json",
"Registrations": [
{
"component": {
"type": "git",
"git": {
"repositoryUrl": "https://github.com/Nicoshev/rapidhash",
"commitHash": "b28e33d4ea54569611f8be69227e861012ad3adb"
}
}
}
],
"Version": 1
}
Loading