Lines Matching refs:hashv
447 void hashbin_insert(hashbin_t* hashbin, irda_queue_t* entry, long hashv, in hashbin_insert() argument
460 hashv = hash( name ); in hashbin_insert()
461 bin = GET_HASHBIN( hashv ); in hashbin_insert()
471 entry->q_hash = hashv; in hashbin_insert()
511 long hashv; in hashbin_remove_first() local
515 hashv = entry->q_hash; in hashbin_remove_first()
516 bin = GET_HASHBIN( hashv ); in hashbin_remove_first()
558 void* hashbin_remove( hashbin_t* hashbin, long hashv, const char* name) in hashbin_remove() argument
571 hashv = hash( name ); in hashbin_remove()
572 bin = GET_HASHBIN( hashv ); in hashbin_remove()
588 if ( entry->q_hash == hashv ) { in hashbin_remove()
653 long hashv; in hashbin_remove_this() local
673 hashv = entry->q_hash; in hashbin_remove_this()
674 bin = GET_HASHBIN( hashv ); in hashbin_remove_this()
709 void* hashbin_find( hashbin_t* hashbin, long hashv, const char* name ) in hashbin_find() argument
723 hashv = hash( name ); in hashbin_find()
724 bin = GET_HASHBIN( hashv ); in hashbin_find()
735 if ( entry->q_hash == hashv ) { in hashbin_find()
764 void* hashbin_lock_find( hashbin_t* hashbin, long hashv, const char* name ) in hashbin_lock_find() argument
775 entry = hashbin_find(hashbin, hashv, name); in hashbin_lock_find()
794 void* hashbin_find_next( hashbin_t* hashbin, long hashv, const char* name, in hashbin_find_next() argument
808 entry = hashbin_find(hashbin, hashv, name); in hashbin_find_next()