Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-08-12GHash: add flag get/set for gsetCampbell Barton
2014-08-11CommentsCampbell Barton
2014-08-07GHash/EdgeHash: avoid NULL check on iterator initCampbell Barton
2014-07-30GHash: generic comparison for int[4]Campbell Barton
2014-07-14GHash, EdgeHash: add debugging function to measure the hash qualityCampbell Barton
2014-06-13GSet, GHash: Add BLI_gset_add, since its common to add members to a setCampbell Barton
2014-05-14Code cleanup: doxy commentsCampbell Barton
2014-04-21GHash, Edgehash: add lookup_default() funcs.Campbell Barton
2014-04-20GHash, EdgeHash: hint on unlikely branchCampbell Barton
2014-04-15GHash: add BLI_ghashutil_uinthash_v4 for hashing 4 ints at onceCampbell Barton
2014-04-15GHash: add typed hash functions (were all (void *))Campbell Barton
2014-04-08GHash/Edgehash: make simple iterator checking functions inline.Campbell Barton
2014-04-05Mempool: remove BLI_MEMPOOL_SYSMALLOC, MEM_* allocs are more efficient nowCampbell Barton
2013-11-01code cleanup: spellingCampbell Barton
2013-09-02warning cleanup: correct some odd returns and quiet strict flag warnings on s...Campbell Barton
2013-09-02add hash iterator functions to access the pointer to the value.Campbell Barton
2013-09-01move strict compiler checks into a header so its easier to manage in one plac...Campbell Barton
2013-08-31mempool internal change, use unsigned ints where possible (less overhead),Campbell Barton
2013-08-27ghash/bli-listbase edits, rename BLI_ghash_pop -> BLI_ghash_popkey (since it ...Campbell Barton
2013-08-26internal changes to ghash/edgehash, reorganize to split out resizing the hash...Campbell Barton
2013-08-26add some safety checks in debug mode to ensure sets/hashes aren't confused.Campbell Barton
2013-08-26minor changes to edgehassh/ghashCampbell Barton
2013-08-26BKI_gset and EdgeSet api, use when hash values aren't used (reuses ghash inte...Campbell Barton
2013-08-25move doxy docs out of the ghash header into the C file.Campbell Barton
2013-08-25clearing the mempool can now keep more then a single element reserved.Campbell Barton
2013-08-25fix leak in BLI_ghash_clear(). was never freeing entries, add BLI_mempool_cle...Campbell Barton
2013-08-25doxygen docs for ghash/edgehashCampbell Barton
2013-08-25For pointer hashing use the same method as python, it gives better distribution.Campbell Barton
2013-08-25use ints for ghash/edgehash flags, since its allocated theres not much point ...Campbell Barton
2013-08-24add versions of BLI_ghash_int_new, BLI_ghash_str_new, etc. that take a reserv...Campbell Barton
2013-08-24revert bucket size change (edgehash was this way for years, since r26206, gha...Campbell Barton
2013-08-24ghash and edgehash api, allow newly defined hashes to take in the size of the...Campbell Barton
2013-08-22ghash/edgehash flag wasn't being initialized for new hashes. also init vars i...Campbell Barton
2013-08-21rename recently added BLI_ghash_assign() -> BLI_ghash_reinsert()Campbell Barton
2013-08-18Fix a few compiler warnings reported by clang.Brecht Van Lommel
2013-08-18add hash function BLI_ghash_assign, BLI_edgehash_assignCampbell Barton
2013-08-18minor api cleanup for ghash/edgehashCampbell Barton
2013-08-18add assert for hashes if an existing element is ever inserted into a ghash/ed...Campbell Barton
2013-08-01fix for BLI_ghash_clear from Sv. Lockal (lockal)Campbell Barton
2013-07-21code cleanup: de-duplicate BLI_ghashIterator_new/init and disable unused text...Campbell Barton
2013-07-20revert r58419. caller should do NULL check here.Campbell Barton
2013-07-20BGE fix [#36223] Strange page fault of "Game" actuatorDaniel Stokes
2013-06-23Make edgehash and ghash use the same limit for expanding buckets, r26206 chan...Campbell Barton
2013-06-23reduce sign conversion comparisons for smallhash and tweak warnings elsewhere.Campbell Barton
2013-06-23build fix for old gccs (after rev.57620)Dalai Felinto
2013-06-20reduce sign comparisons for ghash and add more strict warnings for gcc.Campbell Barton
2013-05-28move BLO_sys_types.h -> BLI_sys_types.h (it had nothing todo with loading)Campbell Barton
2013-05-21code cleanup: remove callbacks only added to wrap MEM_freeNCampbell Barton
2013-05-08rename BLI_ghashIterator_notDone() -> BLI_ghashIterator_done()Campbell Barton
2013-05-08warn of sign conversions for low level apis - ghash, heap, mempoolCampbell Barton