summaryrefslogtreecommitdiff
path: root/src/include/bitstring.i
AgeCommit message (Collapse)Author
2012-01-31Fix uninitialized warnings with GCC 4.6.Michael Cahill
2012-01-22Update copyright notices to 2012.Keith Bostic
Change the copyright check script to always use the current year. Change the example code copyright notices to document them as freeware, anybody using WiredTiger example code is free to use it in any way they choose, including commercially, WiredTiger claims no rights in such a copy. Minor re-ordering of the standard copyright notice so the preamble is always the copyright notice itself, not the mention of the LICENSE file.
2011-12-18Split u.col_leaf into two parts (u.col_fix and u.col_var), and move theKeith Bostic
column-store append/update lists from WT_PAGE into WT_PAGE_MODIFY in order to shrink WT_PAGE. --HG-- extra : rebase_source : 6d7df0f5b50351cabfec464eccfa0b49b8b0f35a
2011-08-19Fix a comment.Keith Bostic
2011-08-05Automated change whacked some copyright statements.Keith Bostic
2011-08-04Remove declarations for static inline functions, when mixed with non-inlined ↵Michael Cahill
code, move the inlined functions to the top. This is required for some compilers to inline at all, and avoids the need for a "STATIN" to shorten "static inline" declarations.
2011-08-03Fast-path 8-bit fixed-length column-store fields: I think they'll be commonKeith Bostic
enough we should notice them. I looked at slice-and-dice for the rest of the field sizes, but it's going to require tests (if not a loop), and I bet the compiler is going to do a better job than I will.
2011-08-03Redo Paul Vixie's bitstring.h #defines as inline functions, usingKeith Bostic
uint32_t max-bits instead of "int", and rename include/bitstring.h to include/bitstring.i. Change the names of the fixed-length column-store get/set value functions to match the other bitstring functions, and move them from include/btree.i to include/bitstring.i. --HG-- rename : src/include/bitstring.h => src/include/bitstring.i