Home | History | Annotate | Download | only in runtime

Lines Matching defs:HashSet

84 type HashSet struct {
89 func newHashSet() *HashSet {
90 return &HashSet{make(map[uintptr]struct{}), 0}
92 func (s *HashSet) add(h uintptr) {
96 func (s *HashSet) addS(x string) {
99 func (s *HashSet) addB(x []byte) {
102 func (s *HashSet) addS_seed(x string, seed uintptr) {
105 func (s *HashSet) check(t *testing.T) {
173 func twoNonZero(h *HashSet, n int) {
252 func setbits(h *HashSet, b []byte, i int, k int) {
282 func genPerm(h *HashSet, b []byte, s []uint32, n int) {