Lines Matching refs:sfprintf

39 	if (flags & HASH_ALLOCATE) sfprintf(sfstderr, "allocate ");
40 if (flags & HASH_BUCKET) sfprintf(sfstderr, "bucket ");
41 if (flags & HASH_FIXED) sfprintf(sfstderr, "fixed ");
42 if (flags & HASH_HASHED) sfprintf(sfstderr, "hashed ");
43 if (flags & HASH_RESIZE) sfprintf(sfstderr, "resize ");
44 if (flags & HASH_STATIC) sfprintf(sfstderr, "static ");
45 if (flags & HASH_VALUE) sfprintf(sfstderr, "value ");
71 sfprintf(sfstderr, "%5d %2d :", sp - tab->table, n);
77 sfprintf(sfstderr, " 0x");
80 sfprintf(sfstderr, "%02x", *s++);
82 else sfprintf(sfstderr, " %s", hashname(b));
85 sfprintf(sfstderr, "|");
86 if (b->hash & HASH_HIDES) sfprintf(sfstderr, "hides|");
87 if (b->hash & HASH_HIDDEN) sfprintf(sfstderr, "hidden|");
88 if (b->hash & HASH_KEEP) sfprintf(sfstderr, "keep|");
89 if (b->hash & HASH_OPAQUED) sfprintf(sfstderr, "opaque|");
91 if (tab->flags & HASH_VALUE) sfprintf(sfstderr, "=0x%08lx", (long)b->value);
93 sfprintf(sfstderr, "\n");
96 sfprintf(sfstderr, "\n");
109 sfprintf(sfstderr, " name: %s", tab->name ? tab->name : "*no name*");
114 sfprintf(sfstderr, " level %d scope on 0x%08lx", level, (unsigned long)tab->scope);
116 sfprintf(sfstderr, "\n");
117 sfprintf(sfstderr, " address: 0x%08lx\n", (unsigned long)tab);
118 sfprintf(sfstderr, " flags: ");
119 if (tab->frozen) sfprintf(sfstderr, "frozen=%d ", tab->frozen);
121 sfprintf(sfstderr, "\n");
122 sfprintf(sfstderr, " size: %d\n", tab->size);
123 sfprintf(sfstderr, " buckets: %d\n", tab->buckets);
124 sfprintf(sfstderr, " bucketsize: %d\n", tab->bucketsize * sizeof(char*));
125 sfprintf(sfstderr, "\n");
138 sfprintf(sfstderr, " root\n");
139 sfprintf(sfstderr, " address: 0x%08lx\n", (unsigned long)root);
140 sfprintf(sfstderr, " flags: ");
142 if (root->namesize) sfprintf(sfstderr, "namesize=%d ", root->namesize);
143 if (root->local->alloc) sfprintf(sfstderr, "alloc=0x%08lx ", (unsigned long)root->local->alloc);
144 if (root->local->compare) sfprintf(sfstderr, "compare=0x%08lx ", (unsigned long)root->local->compare);
145 if (root->local->free) sfprintf(sfstderr, "free=0x%08lx ", (unsigned long)root->local->free);
146 if (root->local->hash) sfprintf(sfstderr, "hash=0x%08lx ", (unsigned long)root->local->hash);
147 if (root->local->region) sfprintf(sfstderr, "region=0x%08lx handle=0x%08lx ", (unsigned long)root->local->region, (unsigned long)root->local->handle);
148 sfprintf(sfstderr, "\n");
149 sfprintf(sfstderr, " meanchain: %d\n", root->meanchain);
150 sfprintf(sfstderr, " accesses: %d\n", root->accesses);
151 sfprintf(sfstderr, " collisions: %d\n", root->collisions);
152 sfprintf(sfstderr, "\n");
168 sfprintf(sfstderr, "\nhash table information:\n\n");