HomeSort by relevance Sort by last modified time
    Searched defs:kNullNode (Results 1 - 2 of 2) sorted by null

  /external/libchrome/sandbox/linux/bpf_dsl/
codegen.h 61 // kNullNode represents the "null" node; i.e., the reserved node
63 static const Node kNullNode = -1;
75 Node jt = kNullNode,
76 Node jf = kNullNode);
codegen.cc 52 const CodeGen::Node CodeGen::kNullNode;
70 auto res = memos_.insert(std::make_pair(MemoKey(code, k, jt, jf), kNullNode));
93 CHECK_EQ(kNullNode, jf) << "Non-branch instructions shouldn't provide jf";
95 CHECK_EQ(kNullNode, jt) << "Return instructions shouldn't provide jt";

Completed in 279 milliseconds