Home | History | Annotate | Download | only in gcc

Lines Matching refs:m_val

95     sprintf (buffer, "%" PRId64 " (%s)", m_val,
126 if ((uint64_t)m_val - (uint64_t)other.m_val < 100
127 || (uint64_t)other.m_val - (uint64_t)m_val < 100)
129 if (!other.m_val)
131 int64_t ratio = (int64_t)m_val * 100 / other.m_val;
141 ret.m_val = streamer_read_gcov_count (ib);
151 streamer_write_gcov_count (ob, m_val);
160 streamer_write_gcov_count_stream (ob, m_val);
176 if (m_val == 0)
178 else if (m_val == max_probability)
181 buffer += sprintf (buffer, "%3.1f%%", (double)m_val * 100 / max_probability);
218 if ((uint64_t)m_val - (uint64_t)other.m_val < max_probability / 1000
219 || (uint64_t)other.m_val - (uint64_t)max_probability < 1000)
221 if (!other.m_val)
223 int64_t ratio = (int64_t)m_val * 100 / other.m_val;
234 uint32_t d = m_val > other.m_val ? m_val - other.m_val : other.m_val - m_val;
244 ret.m_val = streamer_read_uhwi (ib);
254 streamer_write_uhwi (ob, m_val);
263 streamer_write_uhwi_stream (ob, m_val);
317 if (!safe_scale_64bit (!entry_bb_count.m_val ? m_val + 1 : m_val,
318 CGRAPH_FREQ_BASE, MAX (1, entry_bb_count.m_val), &scale))
352 if (m_val == in.m_val)
356 if (!in.m_val)
358 if (!m_val)
360 return m_val * 4;
362 return (sreal)m_val / (sreal)in.m_val;
442 ret.m_val = MIN (v, (gcov_type)max_count);
478 return ((sreal)m_val) >> (n_bits - 2);