Home
last modified time | relevance | path

Searched refs:common_words_table (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl2/groff/dist/src/libs/libbib/
H A Dindex.cpp70 char **common_words_table; member in index_search_item
114 common_words_table(0) in index_search_item()
133 if (common_words_table) { in ~index_search_item()
135 a_delete common_words_table[i]; in ~index_search_item() local
136 a_delete common_words_table; in ~index_search_item() local
487 if (common_words_table) { in search1()
489 common_words_table[h]; in search1()
491 if (strlen(common_words_table[h]) == (size_t)len in search1()
492 && memcmp(common_words_table[h], key_buffer, len) == 0) in search1()
577 common_words_table = new char *[common_words_table_size]; in read_common_words_file()
[all …]
/netbsd-src/external/gpl2/groff/dist/src/utils/indxbib/
H A Dindxbib.cpp83 static word_list **common_words_table = 0; variable
387 common_words_table = new word_list * [hash_table_size]; in read_common_words_file()
389 common_words_table[i] = 0; in read_common_words_file()
405 common_words_table[h] = new word_list(key_buffer, key_len, in read_common_words_file()
406 common_words_table[h]); in read_common_words_file()
705 if (common_words_table) { in store_key()
706 for (word_list *ptr = common_words_table[h]; ptr; ptr = ptr->next) in store_key()