Home
last modified time | relevance | path

Searched refs:version (Results 1 - 25 of 4171) sorted by relevance

12345678910>>...167

/third_party/rust/crates/rust-openssl/openssl/
H A Dbuild.rs20 let version = u64::from_str_radix(&v, 16).unwrap(); in main()
22 if version >= 0x2_05_00_00_0 { in main()
25 if version >= 0x2_05_01_00_0 { in main()
28 if version >= 0x2_06_01_00_0 { in main()
31 if version >= 0x2_07_00_00_0 { in main()
34 if version >= 0x2_07_01_00_0 { in main()
37 if version >= 0x2_07_03_00_0 { in main()
40 if version >= 0x2_08_00_00_0 { in main()
43 if version >= 0x2_09_01_00_0 { in main()
46 if version > in main()
[all...]
/third_party/node/deps/npm/test/lib/commands/
H A Dls.js23 version: '1.0.0',
32 version: '1.0.0',
38 version: '1.0.0',
50 version: '1.0.0',
60 version: '1.0.0',
70 version: '2.0.0',
79 version: '1.0.0',
86 version: '1.0.0',
138 version: '1.0.0',
164 'should output tree missing name/version o
[all...]
H A Dfund.js4 const version = '1.0.0'
14 version,
25 version,
35 version,
44 version,
54 version,
66 version,
75 version,
82 version,
93 version,
[all...]
H A Dsbom.js30 sbom.metadata.tools[0].version = '10.0.0'
42 version: '1.0.0',
51 version: '1.0.0',
59 version: '1.0.0',
97 version: '1.0.0',
120 version: '1.0.0',
143 version: '1.0.0',
168 version: '1.0.0',
193 version: '1.0.0',
215 version
[all...]
/third_party/node/deps/npm/test/fixtures/
H A Deresolve-explanations.js12 version: '1.0.0',
26 version: '2.0.0',
40 version: '1.0.0',
41 whileInstalling: { name: '@isaacs/peer-dep-cycle-a', version: '1.0.0' },
50 version: '1.0.0',
51 whileInstalling: { name: '@isaacs/peer-dep-cycle-a', version: '1.0.0' },
60 version: '1.0.0',
90 version: '1.0.0',
92 whileInstalling: { name: '@isaacs/peer-dep-cycle-b', version: '1.0.0' },
100 version
[all...]
/third_party/rust/crates/version_check/src/
H A Dversion.rs8 /// Reads the version of the running compiler. If it cannot be determined
18 /// None => format!("Failed to read the version.")
23 .and_then(|(version, _)| version) in read()
24 .and_then(|version| Version::parse(&version)) in read()
28 /// Parse a Rust release version (of the form
30 /// any. Returns `None` if `version` is not a valid Rust version string.
37 /// let version
[all...]
H A Dchannel.rs31 .and_then(|(version, _)| version) in read()
32 .and_then(|version| Channel::parse(&version)) in read()
35 /// Parse a Rust release channel from a Rust release version string (of the
36 /// form `major[.minor[.patch[-channel]]]`). Returns `None` if `version` is
37 /// not a valid Rust version string.
56 pub fn parse(version: &str) -> Option<Channel> { in parse()
57 let version = version in parse()
[all...]
/third_party/libcoap/tests/
H A Dtest_tls.c44 #include <mbedtls/version.h>
60 coap_tls_version_t version; in t_tls2() local
62 memset(&version, 0, sizeof(coap_tls_version_t)); in t_tls2()
65 version.version = SSLeay(); in t_tls2()
66 version.type = COAP_TLS_LIBRARY_OPENSSL; in t_tls2()
69 version.version = 0; in t_tls2()
81 version.version in t_tls2()
[all...]
/third_party/skia/third_party/externals/angle2/src/gpu_info_util/
H A DSystemInfo_unittest.cpp18 // Test AMD Brahma driver version parsing
21 std::string version; in TEST() local
23 // Check parsing fails when no version string is present. in TEST()
24 ASSERT_FALSE(ParseAMDBrahmaDriverVersion("I am a lumberjack.", &version)); in TEST()
25 ASSERT_EQ("", version); in TEST()
27 // Check parsing when the string is just the version string, with and without dots in TEST()
28 ASSERT_TRUE(ParseAMDBrahmaDriverVersion("42", &version)); in TEST()
29 ASSERT_EQ("42", version); in TEST()
30 ASSERT_TRUE(ParseAMDBrahmaDriverVersion("42.0.56", &version)); in TEST()
31 ASSERT_EQ("42.0.56", version); in TEST()
45 std::string version; TEST() local
[all...]
H A DSystemInfo_linux.cpp36 // Scan /sys/module/amdgpu/version.
37 bool GetAMDBrahmaDriverVersion(std::string *version) in GetAMDBrahmaDriverVersion() argument
39 *version = ""; in GetAMDBrahmaDriverVersion()
42 return ReadWholeFile("/sys/module/amdgpu/version", &content) && in GetAMDBrahmaDriverVersion()
43 ParseAMDBrahmaDriverVersion(content, version); in GetAMDBrahmaDriverVersion()
47 bool GetAMDCatalystDriverVersion(std::string *version) in GetAMDCatalystDriverVersion() argument
49 *version = ""; in GetAMDCatalystDriverVersion()
53 ParseAMDCatalystDriverVersion(content, version); in GetAMDCatalystDriverVersion()
59 bool GetNvidiaDriverVersionWithXNVCtrl(std::string *version) in GetNvidiaDriverVersionWithXNVCtrl() argument
95 // New GPUs might be added inside this loop, don't query for their driver version agai in GetSystemInfo()
103 std::string version; GetSystemInfo() local
118 std::string version; GetSystemInfo() local
131 std::string version; GetSystemInfo() local
[all...]
/third_party/python/Lib/
H A Dplatform.py35 # 1.0.8 - changed Windows support to read version from kernel32.dll
44 # 0.8.0 - added sys.version parser and various new access
49 # 0.6.2 - support for OpenVMS - requires version 1.5.2-V006 or higher and
86 # You can always get the latest version of this module at:
124 # Helper for comparing two version number strings.
126 # http://php.net/manual/en/function.version-compare.php
141 def _comparable_version(version):
143 for v in _component_re.split(version):
161 def libc_ver(executable=None, lib='', version='', chunksize=16384):
163 """ Tries to determine the libc version tha
942 def version(): global() function
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
H A DHorizontalHeaderTable.java38 version(0), enum constant
64 return this.data.readFixed(Offset.version.offset); in tableVersion()
148 return this.internalReadData().readFixed(Offset.version.offset); in tableVersion()
151 public void setTableVersion(int version) { in setTableVersion() argument
152 this.internalWriteData().writeFixed(Offset.version.offset, version); in setTableVersion()
159 public void setAscender(int version) { in setAscender() argument
160 this.internalWriteData().writeShort(Offset.Ascender.offset, version); in setAscender()
167 public void setDescender(int version) { in setDescender() argument
168 this.internalWriteData().writeShort(Offset.Descender.offset, version); in setDescender()
175 setLineGap(int version) setLineGap() argument
183 setAdvanceWidthMax(int version) setAdvanceWidthMax() argument
191 setMinLeftSideBearing(int version) setMinLeftSideBearing() argument
199 setMinRightSideBearing(int version) setMinRightSideBearing() argument
207 setXMaxExtent(int version) setXMaxExtent() argument
215 setCaretSlopeRise(int version) setCaretSlopeRise() argument
223 setCaretSlopeRun(int version) setCaretSlopeRun() argument
231 setCaretOffset(int version) setCaretOffset() argument
240 setMetricDataFormat(int version) setMetricDataFormat() argument
248 setNumberOfHMetrics(int version) setNumberOfHMetrics() argument
[all...]
/third_party/elfutils/lib/
H A Deu-config.h9 Software Foundation; either version 3 of the License, or (at
10 your option) any later version
15 Software Foundation; either version 2 of the License, or (at
16 your option) any later version
197 # define NEW_VERSION(name, version) \
199 __attribute__ ((symver (#name "@@" #version)));
200 # define OLD_VERSION(name, version) _OLD_VERSION1(name, __COUNTER__, version)
201 # define _OLD_VERSION1(name, num, version) _OLD_VERSION2(name, num, version)
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkApiVersion.cpp21 * \brief Vulkan api version.
32 ApiVersion unpackVersion (deUint32 version) in unpackVersion() argument
34 return ApiVersion(VK_API_VERSION_VARIANT(version), in unpackVersion()
35 VK_API_VERSION_MAJOR(version), in unpackVersion()
36 VK_API_VERSION_MINOR(version), in unpackVersion()
37 VK_API_VERSION_PATCH(version)); in unpackVersion()
40 deUint32 pack (const ApiVersion& version) in pack() argument
42 DE_ASSERT((version.variantNum & ~0x7) == 0); in pack()
43 DE_ASSERT((version.majorNum & ~0x7F) == 0); in pack()
44 DE_ASSERT((version in pack()
50 apiVersionClearPatch(deUint32 version) apiVersionClearPatch() argument
80 isApiVersionPredecessor(deUint32 version, deUint32 predVersion) isApiVersionPredecessor() argument
[all...]
/third_party/alsa-lib/include/
H A Dalsa-symbols.h8 * published by the Free Software Foundation; either version 2.1 of
9 * the License, or (at your option) any later version.
33 #define symbol_version(real, name, version) \
34 extern __typeof (real) real __attribute__((symver (#name "@" #version)))
35 #define default_symbol_version(real, name, version) \
36 extern __typeof (real) real __attribute__((symver (#name "@@" #version)))
38 #define symbol_version(real, name, version) \
39 __asm__ (".symver " ASM_NAME(#real) "," ASM_NAME(#name) "@" #version)
40 #define default_symbol_version(real, name, version) \
41 __asm__ (".symver " ASM_NAME(#real) "," ASM_NAME(#name) "@@" #version)
[all...]
H A Dglobal.h14 * published by the Free Software Foundation; either version 2.1 of
15 * the License, or (at your option) any later version.
62 #define __SND_DLSYM_VERSION(name, version) _ ## name ## version
65 * \brief Appends the build version to the name of a versioned dynamic symbol.
67 #define SND_DLSYM_BUILD_VERSION(name, version) char __SND_DLSYM_VERSION(name, version);
80 #define __SND_DLSYM_VERSION(prefix, name, version) _ ## prefix ## name ## version
83 * \brief Appends the build version t
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dcollationtailoring.cpp53 version[0] = version[1] = version[2] = version[3] = 0; in CollationTailoring()
86 CollationTailoring::makeBaseVersion(const UVersionInfo ucaVersion, UVersionInfo version) { in makeBaseVersion() argument
87 version[0] = UCOL_BUILDER_VERSION; in makeBaseVersion()
88 version[1] = (ucaVersion[0] << 3) + ucaVersion[1]; in makeBaseVersion()
89 version[2] = ucaVersion[2] << 6; in makeBaseVersion()
90 version[3] = 0; in makeBaseVersion()
95 version[ in setVersion()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationtailoring.cpp53 version[0] = version[1] = version[2] = version[3] = 0; in CollationTailoring()
86 CollationTailoring::makeBaseVersion(const UVersionInfo ucaVersion, UVersionInfo version) { in makeBaseVersion() argument
87 version[0] = UCOL_BUILDER_VERSION; in makeBaseVersion()
88 version[1] = (ucaVersion[0] << 3) + ucaVersion[1]; in makeBaseVersion()
89 version[2] = ucaVersion[2] << 6; in makeBaseVersion()
90 version[3] = 0; in makeBaseVersion()
95 version[ in setVersion()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationtailoring.cpp53 version[0] = version[1] = version[2] = version[3] = 0; in CollationTailoring()
86 CollationTailoring::makeBaseVersion(const UVersionInfo ucaVersion, UVersionInfo version) { in makeBaseVersion() argument
87 version[0] = UCOL_BUILDER_VERSION; in makeBaseVersion()
88 version[1] = (ucaVersion[0] << 3) + ucaVersion[1]; in makeBaseVersion()
89 version[2] = ucaVersion[2] << 6; in makeBaseVersion()
90 version[3] = 0; in makeBaseVersion()
95 version[ in setVersion()
[all...]
/third_party/libsnd/src/
H A Dcreate_symbols_file.py87 def linux_symbols (progname, version):
89 print ("libsndfile.so.%s" % version)
102 def darwin_symbols (progname, version):
111 def win32_symbols (progname, version, name):
119 def os2_symbols (progname, version, name):
121 print ("LIBRARY %s%s" % (name, re.sub ("\..*", "", version)))
133 def plain_symbols (progname, version, name):
150 print ("Usage : %s <target OS name> <libsndfile version>." % progname)
163 version = re.sub ("\.[a-z0-9]+$", "", sys.argv [2]) variable
166 linux_symbols (progname, version)
[all...]
/third_party/protobuf/ruby/
H A Dtravis-test.sh7 version=$1
11 if [ "$version" == "jruby-1.7" ] ; then
14 "rvm install $version && rvm use $version && rvm get head && \
19 elif [ "$version" == "ruby-2.6.0" -o "$version" == "ruby-2.7.0" ] ; then
21 "rvm install $version && rvm use $version && \
34 "rvm install $version --with-openssl-dir=`brew --prefix openssl` && \
35 rvm use $version
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A DShaderLang.cpp89 // Create a language specific version of parseables.
104 // Create a language specific version of a parse context.
106 int version, EProfile profile, EShSource source, in CreateParseContext()
116 return new TParseContext(symbolTable, intermediate, parsingBuiltIns, version, profile, spvVersion, in CreateParseContext()
121 return new HlslParseContext(symbolTable, intermediate, parsingBuiltIns, version, profile, spvVersion, in CreateParseContext()
134 int MapVersionToIndex(int version) in MapVersionToIndex() argument
138 switch (version) { in MapVersionToIndex()
228 // A process-global symbol table per version per profile for built-ins common
229 // to multiple stages (languages), and a process-global symbol table per version
244 bool InitializeSymbolTable(const TString& builtIns, int version, EProfil
105 CreateParseContext(TSymbolTable& symbolTable, TIntermediate& intermediate, int version, EProfile profile, EShSource source, EShLanguage language, TInfoSink& infoSink, SpvVersion spvVersion, bool forwardCompatible, EShMessages messages, bool parsingBuiltIns, std::string sourceEntryPointName = �) CreateParseContext() argument
297 InitializeStageSymbolTable(TBuiltInParseables& builtInParseables, int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, EShSource source, TInfoSink& infoSink, TSymbolTable** commonTable, TSymbolTable** symbolTables) InitializeStageSymbolTable() argument
315 InitializeSymbolTables(TInfoSink& infoSink, TSymbolTable** commonTable, TSymbolTable** symbolTables, int version, EProfile profile, const SpvVersion& spvVersion, EShSource source) InitializeSymbolTables() argument
391 AddContextSpecificSymbols(const TBuiltInResource* resources, TInfoSink& infoSink, TSymbolTable& symbolTable, int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, EShSource source) AddContextSpecificSymbols() argument
418 SetupBuiltinSymbolTable(int version, EProfile profile, const SpvVersion& spvVersion, EShSource source) SetupBuiltinSymbolTable() argument
491 DeduceVersionProfile(TInfoSink& infoSink, EShLanguage stage, bool versionNotFirst, int defaultVersion, EShSource source, int& version, EProfile& profile, const SpvVersion& spvVersion) DeduceVersionProfile() argument
854 int version = 0; ProcessDeferred() local
1671 Version version; GetVersion() local
1785 setOverrideVersion(int version) setOverrideVersion() argument
[all...]
H A DInitialize.h50 // functions and variables for one specific combination of version
64 virtual void initialize(int version, EProfile, const SpvVersion& spvVersion) = 0;
65 virtual void initialize(const TBuiltInResource& resources, int version, EProfile, const SpvVersion& spvVersion, EShLanguage) = 0;
69 virtual void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TSymbolTable& symbolTable) = 0;
70 virtual void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TSymbolTable& symbolTable, const TBuiltInResource &resources) = 0;
87 void initialize(int version, EProfile, const SpvVersion& spvVersion);
88 void initialize(const TBuiltInResource& resources, int version, EProfile, const SpvVersion& spvVersion, EShLanguage);
90 void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TSymbolTable& symbolTable);
91 void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TSymbolTable& symbolTable, const TBuiltInResource &resources);
94 void addTabledBuiltins(int version, EProfil
[all...]
/third_party/mesa3d/src/freedreno/drm/
H A Dfreedreno_device.c36 struct fd_device *msm_device_new(int fd, drmVersionPtr version);
38 struct fd_device *virtio_device_new(int fd, drmVersionPtr version);
45 drmVersionPtr version; in fd_device_new() local
48 version = drmGetVersion(fd); in fd_device_new()
49 if (!version) { in fd_device_new()
50 ERROR_MSG("cannot get version: %s", strerror(errno)); in fd_device_new()
54 if (!strcmp(version->name, "msm")) { in fd_device_new()
56 if (version->version_major != 1) { in fd_device_new()
57 ERROR_MSG("unsupported version: %u.%u.%u", version in fd_device_new()
[all...]
/third_party/ffmpeg/libavcodec/tests/
H A Drangecoder.c7 * version 2.1 of the License, or (at your option) any later version.
32 * @param version version 0 requires the decoder to know the data size in bytes
33 * version 1 needs about 1 bit more space but does not need to
37 static int rac_check_termination(RangeCoder *c, int version) in rac_check_termination() argument
39 if (version == 1) { in rac_check_termination()
61 int i, p, actual_length, version; in main() local
66 for (version = 0; version < in main()
[all...]

Completed in 13 milliseconds

12345678910>>...167