HomeSort by: relevance | last modified time | path
    Searched refs:patch (Results 1 - 25 of 188) sorted by relevancy

1 2 3 4 5 6 7 8

  /xsrc/external/mit/MesaLib.old/dist/src/vulkan/util/
vk_util.c 36 int patch = patch_string ? atoi(patch_string + 1) : 0; local
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
65 if (major < 1 || minor < 0 || patch < 0 || minor > 1023 || patch > 4095)
68 return VK_MAKE_VERSION(major, minor, patch);
  /xsrc/external/mit/brotli/dist/c/include/brotli/
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/dist/src/vulkan/util/
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...]
vk_util.c 40 int patch = patch_string ? atoi(patch_string + 1) : 0; local
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
69 if (major < 1 || minor < 0 || patch < 0 || minor > 1023 || patch > 4095)
72 return VK_MAKE_VERSION(major, minor, patch);
  /xsrc/external/mit/MesaLib/dist/bin/
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)):
gen_release_notes_test.py 158 with mock.patch('bin.gen_release_notes.asyncio.create_subprocess_exec', mock_exec), \
159 mock.patch('bin.gen_release_notes.gather_commits', mock.AsyncMock(return_value='sha\n')):
  /xsrc/external/mit/glu/dist/src/libnurbs/internals/
patchlist.h 41 #include "patch.h"
63 Patch *patch; member in class:Patchlist
78 return patch->get_uorder();
85 return patch->get_vorder();
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 )
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/
xorgVersion.h 36 #define XORG_VERSION_NUMERIC(major,minor,patch,snap,dummy) \
37 (((major) * 10000000) + ((minor) * 100000) + ((patch) * 1000) + snap)
xf86Module.h 123 CARD16 patchlevel; /* module-specific patch level */
138 CARD16 patchlevel; /* module-specific patch level */
144 #define MODULE_VERSION_NUMERIC(maj, min, patch) \
145 ((((maj) & 0xFF) << 24) | (((min) & 0xFF) << 16) | (patch & 0xFFFF))
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/
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/
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:
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:
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
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 is not None else
    [all...]
  /xsrc/external/mit/freetype/dist/
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/
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/freedreno/vulkan/
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.old/dist/src/mapi/
entry_x86_tls.h 108 char patch[8] = { local
114 *((unsigned long *) (patch + 2)) = x86_current_tls();
117 memcpy(entry, patch, sizeof(patch));
  /xsrc/external/mit/MesaLib/dist/bin/pick/
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('bin.pick.core.asyncio.create_subprocess_exec', s.mock)
    [all...]
  /xsrc/external/mit/freetype/dist/builds/cmake/
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/MesaLib/dist/src/glx/apple/
apple_glx.c 101 int major, minor, patch; local
106 if (!XAppleDRIQueryVersion(dpy, &major, &minor, &patch))
  /xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
apple_glx.c 101 int major, minor, patch; local
106 if (!XAppleDRIQueryVersion(dpy, &major, &minor, &patch))
  /xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/
build-piglit.sh 8 patch -p1 <$OLDPWD/.gitlab-ci/piglit/disable-vs_in.diff
  /xsrc/external/mit/freetype/dist/builds/
toplevel.mk 191 patch := $(subst |,$(space),$(work)) macro
192 patch := $(firstword $(patch)) macro
194 # ifneq ($(findstring x0x,x$(patch)x),)
198 version := $(major).$(minor).$(patch)
199 winversion := $(major)$(minor)$(patch)
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
ir_set_program_inouts.cpp 96 bool is_patch_generic = var->data.patch &&
165 var->data.mode == ir_var_shader_out && !var->data.patch) {
171 var->data.mode == ir_var_shader_in && !var->data.patch) {
205 * For tessellation control shaders all inputs and non-patch outputs are
206 * arrays. For tessellation evaluation shaders non-patch inputs are arrays.
234 var->data.mode == ir_var_shader_out && !var->data.patch) {
240 var->data.mode == ir_var_shader_in && !var->data.patch) {
323 if (var->data.patch)

Completed in 23 milliseconds

1 2 3 4 5 6 7 8