Home | History | Annotate | Download | only in dist

Lines Matching defs:VERSION

27     """ Return BROTLI_VERSION string as defined in 'common/version.h' file. """
28 version_file_path = os.path.join(CURR_DIR, 'c', 'common', 'version.h')
29 version = 0
34 version = int(m.group(1), 16)
35 if version == 0:
37 # Semantic version is calculated as (MAJOR << 24) | (MINOR << 12) | PATCH.
38 major = version >> 24
39 minor = (version >> 12) & 0xFFF
40 patch = version & 0xFFF
137 VERSION = get_version()
220 'c/common/version.h',
283 version=VERSION,