Home | History | Annotate | Download | only in src

Lines Matching defs:tab_size

77     int tab_size;
215 map->tab_size = start_tab_size;
430 int i, tab_size;
446 tab_size = map->tab_size;
447 if( (tab_size & (tab_size - 1)) == 0 )
448 i = (int)(hashval & (tab_size - 1));
450 i = (int)(hashval % tab_size);
505 int i, tab_size;
522 tab_size = map->tab_size;
524 if( (tab_size & (tab_size - 1)) == 0 )
525 i = (int)(key->hashval & (tab_size - 1));
527 i = (int)(key->hashval % tab_size);
565 int i, len, tab_size;
607 tab_size = map->tab_size;
609 if( (tab_size & (tab_size - 1)) == 0 )
610 i = (int)(hashval & (tab_size - 1));
612 i = (int)(hashval % tab_size);