Lines Matching defs:thiscache
949 cache_t *thiscache;
964 for (thiscache = cachehead->mt_cache; thiscache != NULL;
965 thiscache = thiscache->mt_next) {
966 (void) mutex_lock(&thiscache->mt_cache_lock);
967 if (thiscache->mt_nfree == 0) {
969 &thiscache->mt_cache_lock);
972 if (thiscache != NULL)
973 reinit_cache(thiscache);
974 (void) mutex_unlock(&thiscache->mt_cache_lock);
983 reinit_cache(cache_t *thiscache)
989 freeblocks = (uint32_t *)thiscache->mt_freelist;
990 while (freeblocks < (uint32_t *)thiscache->mt_arena) {
995 (uint32_t *)thiscache->mt_freelist)
996 << 5) + i) * thiscache->mt_size;
997 ret = thiscache->mt_arena + n;
1000 thiscache->mt_size);
1012 cache_t *thiscache, *hintcache;
1042 thiscache = cachehead->mt_hint;
1044 while (thiscache != NULL && thiscache->mt_nfree == 0)
1045 thiscache = thiscache->mt_next;
1047 if (thiscache == NULL) {
1049 thiscache = cachehead->mt_cache;
1052 while (thiscache != NULL && thiscache != hintcache &&
1053 thiscache->mt_nfree == 0)
1054 thiscache = thiscache->mt_next;
1056 if (thiscache == hintcache)
1057 thiscache = NULL;
1061 if (thiscache == NULL) { /* there are no free caches */
1065 thiscache = (cache_t *)morecore(thisrequest * HUNKSIZE);
1067 if (thiscache == (cache_t *)-1) {
1072 create_cache(thiscache, buffer_size, thisrequest);
1075 thiscache->mt_next = cachehead->mt_cache;
1076 cachehead->mt_cache = thiscache;
1080 cachehead->mt_hint = thiscache;
1082 /* thiscache now points to a cache with available space */
1083 (void) mutex_lock(&thiscache->mt_cache_lock);
1085 freeblocks = (uint32_t *)thiscache->mt_freelist;
1086 while (freeblocks < (uint32_t *)thiscache->mt_arena) {
1090 if (freeblocks < (uint32_t *)thiscache->mt_arena &&
1094 if (freeblocks < (uint32_t *)thiscache->mt_arena &&
1098 if (freeblocks < (uint32_t *)thiscache->mt_arena &&
1124 thiscache->mt_nfree--;
1126 (void) mutex_unlock(&thiscache->mt_cache_lock);
1129 n = (uintptr_t)(((freeblocks - (uint32_t *)thiscache->mt_freelist) << 5)
1130 + i) * thiscache->mt_size;
1134 * in the arena and put the value of thiscache in the word
1138 ret = thiscache->mt_arena + n;
1141 *(uintptr_t *)ret = (uintptr_t)thiscache;
1147 assert(ret + thiscache->mt_size <= thiscache->mt_freelist +
1148 thiscache->mt_span);
1507 cache_t *thiscache;
1515 for (thiscache = cachehead->mt_cache;
1516 thiscache != NULL;
1517 thiscache = thiscache->mt_next) {
1519 &thiscache->mt_cache_lock);
1530 cache_t *thiscache;
1536 for (thiscache = cachehead->mt_cache;
1537 thiscache != NULL;
1538 thiscache = thiscache->mt_next) {
1540 &thiscache->mt_cache_lock);