├── .gitignore ├── AllocSpeed ├── AllocSpeed.dpr ├── AllocSpeed.dproj ├── AllocSpeed.res ├── README.md ├── Windows2012Server.jpg └── memory-2x E5-2620v3 @ 2.4 GHz, Windows 2012.csv ├── CommThreads ├── CommThread.pas ├── OnIdle.dpr ├── OnIdle.dproj ├── OnIdle.res ├── OnIdleMain.dfm ├── OnIdleMain.pas ├── ThreadedQueue.dpr ├── ThreadedQueue.dproj ├── ThreadedQueue.res ├── ThreadedQueueMain.dfm └── ThreadedQueueMain.pas ├── FMX from DLL ├── DLLHost.dpr ├── DLLHost.dproj ├── DLLHost.res ├── DLLHostMain.dfm ├── DLLHostMain.pas ├── FMXDLL.dpr ├── FMXDLL.dproj ├── FMXDLL.res ├── FMXMain.fmx ├── FMXMain.pas ├── FMXfromDLL.groupproj └── readme.md ├── LICENSE.md ├── MemAtomic ├── MemAtomic.dpr ├── MemAtomic.dproj ├── MemAtomic.res ├── MemAtomicMain.dfm ├── MemAtomicMain.pas └── README.md ├── MemSpeed ├── MemSpeed.dpr ├── MemSpeed.dproj ├── MemSpeed.res ├── MemSpeedMain.dfm ├── MemSpeedMain.pas └── README.md ├── README.md ├── TestAnsiBuffer ├── TestAnsiBuffer.dpr └── TestAnsiBuffer.dproj ├── TheDelphiGeek └── OverloadsAndOperators │ ├── OverloadsAndOperators.dpr │ ├── OverloadsAndOperators.dproj │ ├── OverloadsAndOperators.res │ └── README.md └── XifyCode ├── xCode.dpr ├── xCode.dproj ├── xCode.res ├── xCodeMain.dfm └── xCodeMain.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/.gitignore -------------------------------------------------------------------------------- /AllocSpeed/AllocSpeed.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/AllocSpeed/AllocSpeed.dpr -------------------------------------------------------------------------------- /AllocSpeed/AllocSpeed.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/AllocSpeed/AllocSpeed.dproj -------------------------------------------------------------------------------- /AllocSpeed/AllocSpeed.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/AllocSpeed/AllocSpeed.res -------------------------------------------------------------------------------- /AllocSpeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/AllocSpeed/README.md -------------------------------------------------------------------------------- /AllocSpeed/Windows2012Server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/AllocSpeed/Windows2012Server.jpg -------------------------------------------------------------------------------- /AllocSpeed/memory-2x E5-2620v3 @ 2.4 GHz, Windows 2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/AllocSpeed/memory-2x E5-2620v3 @ 2.4 GHz, Windows 2012.csv -------------------------------------------------------------------------------- /CommThreads/CommThread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/CommThread.pas -------------------------------------------------------------------------------- /CommThreads/OnIdle.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/OnIdle.dpr -------------------------------------------------------------------------------- /CommThreads/OnIdle.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/OnIdle.dproj -------------------------------------------------------------------------------- /CommThreads/OnIdle.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/OnIdle.res -------------------------------------------------------------------------------- /CommThreads/OnIdleMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/OnIdleMain.dfm -------------------------------------------------------------------------------- /CommThreads/OnIdleMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/OnIdleMain.pas -------------------------------------------------------------------------------- /CommThreads/ThreadedQueue.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/ThreadedQueue.dpr -------------------------------------------------------------------------------- /CommThreads/ThreadedQueue.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/ThreadedQueue.dproj -------------------------------------------------------------------------------- /CommThreads/ThreadedQueue.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/ThreadedQueue.res -------------------------------------------------------------------------------- /CommThreads/ThreadedQueueMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/ThreadedQueueMain.dfm -------------------------------------------------------------------------------- /CommThreads/ThreadedQueueMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/CommThreads/ThreadedQueueMain.pas -------------------------------------------------------------------------------- /FMX from DLL/DLLHost.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/DLLHost.dpr -------------------------------------------------------------------------------- /FMX from DLL/DLLHost.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/DLLHost.dproj -------------------------------------------------------------------------------- /FMX from DLL/DLLHost.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/DLLHost.res -------------------------------------------------------------------------------- /FMX from DLL/DLLHostMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/DLLHostMain.dfm -------------------------------------------------------------------------------- /FMX from DLL/DLLHostMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/DLLHostMain.pas -------------------------------------------------------------------------------- /FMX from DLL/FMXDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/FMXDLL.dpr -------------------------------------------------------------------------------- /FMX from DLL/FMXDLL.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/FMXDLL.dproj -------------------------------------------------------------------------------- /FMX from DLL/FMXDLL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/FMXDLL.res -------------------------------------------------------------------------------- /FMX from DLL/FMXMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/FMXMain.fmx -------------------------------------------------------------------------------- /FMX from DLL/FMXMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/FMXMain.pas -------------------------------------------------------------------------------- /FMX from DLL/FMXfromDLL.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/FMXfromDLL.groupproj -------------------------------------------------------------------------------- /FMX from DLL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/FMX from DLL/readme.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MemAtomic/MemAtomic.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemAtomic/MemAtomic.dpr -------------------------------------------------------------------------------- /MemAtomic/MemAtomic.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemAtomic/MemAtomic.dproj -------------------------------------------------------------------------------- /MemAtomic/MemAtomic.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemAtomic/MemAtomic.res -------------------------------------------------------------------------------- /MemAtomic/MemAtomicMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemAtomic/MemAtomicMain.dfm -------------------------------------------------------------------------------- /MemAtomic/MemAtomicMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemAtomic/MemAtomicMain.pas -------------------------------------------------------------------------------- /MemAtomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemAtomic/README.md -------------------------------------------------------------------------------- /MemSpeed/MemSpeed.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemSpeed/MemSpeed.dpr -------------------------------------------------------------------------------- /MemSpeed/MemSpeed.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemSpeed/MemSpeed.dproj -------------------------------------------------------------------------------- /MemSpeed/MemSpeed.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemSpeed/MemSpeed.res -------------------------------------------------------------------------------- /MemSpeed/MemSpeedMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemSpeed/MemSpeedMain.dfm -------------------------------------------------------------------------------- /MemSpeed/MemSpeedMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemSpeed/MemSpeedMain.pas -------------------------------------------------------------------------------- /MemSpeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/MemSpeed/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | GpDelphiCode 2 | -------------------------------------------------------------------------------- /TestAnsiBuffer/TestAnsiBuffer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/TestAnsiBuffer/TestAnsiBuffer.dpr -------------------------------------------------------------------------------- /TestAnsiBuffer/TestAnsiBuffer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/TestAnsiBuffer/TestAnsiBuffer.dproj -------------------------------------------------------------------------------- /TheDelphiGeek/OverloadsAndOperators/OverloadsAndOperators.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/TheDelphiGeek/OverloadsAndOperators/OverloadsAndOperators.dpr -------------------------------------------------------------------------------- /TheDelphiGeek/OverloadsAndOperators/OverloadsAndOperators.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/TheDelphiGeek/OverloadsAndOperators/OverloadsAndOperators.dproj -------------------------------------------------------------------------------- /TheDelphiGeek/OverloadsAndOperators/OverloadsAndOperators.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/TheDelphiGeek/OverloadsAndOperators/OverloadsAndOperators.res -------------------------------------------------------------------------------- /TheDelphiGeek/OverloadsAndOperators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/TheDelphiGeek/OverloadsAndOperators/README.md -------------------------------------------------------------------------------- /XifyCode/xCode.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/XifyCode/xCode.dpr -------------------------------------------------------------------------------- /XifyCode/xCode.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/XifyCode/xCode.dproj -------------------------------------------------------------------------------- /XifyCode/xCode.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/XifyCode/xCode.res -------------------------------------------------------------------------------- /XifyCode/xCodeMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/XifyCode/xCodeMain.dfm -------------------------------------------------------------------------------- /XifyCode/xCodeMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabr42/GpDelphiCode/HEAD/XifyCode/xCodeMain.pas --------------------------------------------------------------------------------