Home
last modified time | relevance | path

Searched refs:seq_element (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()
378 table->seq_element = table->seq_bucket; in htable_sequence()
379 return (*(table->seq_element)++); in htable_sequence()
381 if (table->seq_element && *table->seq_element) in htable_sequence()
382 return (*(table->seq_element)++); in htable_sequence()
387 table->seq_bucket = table->seq_element = 0; in htable_sequence()
H A Dbinhash.c209 table->seq_bucket = table->seq_element = 0; in binhash_create()
383 table->seq_element = table->seq_bucket; in binhash_sequence()
384 return (*(table->seq_element)++); in binhash_sequence()
386 if (table->seq_element && *table->seq_element) in binhash_sequence()
387 return (*(table->seq_element)++); in binhash_sequence()
392 table->seq_bucket = table->seq_element = 0; in binhash_sequence()
H A Dbinhash.h33 BINHASH_INFO **seq_element; /* current sequence element */ member
H A Dhtable.h32 HTABLE_INFO **seq_element; /* current sequence element */ member