Lines Matching defs:entryCount
246 table->entryCount = table->removedCount = 0;
547 if (table->entryCount + table->removedCount >= MAX_LOAD(table, size)) {
562 table->entryCount + table->removedCount == size - 1) {
588 table->entryCount++;
607 table->entryCount <= MIN_LOAD(table, size)) {
639 table->entryCount--;
703 table->entryCount <= MIN_LOAD(table, capacity)))) {
705 capacity = table->entryCount;
723 PRUint32 entrySize, entryCount;
770 entryCount = table->entryCount;
771 if (entryCount && chainCount) {
772 mean = (double)entryCount / chainCount;
773 variance = chainCount * sqsum - entryCount * entryCount;
785 fprintf(fp, " number of entries: %u\n", table->entryCount);