Lines Matching refs:m
325 m = re.search(r"GPIO-(.*)_Modes.xml", gpio_file.name)
326 gpio_ip = m.group(1)
356 m = re.search(r"^[A-Z0-9]+_REMAP(\d+)", name)
357 if not m:
381 m = re.search(r"^GPIO_AF(\d+)_[A-Z0-9]+", value.text)
382 if not m:
388 af_n = int(m.group(1))
490 m = re.search(r"^P([A-Z])(\d+)(.*)$", pin_name)
491 if not m:
494 pin_port = m.group(1).lower()
495 pin_number = int(m.group(2))
496 pin_mod = m.group(3).lower() if m.group(3) in PIN_MODS else ""
648 m = re.search(af["match"], signal["name"])
649 if not m: