Home | History | Annotate | Download | only in gold

Lines Matching refs:psd

178       Stringdata* psd = this->strings_.front();
179 if (len > psd->alc - psd->len)
183 char* ret = psd->data + psd->len;
188 psd->len += len;
194 Stringdata* psd = reinterpret_cast<Stringdata*>(new char[alc]);
195 psd->alc = alc - sizeof(Stringdata);
196 memcpy(psd->data, s, len - sizeof(Stringpool_char));
197 memset(psd->data + len - sizeof(Stringpool_char), 0,
199 psd->len = len;
202 this->strings_.push_front(psd);
204 this->strings_.push_back(psd);
206 return reinterpret_cast<const Stringpool_char*>(psd->data);