Lines Matching refs:m
270 m = re.search(r"GPIO-(.*)_Modes.xml", gpio_file.name)
271 gpio_ip = m.group(1)
298 m = re.search(r"^[A-Z0-9]+_REMAP(\d+)", name)
299 if not m:
323 m = re.search(r"^GPIO_AF(\d+)_[A-Z0-9]+", value.text)
324 if not m:
330 af_n = int(m.group(1))
429 m = re.search(r"^P([A-Z])(\d+)(.*)$", pin_name)
430 if not m:
433 pin_port = m.group(1).lower()
434 pin_number = int(m.group(2))
435 pin_mod = m.group(3).lower() if m.group(3) in PIN_MODS else ""
540 m = re.search(af["match"], signal["name"])
541 if not m: