Home | History | Annotate | Download | only in share

Lines Matching refs:share_buf_

57   share_buf_ = NULL;
60 // share_buf_, no need to delete them.
66 // Based on share_buf_, no need to delete them.
87 share_buf_ = new size_t[mtrx_nd_size + dmi_size + matrix_size + dep_size];
90 NULL == share_buf_)
94 mtrx_nd_pool_ = reinterpret_cast<MatrixNode*>(share_buf_);
95 dmi_pool_ = reinterpret_cast<DictMatchInfo*>(share_buf_ + mtrx_nd_size);
96 matrix_ = reinterpret_cast<MatrixRow*>(share_buf_ + mtrx_nd_size + dmi_size);
98 (share_buf_ + mtrx_nd_size + dmi_size + matrix_size);
101 npre_items_ = reinterpret_cast<NPredictItem*>(share_buf_);
117 if (NULL != share_buf_)
118 delete [] share_buf_;