summaryrefslogtreecommitdiff
path: root/src/util
AgeCommit message (Expand)AuthorFilesLines
2017-06-06util/vulkan: Move Vulkan utilities to src/vulkan/utilAlex Smith3-297/+1
2017-06-01util/rand_xor: add missing include statementsNicolas Dechesne1-0/+1
2017-05-31mesa/util: fix arithmetic use of 'void *' in u_vector_foreachSamuel Pitoiset1-1/+1
2017-05-29util: slab_destroy_child should check whether it's been initializedMarek Olšák1-0/+3
2017-05-25util: remove unneeded Android ifdef from ralloc.cRob Herring1-5/+0
2017-05-23util/disk_cache: add new driver_flags param to cache keysTimothy Arceri2-3/+11
2017-05-22ralloc: Use strnlen() inside of strncat()Vladislav Egorov1-6/+1
2017-05-22util: Change the pointer hashing functionThomas Helland1-1/+2
2017-05-17Android: correct libz dependencyChih-Wei Huang1-0/+1
2017-05-09util: move ALWAYS_INLINE macro to util/macro.hTimothy Arceri1-0/+11
2017-04-28util/disk_cache: remove percentage based max cache limitTimothy Arceri1-6/+2
2017-04-27disk_cache: use block size rather than file sizeTimothy Arceri1-5/+11
2017-04-27disk_cache: reduce default cache size to 5% of filesystemTimothy Arceri1-2/+2
2017-04-18util/queue: don't hang at exitRob Clark1-1/+10
2017-04-03util: fix MSVC warning in u_align_u32()Brian Paul1-1/+1
2017-04-03util: #include "c99_compat.h" to fix Windows buildBrian Paul2-0/+2
2017-04-03util: s/SHA1_H/MESA_SHA1_H/Brian Paul1-2/+2
2017-04-03util/u_atomic: provide 64bit atomics where they're missingGrazvydas Ignotas2-0/+76
2017-03-25util/disk_cache: don't deadlock on premature EOFGrazvydas Ignotas1-17/+26
2017-03-24util/disk_cache: write cache entry keys to file headerTimothy Arceri1-6/+44
2017-03-24util/disk_cache: hash pointer size and gpu name into cache keysGrazvydas Ignotas2-43/+15
2017-03-24util/disk_cache: hash timestamps into the cache keysGrazvydas Ignotas1-51/+26
2017-03-23util/disk_cache: use rand_xorshift128plus() to get our random intTimothy Arceri1-8/+10
2017-03-23util/rand_xor: add function to seed randTimothy Arceri2-0/+69
2017-03-23util: move rand_xorshift128plus() to utilsTimothy Arceri3-0/+55
2017-03-22Android: remove host libmesa_utilRob Herring1-35/+0
2017-03-22util: automake: beautify sources listEmil Velikov1-3/+3
2017-03-22util/strndup: move header inclusion as applicableEmil Velikov1-2/+1
2017-03-22util: inline strndup implementation in the headerEmil Velikov3-50/+20
2017-03-22util: consistently use ifndef guards over pragma onceEmil Velikov4-2/+19
2017-03-22util/sha1: harmonize _mesa_sha1_* wrappersGrazvydas Ignotas2-9/+10
2017-03-21util/disk_cache: fix build on platforms where shader cache is disabledTimothy Arceri1-1/+1
2017-03-21util/disk_cache: add a write helperGrazvydas Ignotas1-14/+23
2017-03-21util/disk_cache: use a helper to compute cache keysGrazvydas Ignotas2-0/+21
2017-03-20util/disk_cache: check rename resultGrazvydas Ignotas1-2/+6
2017-03-20util/disk_cache: delete .tmp if target existsGrazvydas Ignotas1-1/+3
2017-03-20util/disk_cache: fix stored_keys indexGrazvydas Ignotas1-2/+2
2017-03-18util/disk_cache: pass predicate functions file stats directly (v4)Alan Swanson1-34/+21
2017-03-17util/build-id: check dlpi_name before strstr callTapani Pälli1-0/+6
2017-03-16util/disk_cache: do eviction before creating .tmpGrazvydas Ignotas1-10/+8
2017-03-15util/sha1: drop _mesa_sha1_{update, format} return typeEmil Velikov2-7/+4
2017-03-15util/sha1: rework _mesa_sha1_{init,final}Emil Velikov2-34/+13
2017-03-15util/sha1: add non-typedef name for the SHA1_CTX structEmil Velikov2-1/+4
2017-03-15util/disk_cache: scale cache according to filesystem sizeAlan Swanson1-3/+8
2017-03-15util/disk_cache: actually enforce cache sizeAlan Swanson1-1/+5
2017-03-15util/disk_cache: use LRU eviction rather than random evictionAlan Swanson1-43/+34
2017-03-15util/disk_cache: don't fallback to an empty cache dir on evictTimothy Arceri1-6/+27
2017-03-15util/disk_cache: use a thread queue to write to shader cacheTimothy Arceri1-13/+28
2017-03-15util/disk_cache: add helpers for creating/destroying disk cache put jobsTimothy Arceri1-0/+40
2017-03-15util/disk_cache: add thread queue to disk cacheTimothy Arceri1-1/+15