Commit Graph

57 Commits

Author SHA1 Message Date
01d127f49e
Consider not initialized list as empty, what prevents page faults 2024-05-14 15:53:21 +02:00
74b2c80869
RtlCountLeadingZeroes64() should take 64bit value 2024-03-23 00:36:59 +01:00
715f842445
Implement RtlClearSetBits(), RtlFindClearBits(), RtlFindSetBits() and RtlSetClearBits() routines 2024-03-22 18:53:30 +01:00
7895cb0d32
Fix RtlClearBits() and RtlSetBits() 2024-03-21 21:36:33 +01:00
b6f915c0c5
Implement RtlClearBits() and RtlSetBits() routines 2024-03-19 19:53:49 +01:00
c3831f82e7
Initial bit maps support 2024-03-12 19:15:02 +01:00
f9714a79e4
Add support for writing floating point values 2024-02-22 23:39:11 +01:00
0c7cf6f6d3
Implement RtlInfiniteDouble() and RtlNanDouble() routines 2024-02-21 19:55:16 +01:00
83a976dd3a
Implement RtlCopyString() and RtlCopyWideString() routines 2024-02-20 16:25:16 +01:00
015faa53a0
XTAPI calling convention is not supported on variadic routines 2024-02-20 16:21:28 +01:00
477e56e294
Move RtlFillMemory() routine to ntosdrv driver 2024-02-20 16:08:10 +01:00
246968045a
Use flags instead of dozen variables 2024-02-18 13:37:17 +01:00
2dd4048416
Switch GUID specifier to %v and %V, thus allowing to write string with both lower and uppercase 2024-02-17 22:52:49 +01:00
df627aeb42
Turn %p format compliant with POSIX, add %P XTOS extension to print pointers uppercase 2024-02-16 22:36:48 +01:00
109fd094ea
Fix NULL pointer 2024-02-16 19:05:53 +01:00
00cca9a1c1
Add %U XTOS extension for UUID/GUID string argument support 2024-02-16 19:02:44 +01:00
edd18b1dea
Add %Z MSVC extension for ANSI/Unicode string argument support 2024-02-16 18:14:16 +01:00
a1ec5e410d
Refactor RtlpWriteWideStringValue() and RtlpWriteWideStringStringValue() routines 2024-02-16 17:03:10 +01:00
8dd0e70dd9
Implement printf-alike wide string formatting mechanism, currently without floating point numbers support 2024-02-15 23:01:13 +01:00
8a62a2b367
Switch calling convention to stdcall 2024-02-14 14:53:32 +01:00
7e23484252
Implement RtlReverseWideString(), RtlTrimLeftWideString(), RtlTrimRightWideString() and RtlTrimWideString() routines 2024-02-14 14:46:34 +01:00
d964e4b408
Implement RtlConcatenateString(), RtlReverseString() and RtlTokenizeString() routines 2024-02-14 14:38:28 +01:00
55fb9e2eb1
Implement RtlGetBaseExponent() routine for getting base(10) exponent of a given floating point value 2024-02-14 00:02:04 +01:00
cca2e65376
Rework 64-bit division routines to support i686 architecture 2024-02-13 16:56:29 +01:00
99bdd917d9
Add basic kernel math support 2024-02-13 14:05:37 +01:00
abdb9b25db
Implement RtlAtomicBitTestAndSet() and RtlAtomicBitTestAndSet64() intrinsic routines 2024-02-04 22:34:22 +01:00
cd59c1e80d
Add missing routine description 2024-01-31 16:23:05 +01:00
8e61503de1
Implement RtlCompareGuids() kernel routine 2024-01-31 16:08:06 +01:00
579b4dc970
Implement RtlTrimLeftString(), RtlTrimRightString() and RtlTrimString() routines 2023-12-09 20:18:02 +01:00
d7fbe531fd
Improvements in string and wide string support
* Implement RtlCompareString(), RtlCompareStringInsensitive(), RtlCompareWideString() and RtlCompareWideStringInsensitive()
* Rename some routines t omatch naming conventions
* Switch to CHAR in string operations
2023-12-06 23:00:18 +01:00
12f946c92d
Fixes to I/O registers related routines 2023-11-19 00:39:52 +01:00
2621cb6d8a
Turn atomic routines architecture independent 2023-10-29 21:43:05 +01:00
a359c9b2e8
Keep only atomic routines 2023-10-29 18:22:11 +01:00
3f2baa5b50
Rename RtlInterlockedDecrementLongPtr() to follow routines naming convention 2023-10-29 12:21:19 +01:00
cf7c467637
Implement RtlInterlockedExchangePointer() routine 2023-10-29 11:48:31 +01:00
f549ca54a1
Implement I/O registers related routines 2023-04-05 00:04:11 +02:00
4073b1589d
Rename endian conversion routines to match naming convention 2023-04-04 21:02:14 +02:00
1f8026db2f
Implement RtlInterlockedCompareExchangePointer() and RtlInterlockedDecrementLongPtr() atomic routines 2023-03-17 18:06:53 +01:00
2f1c5a22a5
Add __C_specific_handler() and _except_handler3() stubs allowing to use '__try {} __except() {}' (SEH) constructions 2023-02-25 23:01:13 +01:00
d427ca20fb
Always include xtos.h in kernel sources 2023-02-20 00:21:52 +01:00
b1c2b209e3
Implement RtlGetStackLimits() routine 2023-02-15 20:12:58 +01:00
050f24f877
Implement routines for atomically work with linked lists 2023-02-13 22:36:03 +01:00
9e5fb84412
More routines for performing atomic bitwise AND/OR/XOR operations 2023-02-12 23:11:23 +01:00
5a86d61b78
Implement routines for performing atomic operations 2023-02-12 22:46:58 +01:00
d8c68ed003
Add endian conversion routines 2023-02-08 16:33:57 +01:00
bffb93b58c
Add missing calling convention 2022-12-27 22:05:46 +01:00
8f3a4aef60
Code formatting 2022-12-23 22:27:08 +01:00
b275caf161
Implement RtlRemoveEntryList() routine 2022-11-28 23:00:20 +01:00
b1c08e4a9f
Implement RtlStringLength() and RtlStringToWideString() routines 2022-10-25 23:45:12 +02:00
6a0a1eab23
Add missing IN/OUT indicators 2022-10-02 14:09:29 +02:00