| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/util/ |
| H A D | vk_util.c | 36 int patch = patch_string ? atoi(patch_string + 1) : 0; local in function:vk_get_driver_version 38 if (patch == 0) { 39 patch = 99; 46 --patch; 48 return VK_MAKE_VERSION(major, minor, patch); 62 int patch = patch_str ? atoi(patch_str + 1) : 0; local in function:vk_get_version_override 65 if (major < 1 || minor < 0 || patch < 0 || minor > 1023 || patch > 4095) 68 return VK_MAKE_VERSION(major, minor, patch);
|
| /xsrc/external/mit/MesaLib/dist/bin/ |
| H A D | post_version_test.py | 28 @mock.patch('bin.post_version.subprocess.run', mock.Mock()) 34 with mock.patch('bin.post_version.subprocess.run', mock.Mock()), \ 35 mock.patch('bin.post_version.pathlib', mock.MagicMock()): 45 with mock.patch('bin.post_version.csv.reader', mock.Mock(return_value=data.copy())), \ 46 mock.patch('bin.post_version.csv.writer', mock.Mock(return_value=m)): 60 with mock.patch('bin.post_version.csv.reader', mock.Mock(return_value=data.copy())), \ 61 mock.patch('bin.post_version.csv.writer', mock.Mock(return_value=m)):
|
| /xsrc/external/mit/brotli/dist/c/include/brotli/ |
| H A D | port.h | 28 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) \ 29 (BROTLI_GNUC_VERSION >= BROTLI_MAKE_VERSION(major, minor, patch)) 31 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) (0) 50 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) (0) 52 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \ 53 (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch))) 55 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \ 56 (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch))) 58 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \ 73 #define BROTLI_INTEL_VERSION_CHECK(major, minor, patch) \ [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/ |
| H A D | tu_extensions.py | 87 self.patch = int(split[2]) 89 self.patch = None 94 assert self.patch is None or self.patch < 4096 99 if self.patch is not None: 100 ver_list.append(str(self.patch)) 104 patch = self.patch if self.patch is not None else 0 105 ver_list = [str(self.major), str(self.minor), str(patch)] [all...] |
| /xsrc/external/mit/MesaLib/dist/src/vulkan/util/ |
| H A D | vk_extensions.py | 42 self.patch = int(split[2]) 44 self.patch = None 49 assert self.patch is None or self.patch < 4096 54 if self.patch is not None: 55 ver_list.append(str(self.patch)) 59 patch = self.patch if self.patch is not None else 0 60 ver_list = [str(self.major), str(self.minor), str(patch)] [all...] |
| H A D | vk_util.c | 40 int patch = patch_string ? atoi(patch_string + 1) : 0; local in function:vk_get_driver_version 42 if (patch == 0) { 43 patch = 99; 50 --patch; 52 return VK_MAKE_VERSION(major, minor, patch); 66 int patch = patch_str ? atoi(patch_str + 1) : 0; local in function:vk_get_version_override 69 if (major < 1 || minor < 0 || patch < 0 || minor > 1023 || patch > 4095) 72 return VK_MAKE_VERSION(major, minor, patch);
|
| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| H A D | patchlist.h | 41 #include "patch.h" 63 Patch *patch; member in class:Patchlist 78 return patch->get_uorder(); 85 return patch->get_vorder();
|
| H A D | patchlist.cc | 46 #include "patch.h" 50 patch = 0; 52 patch = new Patch( q, pta, ptb, patch ); 65 patch = 0; 66 for( Patch *p = upper.patch; p; p = p->next ) 67 patch = new Patch( *p, param, value, patch ); 88 while( patch ) { 89 Patch *p = patch; [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/ |
| H A D | xorgVersion.h | 36 # define XORG_VERSION_NUMERIC(major,minor,patch,snap,dummy) \ 37 (((major) * 10000000) + ((minor) * 100000) + ((patch) * 1000) + snap)
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/ |
| H A D | xorgVersion.h | 36 #define XORG_VERSION_NUMERIC(major,minor,patch,snap,dummy) \ 37 (((major) * 10000000) + ((minor) * 100000) + ((patch) * 1000) + snap)
|
| /xsrc/external/mit/freetype/dist/builds/meson/ |
| H A D | extract_freetype_version.py | 6 `--minor` or `--patch` can be used to only print one of these values 33 patch = None 51 assert patch == None, "FREETYPE_PATCH appears more than once!" 52 patch = m.group(1) 56 major and minor and patch 59 return (major, minor, patch) 77 "--patch", 79 help="Only print the patch version number.", 98 elif args.patch:
|
| H A D | extract_libtool_version.py | 6 `--major`, `--minor` or `--patch` can be used to only print one of these 29 patch = None 38 patch = m.group(3) 42 major and minor and patch 45 return (major, minor, patch) 63 "--patch", 65 help="Only print the patch version number.", 89 elif args.patch:
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | anv_extensions.py | 50 # Supported API versions. Each one is the maximum patch version for the given 182 self.patch = int(split[2]) 184 self.patch = None 189 assert self.patch is None or self.patch < 4096 194 if self.patch is not None: 195 ver_list.append(str(self.patch)) 199 patch = self.patch if self.patch i [all...] |
| /xsrc/external/mit/freetype/dist/ |
| H A D | autogen.sh | 35 # tricky: some version numbers don't include a patch 37 patch=`echo $1 | sed -e 's/[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\).*/\1/g'` 38 if test "$patch" = "$1"; then 39 patch=`echo $1 | sed -e 's/[0-9][0-9]*\.[0-9][0-9]*\-p\([0-9][0-9]*\).*/\1/g'` 40 # if there isn't any patch number, default to 0 41 if test "$patch" = "$1"; then 42 patch=0 45 echo $patch 144 # We set freetype-patch to an empty value if it is zero.
|
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/ |
| H A D | radv_extensions.py | 148 self.patch = int(split[2]) 150 self.patch = None 155 assert self.patch is None or self.patch < 4096 160 if self.patch is not None: 161 ver_list.append(str(self.patch)) 165 patch = self.patch if self.patch is not None else 0 166 ver_list = [str(self.major), str(self.minor), str(patch)] [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/ |
| H A D | entry_x86_tls.h | 108 char patch[8] = { local in function:entry_patch_public 114 *((unsigned long *) (patch + 2)) = x86_current_tls(); 117 memcpy(entry, patch, sizeof(patch));
|
| /xsrc/external/mit/MesaLib/dist/bin/pick/ |
| H A D | core_test.py | 274 with mock.patch('bin.pick.core.asyncio.create_subprocess_exec', s.mock): 275 with mock.patch('bin.pick.core.is_commit_in_branch', self.return_true): 286 with mock.patch('bin.pick.core.asyncio.create_subprocess_exec', s.mock): 287 with mock.patch('bin.pick.core.is_commit_in_branch', self.return_false): 298 with mock.patch('bin.pick.core.asyncio.create_subprocess_exec', s.mock): 309 with mock.patch('bin.pick.core.asyncio.create_subprocess_exec', s.mock): 320 with mock.patch('bin.pick.core.asyncio.create_subprocess_exec', s.mock): 331 with mock.patch('bin.pick.core.asyncio.create_subprocess_exec', s.mock): 332 with mock.patch('bin.pick.core.is_commit_in_branch', self.return_true): 343 with mock.patch('bi [all...] |
| /xsrc/external/mit/freetype/dist/builds/cmake/ |
| H A D | testbuild.sh | 108 FT_Int patch = 0; 114 FT_Library_Version(library, &major, &minor, &patch); 117 || patch != FREETYPE_PATCH) 120 printf("FT_Library_Version: %d.%d.%d\n", major, minor, patch);
|
| /xsrc/external/mit/xf86-video-amdgpu/dist/ |
| H A D | README.md | 11 Please submit bug reports there and use merge requests for patch submission. 14 [further patch submission instructions](https://www.x.org/wiki/Development/Documentation/SubmittingPatches)
|
| /xsrc/external/mit/libXcursor/dist/ |
| H A D | README.md | 15 For patch submission instructions, see:
|
| /xsrc/external/mit/libXdmcp/dist/ |
| H A D | README.md | 15 For patch submission instructions, see:
|
| /xsrc/external/mit/libXfixes/dist/ |
| H A D | README.md | 15 For patch submission instructions, see:
|
| /xsrc/external/mit/libXi/dist/ |
| H A D | README.md | 15 For patch submission instructions, see:
|
| /xsrc/external/mit/libXpresent/dist/ |
| H A D | README.md | 15 For patch submission instructions, see:
|
| /xsrc/external/mit/libSM/dist/ |
| H A D | README.md | 15 For patch submission instructions, see:
|