diff options
author | Reiko Asakura | 2020-08-20 21:12:13 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-08-20 21:12:13 -0400 |
commit | dbf2e5f6f92cba812faee65c8e636fe1e4243814 (patch) | |
tree | efb738f56cf2413f7f52e125c53043c84b903360 /include | |
parent | SceLibSsp: add all NIDs (diff) | |
download | vds-libraries-dbf2e5f6f92cba812faee65c8e636fe1e4243814.tar.gz |
SceSysclib, SceRtabi: fix and add all NIDs
Diffstat (limited to '')
-rw-r--r-- | include/kernel/kernel/sysclib.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/kernel/kernel/sysclib.h b/include/kernel/kernel/sysclib.h index c255e56..6efdb81 100644 --- a/include/kernel/kernel/sysclib.h +++ b/include/kernel/kernel/sysclib.h @@ -8,22 +8,6 @@ extern "C" { #endif /** - * Left shift with only register operations (no memory access). - */ -SceInt64 lshift(SceInt64 value, int shift); - -/** - * Arithmetic right shift with only register operations (no memory access). - */ -SceInt64 rshift(SceInt64 value, int shift); - -/** - * Arithmetic right shift with only register operations (no memory access). - * May be faster than rshift for shift less than 32. - */ -SceInt64 rshift_fast(SceInt64 value, int shift); - -/** * Like memcmp but checks all n bytes of s1 and s2 without early return. */ int memcmp_consttime(const void *s1, const void *s2, size_t n); |