Lines Matching refs:re

3 import re
149 flush_batch_match = re.compile(r": flush_batch: (\S+): cleared=(\S+), gmem_reason=(\S+), num_draws=(\S+)")
150 framebuffer_match = re.compile(r": framebuffer: (\S+)x(\S+)x(\S+)@(\S+), nr_cbufs: (\S+)")
151 surface_match = re.compile(r": surface: (\S+)x(\S+)@(\S+), fmt=(\S+)")
154 gmem_match = re.compile(r": render_gmem: (\S+)x(\S+) bins of (\S+)x(\S+)")
155 sysmem_match = re.compile(r": render_sysmem")
156 state_restore_match = re.compile(r"\+(\S+): end_state_restore")
157 prologue_match = re.compile(r"\+(\S+): end_prologue")
158 binning_ib_match = re.compile(r"\+(\S+): end_binning_ib")
159 vsc_overflow_match = re.compile(r"\+(\S+): end_vsc_overflow_test")
160 draw_ib_match = re.compile(r"\+(\S+): end_draw_ib")
161 resolve_match = re.compile(r"\+(\S+): end_resolve")
163 start_clear_restore_match = re.compile(r"start_clear_restore: fast_cleared: (\S+)")
164 end_clear_restore_match = re.compile(r"\+(\S+): end_clear_restore")
167 compute_match = re.compile(r": start_compute")
168 blit_match = re.compile(r": start_blit")
171 elapsed_match = re.compile(r"ELAPSED: (\S+) ns")
172 eof_match = re.compile(r"END OF FRAME (\S+)")
188 match = re.search(flush_batch_match, line)
197 match = re.search(framebuffer_match, line)
207 match = re.search(surface_match, line)
216 match = re.search(gmem_match, line)
226 match = re.search(sysmem_match, line)
232 match = re.search(state_restore_match, line)
237 match = re.search(prologue_match, line)
242 match = re.search(binning_ib_match, line)
248 match = re.search(vsc_overflow_match, line)
254 match = re.search(draw_ib_match, line)
259 match = re.search(resolve_match, line)
265 match = re.search(start_clear_restore_match, line)
270 match = re.search(end_clear_restore_match, line)
275 match = re.search(compute_match, line)
280 match = re.search(blit_match, line)
285 match = re.search(eof_match, line)
294 match = re.search(elapsed_match, line)