Lines Matching refs:he
144 hash_table_foreach(cswap->presents, he) {
145 struct util_dynarray *arr = he->data;
174 struct hash_entry *he = NULL;
178 he = _mesa_hash_table_search_pre_hashed(&screen->dts, cdt->info.xcb.window, (void*)(uintptr_t)cdt->info.xcb.window);
183 he = _mesa_hash_table_search(&screen->dts, cdt->info.wl.surface);
188 he = _mesa_hash_table_search(&screen->dts, cdt->info.win32.hwnd);
194 return he;
203 struct hash_entry *he = find_dt_entry(screen, cdt);
204 assert(he);
206 cdt = he->data;
207 _mesa_hash_table_remove(&screen->dts, he);
362 struct hash_entry *he = NULL;
379 he = find_dt_entry(screen, &k);
382 if (he) {
383 cdt = he->data;
690 struct hash_entry *he = _mesa_hash_table_search(swapchain->presents,
692 if (he) {
693 arr = he->data;
698 _mesa_hash_table_remove(swapchain->presents, he);
706 struct hash_entry *he = _mesa_hash_table_search(swapchain->presents, (void*)(uintptr_t)next);
707 if (he)
708 arr = he->data;