ShmP 13 WordTree.cpp char* ShmP; ShmP 118 WordTree.cpp new_node = new(reinterpret_cast<node*>(ShmP)) node; ShmP 119 WordTree.cpp ShmP += sizeof(node); // ポインタ更新 ShmP 124 WordTree.cpp new_node->word = new(ShmP) char[sz]; ShmP 125 WordTree.cpp std::strcpy((char*) ShmP, new_word.c_str()); ShmP 126 WordTree.cpp ShmP += sz; // ポインタ更新 ShmP 130 WordTree.cpp new_node->fpos = new(reinterpret_cast<wpos*>(ShmP)) ShmP 133 WordTree.cpp ShmP += sizeof(wpos); // ポインタ更新 ShmP 144 WordTree.cpp (new_node->lpos)->next = new(reinterpret_cast<wpos*>(ShmP)) ShmP 147 WordTree.cpp ShmP += sizeof(wpos); // ポインタ更新 ShmP 28 WordTreeBuilderDaemon.cpp extern char* ShmP; ShmP 218 WordTreeBuilderDaemon.cpp ShmP = static_cast<char*>(pt); ShmP 220 WordTreeBuilderDaemon.cpp << (void*) ShmP << std::endl; ShmP 243 WordTreeBuilderDaemon.cpp char* lmsp = ShmP; // 見出語形ツリー入口ポインタを退避 ShmP 245 WordTreeBuilderDaemon.cpp ShmP += sizeof(tree); // ポインタ更新 ShmP 271 WordTreeBuilderDaemon.cpp << (void*) ShmP << std::endl; ShmP 275 WordTreeBuilderDaemon.cpp << ShmP - lmsp << " (" << std::dec << ShmP - lmsp << ")" << std::endl; ShmP 285 WordTreeBuilderDaemon.cpp char* apsp = ShmP; // 出現形ツリー入口ポインタを退避 ShmP 287 WordTreeBuilderDaemon.cpp ShmP += sizeof(tree); // ポインタ更新 ShmP 313 WordTreeBuilderDaemon.cpp << (void*) ShmP << std::endl; ShmP 317 WordTreeBuilderDaemon.cpp << ShmP - apsp << " (" << std::dec << ShmP - apsp << ")" << std::endl;