Searched refs:disk_cache_has_key (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/tests/
H A Dcache_test.c461 /* First test that disk_cache_has_key returns false before disk_cache_put_key */
462 result = disk_cache_has_key(cache, key_a);
463 expect_equal(result, 0, "disk_cache_has_key before key added");
465 /* Then a couple of tests of disk_cache_put_key followed by disk_cache_has_key */
467 result = disk_cache_has_key(cache, key_a);
468 expect_equal(result, 1, "disk_cache_has_key after key added");
471 result = disk_cache_has_key(cache, key_b);
472 expect_equal(result, 1, "2nd disk_cache_has_key after key added");
478 result = disk_cache_has_key(cache, key_a_collide);
481 result = disk_cache_has_key(cach
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/tests/cache/
H A Dcache_test.c492 /* First test that disk_cache_has_key returns false before disk_cache_put_key */
493 result = disk_cache_has_key(cache, key_a);
494 expect_equal(result, 0, "disk_cache_has_key before key added");
496 /* Then a couple of tests of disk_cache_put_key followed by disk_cache_has_key */
498 result = disk_cache_has_key(cache, key_a);
499 expect_equal(result, 1, "disk_cache_has_key after key added");
502 result = disk_cache_has_key(cache, key_b);
503 expect_equal(result, 1, "2nd disk_cache_has_key after key added");
509 result = disk_cache_has_key(cache, key_a_collide);
512 result = disk_cache_has_key(cach
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Ddisk_cache.h155 * and disk_cache_has_key().
216 * Later this key can be checked with disk_cache_has_key(), (unless the key
231 * Note: disk_cache_has_key() will only return true for keys passed to
233 * disk_cache_has_key() to return true for the same key.
236 disk_cache_has_key(struct disk_cache *cache, const cache_key key);
290 disk_cache_has_key(struct disk_cache *cache, const cache_key key) function in typeref:typename:bool
H A Ddisk_cache.c1257 disk_cache_has_key(struct disk_cache *cache, const cache_key key) function in typeref:typename:bool
/xsrc/external/mit/MesaLib/dist/src/util/
H A Ddisk_cache.h162 * and disk_cache_has_key().
245 * Later this key can be checked with disk_cache_has_key(), (unless the key
260 * Note: disk_cache_has_key() will only return true for keys passed to
262 * disk_cache_has_key() to return true for the same key.
265 disk_cache_has_key(struct disk_cache *cache, const cache_key key);
327 disk_cache_has_key(struct disk_cache *cache, const cache_key key) function in typeref:typename:bool
H A Ddisk_cache.c477 disk_cache_has_key(struct disk_cache *cache, const cache_key key) function in typeref:typename:bool
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dglsl_parser_extras.cpp2153 if (disk_cache_has_key(ctx->Cache, shader->sha1)) {
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dglsl_parser_extras.cpp2106 if (disk_cache_has_key(ctx->Cache, shader->sha1)) {

Completed in 19 milliseconds