Home
last modified time | relevance | path

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

/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dhtable.c202 table->seq_bucket = table->seq_element = 0; in htable_create()
323 if (table->seq_bucket) in htable_free()
324 myfree((void *) table->seq_bucket); in htable_free()
325 table->seq_bucket = 0; in htable_free()
375 if (table->seq_bucket) in htable_sequence()
376 myfree((void *) table->seq_bucket); in htable_sequence()
377 table->seq_bucket = htable_list(table); in htable_sequence()
378 table->seq_element = table->seq_bucket; in htable_sequence()
385 if (table->seq_bucket) { in htable_sequence()
386 myfree((void *) table->seq_bucket); in htable_sequence()
[all …]
H A Dbinhash.c209 table->seq_bucket = table->seq_element = 0; in binhash_create()
327 if (table->seq_bucket) in binhash_free()
328 myfree((void *) table->seq_bucket); in binhash_free()
329 table->seq_bucket = 0; in binhash_free()
380 if (table->seq_bucket) in binhash_sequence()
381 myfree((void *) table->seq_bucket); in binhash_sequence()
382 table->seq_bucket = binhash_list(table); in binhash_sequence()
383 table->seq_element = table->seq_bucket; in binhash_sequence()
390 if (table->seq_bucket) { in binhash_sequence()
391 myfree((void *) table->seq_bucket); in binhash_sequence()
[all …]
H A Dbinhash.h32 BINHASH_INFO **seq_bucket; /* current sequence hash bucket */ member
H A Dhtable.h31 HTABLE_INFO **seq_bucket; /* current sequence hash bucket */ member