HomeSort by relevance Sort by last modified time
    Searched refs:patchlevel (Results 1 - 25 of 31) sorted by null

1 2

  /external/vixl/src/
compiler-intrinsics-vixl.h 40 #define GCC_VERSION_OR_NEWER(major, minor, patchlevel) \
42 ((major) * (MAJOR) + ((minor)) * (MINOR) + (patchlevel)))
44 #define GCC_VERSION_OR_NEWER(major, minor, patchlevel) \
46 ((major) * (MAJOR) + ((minor)) * (MINOR) + (patchlevel)))
48 #define GCC_VERSION_OR_NEWER(major, minor, patchlevel) 0
64 // https://gcc.gnu.org/onlinedocs/gcc-$MAJOR.$MINOR.$PATCHLEVEL/gcc//Other-Builtins.html
  /external/python/cpython2/Doc/
conf.py 23 # We look for the Include/patchlevel.h file in the current Python source tree
25 import patchlevel
26 version, release = patchlevel.get_version_info()
Makefile 11 DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py)
make.bat 40 if "%DISTVERSION%" EQU "" for /f "usebackq" %%v in (`%PYTHON% tools/extensions/patchlevel.py`) do set DISTVERSION=%%v
  /external/python/cpython3/Doc/
conf.py 23 # We look for the Include/patchlevel.h file in the current Python source tree
25 import patchlevel
26 version, release = patchlevel.get_version_info()
Makefile 13 DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py)
make.bat 57 if "%DISTVERSION%" EQU "" for /f "usebackq" %%v in (`%PYTHON% tools/extensions/patchlevel.py`) do set DISTVERSION=%%v
  /external/linux-kselftest/tools/testing/selftests/x86/
test_syscall_vdso.c 135 static void get_kernel_version(int *version, int *patchlevel)
146 ret = sscanf(utsname.release, "%d.%d.%d", version, patchlevel,
417 int version, patchlevel; local
427 get_kernel_version(&version, &patchlevel);
428 clobber_ok = version < 4 || (version == 4 && patchlevel < 17);
  /external/v8/include/
v8config.h 43 # define V8_GNUC_PREREQ(major, minor, patchlevel) \
45 ((major) * 10000 + (minor) * 100 + (patchlevel)))
47 # define V8_GNUC_PREREQ(major, minor, patchlevel) \
49 ((major) * 10000 + (minor) * 100 + (patchlevel)))
51 # define V8_GNUC_PREREQ(major, minor, patchlevel) 0
  /external/python/cpython2/Lib/idlelib/
macosxSupport.py 81 patchlevel = root.tk.call('info', 'patchlevel')
82 if patchlevel not in ('8.5.7', '8.5.9'):
87 r" for current information.".format(patchlevel))
203 tkversion = root.tk.eval('info patchlevel')
  /external/python/cpython3/Lib/idlelib/
macosx.py 81 patchlevel = root.tk.call('info', 'patchlevel')
82 if patchlevel not in ('8.5.7', '8.5.9'):
87 " for current information.".format(patchlevel))
  /external/python/cpython2/Doc/tools/extensions/
patchlevel.py 3 patchlevel.py
6 Extract version info from Include/patchlevel.h.
18 patchlevel_h = os.path.join(srcdir, '..', 'Include', 'patchlevel.h')
66 print >>sys.stderr, 'Can\'t get version info from Include/patchlevel.h, ' \
  /external/python/cpython3/Doc/tools/extensions/
patchlevel.py 3 patchlevel.py
6 Extract version info from Include/patchlevel.h.
20 patchlevel_h = os.path.join(srcdir, '..', 'Include', 'patchlevel.h')
63 print('Can\'t get version info from Include/patchlevel.h, ' \
  /external/python/cpython2/Lib/lib-tk/test/test_ttk/
support.py 77 patchlevel = tcl.call('info', 'patchlevel')
78 m = re.match(r'(\d+)\.(\d+)([ab.])(\d+)$', patchlevel)
  /external/python/cpython3/Lib/tkinter/test/
support.py 77 patchlevel = tcl.call('info', 'patchlevel')
78 m = re.fullmatch(r'(\d+)\.(\d+)([ab.])(\d+)', patchlevel)
widget_tests.py 548 print('patchlevel =', tcl.call('info', 'patchlevel'))
  /bionic/libc/kernel/uapi/linux/raid/
md_u.h 50 int patchlevel; member in struct:mdu_version_s
  /external/kernel-headers/original/uapi/linux/raid/
md_u.h 22 * Different patchlevel versions are downward and upward compatible.
74 int patchlevel; member in struct:mdu_version_s
  /external/libcxx/utils/libcxx/
compiler.py 84 major_ver = minor_ver = patchlevel = None
92 patchlevel = macros['__clang_patchlevel__']
97 patchlevel = macros['__GNUC_PATCHLEVEL__']
99 self.version = (major_ver, minor_ver, patchlevel)
  /external/linux-kselftest/tools/testing/selftests/net/
psock_tpacket.c 850 void get_kernel_version(int *version, int *patchlevel)
861 ret = sscanf(utsname.release, "%d.%d.%d", version, patchlevel,
875 int version, patchlevel; local
877 get_kernel_version(&version, &patchlevel);
886 if (version > 4 || (version == 4 && patchlevel >= 11))
  /external/python/cpython2/Lib/lib-tk/test/
widget_tests.py 566 print 'patchlevel =', tcl.call('info', 'patchlevel')
  /external/python/cpython2/Lib/test/
pythoninfo.py 319 patchlevel = tcl.call('info', 'patchlevel')
320 info_add('tkinter.info_patchlevel', patchlevel)
test_tcl.py 27 patchlevel = tcl.call('info', 'patchlevel')
28 m = re.match(r'(\d+)\.(\d+)([ab.])(\d+)$', patchlevel)
769 print 'patchlevel =', tcl.call('info', 'patchlevel')
  /external/python/cpython3/Lib/test/
pythoninfo.py 361 patchlevel = tcl.call('info', 'patchlevel')
362 info_add('tkinter.info_patchlevel', patchlevel)
  /external/ppp/pppd/
Makefile.linux 19 ipxcp.h lcp.h magic.h md5.h patchlevel.h pathnames.h pppd.h \

Completed in 8986 milliseconds

1 2