Lines Matching refs:tspp
1793 si_t **tspp; in si_cache_put() local
1803 tspp = &si_cachea[SI_HASH(sp->s_signature)]; in si_cache_put()
1804 sp->s_next = *tspp; in si_cache_put()
1805 *tspp = sp; in si_cache_put()
1808 tspp = &si_cachei[SI_HASH(sp->s_shadow)]; in si_cache_put()
1809 sp->s_forw = *tspp; in si_cache_put()
1810 *tspp = sp; in si_cache_put()
1834 si_t **tspp; in si_cache_del() local
1845 for (tspp = &si_cachea[hash]; *tspp; tspp = &(*tspp)->s_next) { in si_cache_del()
1846 if (*tspp == sp) { in si_cache_del()
1863 *tspp = sp->s_next; in si_cache_del()
1883 for (tspp = &si_cachei[hash]; *tspp; tspp = &(*tspp)->s_forw) { in si_cache_del()
1884 if (*tspp == sp) { in si_cache_del()
1885 *tspp = sp->s_forw; in si_cache_del()
2055 si_t *tsp, **tspp; in ufs_si_cache_flush() local
2060 tspp = &si_cachea[i]; in ufs_si_cache_flush()
2061 while (*tspp) { in ufs_si_cache_flush()
2062 if ((*tspp)->s_dev == dev) { in ufs_si_cache_flush()
2063 *tspp = (*tspp)->s_next; in ufs_si_cache_flush()
2065 tspp = &(*tspp)->s_next; in ufs_si_cache_flush()
2070 tspp = &si_cachei[i]; in ufs_si_cache_flush()
2071 while (*tspp) { in ufs_si_cache_flush()
2072 if ((*tspp)->s_dev == dev) { in ufs_si_cache_flush()
2073 tsp = *tspp; in ufs_si_cache_flush()
2074 *tspp = (*tspp)->s_forw; in ufs_si_cache_flush()
2078 tspp = &(*tspp)->s_forw; in ufs_si_cache_flush()