Home
last modified time | relevance | path

Searched refs:tbl_max (Results 1 – 4 of 4) sorted by relevance

/mirbsd/src/gnu/usr.bin/perl/x2p/
Dhash.c34 entry = tb->tbl_array[hash & tb->tbl_max]; in hfetch()
62 oentry = &(tb->tbl_array[hash & tb->tbl_max]); in hstore()
86 if ((tb->tbl_fill * 100 / (tb->tbl_max + 1)) > FILLPCT) in hstore()
96 const int oldsize = tb->tbl_max + 1; in hsplit()
106 tb->tbl_max = --newsize; in hsplit()
137 tb->tbl_max = 7; in hnew()
Dhash.h37 int tbl_max; member
/mirbsd/src/gnu/usr.bin/perl/
Dsv.c9812 tbl->tbl_max = 511; in Perl_ptr_table_new()
9814 Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*); in Perl_ptr_table_new()
9869 tblent = tbl->tbl_ary[hash & tbl->tbl_max]; in Perl_ptr_table_fetch()
9890 otblent = &tbl->tbl_ary[hash & tbl->tbl_max]; in Perl_ptr_table_store()
9903 if (!empty && tbl->tbl_items > tbl->tbl_max) in Perl_ptr_table_store()
9913 const UV oldsize = tbl->tbl_max + 1; in Perl_ptr_table_split()
9919 tbl->tbl_max = --newsize; in Perl_ptr_table_split()
9955 max = tbl->tbl_max; in Perl_ptr_table_clear()
Dperl.h2821 UV tbl_max; member