summaryrefslogtreecommitdiff
path: root/src/include/btree_cmp.i
Commit message (Expand)AuthorAgeFilesLines
* WT-3644 Port to FreeBSD release 11.1 (#3719)Keith Bostic2017-10-111-1/+1
* WT-3394 Fix compilation warnings for GCC-7 (#3499)Alex Gorrod2017-07-061-14/+52
* Revert "WT-3394 Build WiredTiger with gcc7 (#3492)" (#3498)Alex Gorrod2017-07-061-52/+14
* WT-3394 Build WiredTiger with gcc7 (#3492)Keith Bostic2017-07-061-14/+52
* WT-3267 Upgrade copyright notices from 2016 to 2017. (#3374)Keith Bostic2017-04-071-1/+1
* WT-2682 add option to configure WiredTiger with strict compiler flags (#2773)Keith Bostic2016-06-081-10/+10
* Upgrade copyright notices from 2015 to 2016.Keith Bostic2016-01-011-1/+1
* WT-2146: __wt_compare and __wt_lex_compare should be next to each otherKeith Bostic2015-10-271-55/+55
* WT-2146 Do quick searches based on the size of the search key rather than the...Michael Cahill2015-10-271-3/+4
* Restore a comment that got lost.Keith Bostic2015-09-281-0/+2
* Create a new lexicographic comparison for packed record-number keys,Keith Bostic2015-09-281-56/+52
* Use a small switch statement in the row-store search functions, attemptingKeith Bostic2015-09-271-0/+56
* Windows doesn't have <x86intrin.h>, it does have <intrin.h> which isKeith Bostic2015-04-021-0/+2
* Move local var into ifdef.Susan LoVerso2015-04-011-6/+2
* Fix warnings.Susan LoVerso2015-04-011-2/+8
* Use the existence of the <x86intrin.h> #include file to configure theKeith Bostic2015-04-011-14/+4
* Don't #include <x86intrin.h>, gcc 4.1.2 doesn't have it, useKeith Bostic2015-04-011-3/+4
* gcc 4.1 compiled failed, check for __SSE2__ explicitly.Keith Bostic2015-04-011-0/+3
* fix a comment.Keith Bostic2015-04-011-1/+1
* Clean up intrinsic #includes: use <intrin.h> on MicrosoftKeith Bostic2015-04-011-4/+10
* warning: declaration of 'remainder' shadows a global declarationKeith Bostic2015-04-011-8/+8
* Add checks for Windows builds: _M_AMD64 and _MSC_VER.Keith Bostic2015-03-261-3/+3
* Use the size of the vector chunk to decide if we'll execute vectorKeith Bostic2015-03-251-3/+4
* Include emmintrin.h directly, don't use our own copies.Keith Bostic2015-03-251-5/+4
* Instead of using _mm_cmplt_epi8 when we find a mismatch, fall into theKeith Bostic2015-03-251-30/+8
* KNFKeith Bostic2015-03-251-2/+2
* SSE2 instructions only require 16B alignment.Keith Bostic2015-03-251-1/+2
* We don't have to reinitialize userp and treep when falling into theKeith Bostic2015-03-231-11/+8
* A couple more style touches, remainder doesn't need to be signed.Keith Bostic2015-03-231-10/+6
* minor stylistic cleanups.Keith Bostic2015-03-231-11/+8
* Don't test against WT_VECTOR_SIZE when looking for the specific byteKeith Bostic2015-03-231-12/+12
* Pull the alignment test out of the for(;;) loop.Keith Bostic2015-03-231-21/+38
* Don't call _mm_cmplt_epi8() until we don't compare equal.Keith Bostic2015-03-231-2/+2
* Integrate Sasha's vectorized search code.Keith Bostic2015-03-231-0/+200