Lines Matching defs:found
261 * Returns NULL if no entry is found.
390 * so previously found hash_entries are no longer valid after this function.
393 set_search_or_add(struct set *ht, uint32_t hash, const void *key, bool *found)
424 if (found)
425 *found = true;
441 if (found)
442 *found = false;
456 * so previously found hash_entries are no longer valid after this function.
515 * be notified if we're overwriting a found entry.
522 _mesa_set_search_or_add(struct set *set, const void *key, bool *found)
525 return set_search_or_add(set, set->key_hash_function(key), key, found);
530 const void *key, bool *found)
534 return set_search_or_add(set, hash, key, found);