Searched refs:kDepthBits (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/llvm/compiler-rt/lib/msan/
H A Dmsan_origin.h65 return (raw_id_ >> kDepthShift) == (1 << kDepthBits);
69 return (raw_id_ >> kDepthShift) > (1 << kDepthBits);
118 CHECK(depth < (1 << kDepthBits));
145 static const int kDepthBits = 3; local
146 static const int kDepthShift = 32 - kDepthBits - 1;
159 return (raw_id_ >> kDepthShift) & ((1 << kDepthBits) - 1);
163 static const int kMaxDepth = (1 << kDepthBits) - 1;
/openbsd-current/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddfsan_origin.h107 static const int kDepthBits = 4; member in class:__dfsan::Origin
108 static const int kDepthShift = 32 - kDepthBits;
110 static const u32 kChainedIdMask = ((u32)-1) >> kDepthBits;
118 return (raw_id_ >> kDepthShift) & ((1 << kDepthBits) - 1);
122 static const int kMaxDepth = (1 << kDepthBits) - 1;

Completed in 123 milliseconds