Searched refs:trie (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/gnu/usr.bin/grep/
H A Dkwset.c51 /* Balanced tree of edges and labels leaving a given trie node. */
56 struct trie *trie; /* Trie node pointed to by this edge. */ member in struct:tree
61 /* Node of a trie representing a set of reversed keywords. */
62 struct trie struct
66 struct trie *parent; /* Parent of this node. */
67 struct trie *next; /* List of all trie nodes in level order. */
68 struct trie *fail; /* Aho-Corasick failure function. */
78 int words; /* Number of words in the trie
79 struct trie *trie; /* The trie itself. */ member in struct:kwset
130 register struct trie *trie; local
585 struct trie const *trie; local
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/
H A Dassoc_container.hpp464 // An abstract basic tree-like (tree, trie) associative container.
565 // A concrete basic trie-based associative container.
576 class trie : public PB_DS_BASE_C_DEC class in namespace:pb_ds
585 trie() { } function in class:pb_ds::trie
590 trie(const e_access_traits& t) function in class:pb_ds::trie
597 trie(It first, It last) function in class:pb_ds::trie
604 trie(It first, It last, const e_access_traits& t) function in class:pb_ds::trie
608 trie(const trie& other) function in class:pb_ds::trie
612 ~trie() { }
[all...]
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Denv.cpp3343 class trie { class
3349 trie() : tp(0) {} function in class:trie
3350 virtual ~trie(); // virtual to shut up g++
3357 class hyphen_trie : private trie {
3458 trie::~trie()
3463 void trie::clear()
3470 void trie::delete_trie_node(trie_node *p)
3481 void trie::insert(const char *pat, int patlen, void *val)
3499 void trie
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryReader.cpp512 ArrayRef<uint8_t> trie(trieStart, read32(&dyldInfo->export_size, isBig));
514 for (const ExportEntry &trieExport : MachOObjectFile::exports(Err, trie)) {

Completed in 78 milliseconds