Lines Matching refs:pe
358 struct lws_fts_entry *e, **pe;
373 pe = &parent->child_list;
374 while (*pe) {
375 assert((*pe)->parent == parent);
376 if ((*pe)->c > c) {
378 e->sibling = *pe;
379 *pe = e;
382 pe = &(*pe)->sibling;
385 if (!*pe) {
388 *pe = e;
720 struct lws_fts_entry **pe = &e->child_list;
721 while (*pe) {
722 assert((*pe)->parent == e);
724 pe = &(*pe)->sibling;
1252 struct lws_fts_entry **pe, *te1, *te2;
1258 pe = &e->child_list;
1259 while (*pe) {
1261 te1 = *pe;
1268 *pe = te2;
1273 pe = &(*pe)->sibling;