Searched refs:hashv (Results 1 – 2 of 2) sorted by relevance
/linux-2.6.39/net/irda/ |
D | irqueue.c | 449 void hashbin_insert(hashbin_t* hashbin, irda_queue_t* entry, long hashv, in hashbin_insert() argument 464 hashv = hash( name ); in hashbin_insert() 465 bin = GET_HASHBIN( hashv ); in hashbin_insert() 475 entry->q_hash = hashv; in hashbin_insert() 515 long hashv; in hashbin_remove_first() local 519 hashv = entry->q_hash; in hashbin_remove_first() 520 bin = GET_HASHBIN( hashv ); in hashbin_remove_first() 562 void* hashbin_remove( hashbin_t* hashbin, long hashv, const char* name) in hashbin_remove() argument 577 hashv = hash( name ); in hashbin_remove() 578 bin = GET_HASHBIN( hashv ); in hashbin_remove() [all …]
|
/linux-2.6.39/include/net/irda/ |
D | irqueue.h | 82 void hashbin_insert(hashbin_t* hashbin, irda_queue_t* entry, long hashv, 84 void* hashbin_remove(hashbin_t* hashbin, long hashv, const char* name); 87 void* hashbin_find(hashbin_t* hashbin, long hashv, const char* name); 88 void* hashbin_lock_find(hashbin_t* hashbin, long hashv, const char* name); 89 void* hashbin_find_next(hashbin_t* hashbin, long hashv, const char* name,
|