Lines Matching refs:bin
451 int bin; in hashbin_insert() local
461 bin = GET_HASHBIN( hashv ); in hashbin_insert()
478 enqueue_first( (irda_queue_t**) &hashbin->hb_queue[ bin ], in hashbin_insert()
510 int bin; in hashbin_remove_first() local
516 bin = GET_HASHBIN( hashv ); in hashbin_remove_first()
521 dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], in hashbin_remove_first()
560 int bin, found = FALSE; in hashbin_remove() local
572 bin = GET_HASHBIN( hashv ); in hashbin_remove()
582 entry = hashbin->hb_queue[ bin ]; in hashbin_remove()
604 } while ( entry != hashbin->hb_queue[ bin ] ); in hashbin_remove()
611 dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], in hashbin_remove()
652 int bin; in hashbin_remove_this() local
674 bin = GET_HASHBIN( hashv ); in hashbin_remove_this()
679 dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], in hashbin_remove_this()
711 int bin; in hashbin_find() local
724 bin = GET_HASHBIN( hashv ); in hashbin_find()
729 entry = hashbin->hb_queue[ bin]; in hashbin_find()
748 } while ( entry != hashbin->hb_queue[ bin ] ); in hashbin_find()
870 int bin; in hashbin_get_next() local
881 bin = GET_HASHBIN( entry->q_hash); in hashbin_get_next()
887 if ( entry != hashbin->hb_queue[ bin ]) { in hashbin_get_next()
896 if ( bin >= HASHBIN_SIZE) in hashbin_get_next()
902 bin++; in hashbin_get_next()
903 for ( i = bin; i < HASHBIN_SIZE; i++ ) { in hashbin_get_next()