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
2016-06-09Fix T48614: Blender from buildbot crash when Separate selection in this parti...Bastien Montagne
2016-06-01Optimize mempool iterationCampbell Barton
2016-05-31BLI_mempool: Use an 'odd' FREEWORD for big/little endianCampbell Barton
2015-08-04Docs: comment functions in BLI & Py APICampbell Barton
2014-06-08Fix mempool bottleneck alloc & freeing a single itemCampbell Barton
2014-04-10Revert "Mempool: simplify memory chunk list building"Campbell Barton
2014-04-10Code cleanup: use struct type for mempool & style editsCampbell Barton
2014-04-08Mempool: simplify memory chunk list buildingCampbell Barton
2014-04-08Mempool: delay allocating an initial chunk, its not always usedCampbell Barton
2014-04-07Mempool: use define for used freeword and correct defineCampbell Barton
2014-04-07Mempool: minor optimization to building free pointer listCampbell Barton
2014-04-07Mempool: fix own error in recent commitCampbell Barton
2014-04-05Optimize mempool: round chunk size to powers of 2, account for slop-spaceCampbell Barton
2014-04-05Mempool: remove BLI_MEMPOOL_SYSMALLOC, MEM_* allocs are more efficient nowCampbell Barton
2014-04-05Optimize mempool: replace double linked list with single for memory chunksCampbell Barton
2014-04-04Optimization for mempool initial chunk allocationCampbell Barton
2014-02-07ListBase API: add utility api funcs for clearing and checking emptyCampbell Barton
2013-12-10Mempool/Memarena: hint for unlikely conditionsCampbell Barton
2013-12-08Util-defines: avoid multiple calculation/access for MIN/MAX macrosCampbell Barton
2013-10-22style cleanupCampbell Barton
2013-10-07Build fix (issue could happen with scons,reported by ebrain on IRC, thanks).Bastien Montagne
2013-10-05more corrections to valgrind hinting.Campbell Barton
2013-10-05use valgrind hints for memarena for better debugging info when using valgrind.Campbell Barton
2013-10-03freeing mempool elements now fills freed memory with --debug for debug builds.Campbell Barton
2013-10-03add cmake option WITH_MEM_VALGRIND, helps to track down errors with mempool u...Campbell Barton
2013-09-03reorder BLI_strict_flags.h include so its not conflicting with stdio.h on apple.Campbell Barton
2013-09-02warning cleanup: correct some odd returns and quiet strict flag warnings on s...Campbell Barton
2013-09-01move strict compiler checks into a header so its easier to manage in one plac...Campbell Barton
2013-08-31tweak mempool loop comparisons when we know there is no chance for skipping p...Campbell Barton
2013-08-31remove unnecessary check in BLI_mempool_iterstep and add doxygen comments to ...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-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-25code cleanup for mempool, refactor chunk initialization into a static function.Campbell Barton
2013-08-25merge mempool allocs per chunk, include the data in the BLI_mempool_chunk alloc.Campbell Barton
2013-08-21style cleanup: also use ARRAY_HAS_ITEM macro for mempool checkCampbell Barton
2013-08-19Added check for address being freed by mempool freeSergey Sharybin
2013-08-04mempool api cleanup: differentiate mempool functions that allocate a pointer ...Campbell Barton
2013-08-03fix for [#36260] 2,300 Objects Makes Blender UnresponsiveSv. Lockal
2013-07-19optimization: avoid extra loop in BLI_mempool_destroy(). free the list inline.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-08warn of sign conversions for low level apis - ghash, heap, mempoolCampbell Barton
2013-02-17BLI_mempool totalloc was being used un-initialized, normally this would cause...Campbell Barton
2013-02-15add debug check for mempool double free (or misuse of BLI_MEMPOOL_ALLOW_ITER),Campbell Barton
2013-01-31add BLI_mempool_as_arrayN utility function for getting the mempool as a new a...Campbell Barton
2013-01-19utility function to get a mempool as a pointer array.Campbell Barton
2013-01-19replace error prints with asserts in BLI_mempool when an iterator function is...Campbell Barton