Searched refs:ptrn (Results 1 – 6 of 6) sorted by relevance
/external/deqp/scripts/src_util/ |
D | check_license.py | 72 for ptrn in SOURCE_FILES: 73 if fnmatch(file, ptrn):
|
/external/deqp/scripts/ |
D | gen_android_bp.py | 88 for ptrn in patterns: 89 if fnmatch(filename, ptrn):
|
/external/mesa3d/src/mesa/main/ |
D | pack.c | 101 GLubyte *ptrn = (GLubyte *) _mesa_unpack_image(2, 32, 32, 1, GL_COLOR_INDEX, in _mesa_unpack_polygon_stipple() local 103 if (ptrn) { in _mesa_unpack_polygon_stipple() 107 GLubyte *p = ptrn; in _mesa_unpack_polygon_stipple() 116 free(ptrn); in _mesa_unpack_polygon_stipple() 132 GLubyte ptrn[32*4]; in _mesa_pack_polygon_stipple() local 135 ptrn[i * 4 + 0] = (GLubyte) ((pattern[i] >> 24) & 0xff); in _mesa_pack_polygon_stipple() 136 ptrn[i * 4 + 1] = (GLubyte) ((pattern[i] >> 16) & 0xff); in _mesa_pack_polygon_stipple() 137 ptrn[i * 4 + 2] = (GLubyte) ((pattern[i] >> 8 ) & 0xff); in _mesa_pack_polygon_stipple() 138 ptrn[i * 4 + 3] = (GLubyte) ((pattern[i] ) & 0xff); in _mesa_pack_polygon_stipple() 141 _mesa_pack_bitmap(32, 32, ptrn, dest, packing); in _mesa_pack_polygon_stipple()
|
/external/deqp/external/vulkancts/scripts/ |
D | gen_framework_sc.py | 541 ptrn = r'typedef (struct|union)(\s*' + IDENT_PTRN + r')?\s*{([^}]*)}\s*(' + IDENT_PTRN + r')\s*;' 542 regPtrn = re.compile(ptrn) 602 ptrn = r'\s*typedef\s+' + object.name + r'\s+([^;]+)' 603 stash = re.findall(ptrn, src) 631 ptrn = r'VKAPI_ATTR\s+(' + TYPE_PTRN + ')\s+VKAPI_CALL\s+(' + IDENT_PTRN + r')\s*\(([^)]*)\)\s*;' 632 matches = re.findall(ptrn, src) 644 ptrn = r'VKAPI_ATTR\s+(' + TYPE_PTRN + ')\s+VKAPI_CALL\s+(' + IDENT_PTRN + r')\s*\(([^)]*)\)\s*;' 645 regPtrn = re.compile(ptrn) 656 ptrn = r'#define\s+[A-Z0-9_]+_EXTENSION_NAME\s+"([^"]+)"' 659 for part in re.finditer(ptrn, src): [all …]
|
/external/deqp/scripts/android/ |
D | install_apk.py | 58 ptrn = re.compile(r'^([a-zA-Z0-9\.\-:]+)\s+.*product:([^\s]+)\s+model:([^\s]+)\s+device:([^\s]+)') 64 m = ptrn.match(line.decode('utf-8'))
|
/external/scapy/scapy/layers/ |
D | dot11.py | 404 self.ptrn = re.compile(pattern.encode()) 418 if not self.ptrn.match(pay):
|