Lines Matching defs:_WordSetU
150 struct _WordSetU { struct
151 void* (*alloc)(const HChar*,SizeT);
152 const HChar* cc;
153 void (*dealloc)(void*);
154 WordFM* vec2ix; /* WordVec-to-WordSet mapping tree */
155 WordVec** ix2vec; /* WordSet-to-WordVec mapping array */
156 UWord ix2vec_size;
157 UWord ix2vec_used;
158 WordVec** ix2vec_free;
159 WordSet empty; /* cached, for speed */
161 WCache cache_addTo;
162 WCache cache_delFrom;
163 WCache cache_intersect;
164 WCache cache_minus;
166 UWord n_add;
167 UWord n_add_uncached;
168 UWord n_del;
169 UWord n_del_uncached;
170 UWord n_die;
171 UWord n_union;
172 UWord n_intersect;
173 UWord n_intersect_uncached;
174 UWord n_minus;
175 UWord n_minus_uncached;
176 UWord n_elem;
177 UWord n_doubleton;
178 UWord n_isEmpty;
179 UWord n_isSingleton;
180 UWord n_anyElementOf;
181 UWord n_isSubsetOf;