Searched refs:hashtab_ (Results 1 – 1 of 1) sorted by relevance
55 : size_(0), capacity_(0), hashtab_(NULL) in Gdb_hashtab()61 if (this->hashtab_[i] != NULL) in ~Gdb_hashtab()62 delete this->hashtab_[i]; in ~Gdb_hashtab()63 delete[] this->hashtab_; in ~Gdb_hashtab()97 { return this->hashtab_[n]; } in operator []()110 if (this->hashtab_[index] == NULL in find_slot()111 || this->hashtab_[index]->equal(symbol)) in find_slot()112 return &this->hashtab_[index]; in find_slot()125 this->hashtab_ = new T*[this->capacity_]; in expand()126 memset(this->hashtab_, 0, this->capacity_ * sizeof(T*)); in expand()[all …]