Searched refs:rehash_threshold (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/xedit/dist/lisp/
H A Dhash.h50 double rehash_threshold; member in struct:_LispHashTable
H A Dhash.c276 if (hash->count > hash->rehash_threshold * hash->num_entries)
456 return (DFLOAT(hash_table->data.hash.table->rehash_threshold));
523 LispObj *test, *size, *rehash_size, *rehash_threshold, *initial_contents; local in function:Lisp_MakeHashTable
526 rehash_threshold = ARGUMENT(3);
566 if (rehash_threshold != UNSPEC) {
567 CHECK_DFLOAT(rehash_threshold);
568 if (DFLOAT_VALUE(rehash_threshold) < 0.0 ||
569 DFLOAT_VALUE(rehash_threshold) > 1.0)
572 STRFUN(builtin), STROBJ(rehash_threshold));
573 drthreshold = DFLOAT_VALUE(rehash_threshold);
[all...]

Completed in 4 milliseconds