Lines Matching defs:pc
46 bool IsIgnored(uptr pc, bool *pc_in_ignored_lib) const;
49 bool IsPcInstrumented(uptr pc) const;
66 bool IsInRange(uptr pc) const {
67 return (pc >= begin && pc < atomic_load(&end, memory_order_acquire));
101 inline bool LibIgnore::IsIgnored(uptr pc, bool *pc_in_ignored_lib) const {
104 if (ignored_code_ranges_[i].IsInRange(pc)) {
110 if (track_instrumented_libs_ && !IsPcInstrumented(pc))
115 inline bool LibIgnore::IsPcInstrumented(uptr pc) const {
118 if (instrumented_code_ranges_[i].IsInRange(pc))