Lines Matching defs:depth
23 ContextAccess(int depth, int index, bool immutable)
24 : immutable_(immutable), depth_(depth), index_(index) {
25 DCHECK(0 <= depth && depth <= kMaxUInt16);
28 int depth() const { return depth_; }
152 const Operator* LoadContext(uint16_t depth, uint32_t index, bool immutable) {
153 ContextAccess access(depth, index, immutable);
157 const Operator* StoreContext(uint16_t depth, uint32_t index) {
158 ContextAccess access(depth, index, false);
204 return os << val.depth() << "," << val.index()
208 return (val.depth() << 16) | (val.index() & 0xffff);
211 return a.immutable() == b.immutable() && a.depth() == b.depth() &&