Lines Matching defs:depth
52 // The "zzz" bits of chained origin id are used to store the length (or depth)
111 int depth = prev.isChainedOrigin() ? prev.depth() : 0;
112 // depth is the length of the chain minus 1.
113 // origin_history_size of 0 means unlimited depth.
115 if (depth + 1 >= flags()->origin_history_size) {
118 ++depth;
119 CHECK(depth < (1 << kDepthBits));
138 return Origin((1 << kHeapShift) | (depth << kDepthShift) | chained_id);
158 int depth() const {