Searched defs:NodeBase (Results 1 – 6 of 6) sorted by relevance
413 struct NodeBase { struct427 void append(NodeAddr<NodeBase*> NA); argument429 void init() { memset(this, 0, sizeof *this); } in init()430 void setNext(NodeId N) { Next = N; } in setNext()434 uint16_t Reserved;435 NodeId Next; // Id of the next node in the circular chain.439 struct Def_struct {442 struct PhiU_struct {445 struct Code_struct {470 static_assert(sizeof(NodeBase) <= NodeAllocator::NodeMemSize, argument
498 static auto True = [] (NodeAddr<NodeBase*>) -> bool { return true; }; in members()
450 struct NodeBase { struct465 void append(NodeAddr<NodeBase*> NA); argument468 void init() { memset(this, 0, sizeof *this); } in init()470 void setNext(NodeId N) { Next = N; } in setNext()474 uint16_t Reserved;475 NodeId Next; // Id of the next node in the circular chain.479 struct Def_struct {482 struct PhiU_struct {485 struct Code_struct {510 static_assert(sizeof(NodeBase) <= NodeAllocator::NodeMemSize, argument
547 static auto True = [] (NodeAddr<NodeBase*>) -> bool { return true; }; in members()
671 private static class NodeBase<T> { class in RegexLookup676 public NodeBase(Finder finder, T value) { in NodeBase() method in RegexLookup.NodeBase
13 class NodeBase(object): class