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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
version.s 1 .version "Version 1.0"
  /external/fonttools/Lib/fontTools/
__init__.py 0 version = "2.4"
1 version = "2.4" variable
  /external/llvm/test/MC/ELF/
version.s 3 .version "1234"
4 .version "123"
  /external/tcpdump/
version.c 1 const char version[] = "4.7.4"; variable
  /external/valgrind/coregrind/m_gdbserver/
version.c 2 const char version[] = "gdbserver protocol box extracted from gdb 6.6"; variable
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
version_profile.h 3 // Licensed under the Apache License, Version 2.0 (the "License");
24 // Returns true if the given version is an accepted GLSL (ES) version.
25 inline bool IsKnownVersion(int version) {
26 return version == 100 || version == 110 || version == 120 || version == 130 ||
27 version == 140 || version == 150 || version == 300 || version == 330 |
    [all...]
  /external/mesa3d/src/glsl/glcpp/tests/
064-version.c 0 #version 130
  /external/protobuf/ruby/
travis-test.sh 7 version=$1
8 if [ "$version" == "jruby" ] ; then
11 "rvm install $version && rvm use $version && \
17 "rvm install $version && rvm use $version && \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
getversion.c 2 /* Return the full version string. */
11 static char version[250]; local
12 PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
14 return version;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getversion.c 2 /* Return the full version string. */
11 static char version[250]; local
12 PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
14 return version;
  /external/c-ares/
ares_version.c 5 const char *ares_version(int *version)
7 if(version)
8 *version = ARES_VERSION;
  /external/clang/test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/Headers/
Types.h 3 unsigned version; member in struct:FrameworkSubStruct
  /external/deqp/external/vulkancts/framework/vulkan/
vkApiVersion.cpp 7 * Licensed under the Apache License, Version 2.0 (the "License");
21 * \brief Vulkan api version.
29 ApiVersion unpackVersion (deUint32 version)
31 return ApiVersion((version & 0xFFC00000) >> 22,
32 (version & 0x003FF000) >> 12,
33 version & 0x00000FFF);
36 deUint32 pack (const ApiVersion& version)
38 DE_ASSERT((version.majorNum & ~0x3FF) == 0);
39 DE_ASSERT((version.minorNum & ~0x3FF) == 0);
40 DE_ASSERT((version.patchNum & ~0xFFF) == 0)
    [all...]
  /external/sonic/
mkorig 6 version=`head -1 debian/changelog | sed 's/.*(//
8 sed -i "s/LIB_TAG=.*/LIB_TAG=$version/" Makefile
9 if [ "`basename $PWD`" != "sonic-$version" ]; then
10 echo "Directory name should be sonic-$version"
15 echo "sonic_${version} (git: `git log -1 --oneline | sed 's/ .*//'`)" > version
18 if ! tar -cvzf sonic_$version.orig.tar.gz --exclude-vcs --exclude=debian sonic-$version; then
19 echo "Could not create sonic_$version.orig.tar.gz"
22 echo "Successfully created sonic_$version.orig.tar.gz
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
SocksProxy.java 6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
32 * Proxy wrapper class so we can determine the socks protocol version.
35 private final int version; field in class:SocksProxy
37 private SocksProxy(SocketAddress addr, int version) {
39 this.version = version;
42 public static SocksProxy create(SocketAddress addr, int version) {
43 return new SocksProxy(addr, version);
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
__init__.py 2 __version__ = pkg_resources.require('modulegraph')[0].version
  /libcore/luni/src/main/java/android/system/
StructCapUserHeader.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
28 * Version of the header. Note this is not final as capget() may mutate the field when an
29 * invalid version is provided. See
32 public int version; /* __u32 */ field in class:StructCapUserHeader
40 public StructCapUserHeader(int version, int pid) {
41 this.version = version;
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/
script 4 print (sys.version)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
lp.s 1 .version 545lp
  /dalvik/dx/tests/003-magic-version-access/
run 5 # Licensed under the Apache License, Version 2.0 (the "License");
34 check_rejected class-version-44.0.txt
35 check_rejected class-version-44.65535.txt
38 check_accepted class-version-45.0.txt
39 check_accepted class-version-45.65535.txt
40 check_accepted class-version-48.0.txt
41 check_accepted class-version-48.65535.txt
42 check_accepted class-version-49.0.txt
43 check_accepted class-version-49.1.txt
44 check_accepted class-version-49.65535.tx
    [all...]
  /external/libopus/win32/
genversion.bat 5 for /f %%v in ('git --git-dir="%~dp0..\.git" describe --tags --match "v*"') do set version=%%v variable
7 if not "%version%"=="" goto :gotversion
9 if exist "%~dp0..\version.mk" goto :getversion
11 echo Git cannot be found, nor can version.mk. Generating unknown version.
13 set version=unknown variable
19 for /f "delims== tokens=2" %%v in (%~dps0..\version.mk) do set version=%%v variable
21 set version=!version:^"= variable
22 set version=!version: =! variable
    [all...]
  /external/autotest/client/bin/
kernel_versions.py 2 # kernel_versions.py -- linux kernel version comparisons
11 # their accompanying version.
23 def version_encode(version):
24 bits = encode_sep.split(version)
45 def version_limit(version, n):
46 bits = encode_sep.split(version)
50 def version_len(version):
51 return len(encode_sep.split(version))
54 # Given a list of versions find the nearest version which is deemed
68 def version_choose_config(version, candidates)
    [all...]
  /external/autotest/client/common_lib/
kernel_versions.py 2 # kernel_versions.py -- linux kernel version comparisons
11 # their accompanying version.
23 def version_encode(version):
24 bits = encode_sep.split(version)
45 def version_limit(version, n):
46 bits = encode_sep.split(version)
50 def version_len(version):
51 return len(encode_sep.split(version))
54 # Given a list of versions find the nearest version which is deemed
68 def version_choose_config(version, candidates)
    [all...]
  /system/chre/chre_api/include/chre_api/chre/
version.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
35 * Value for version 0.1 of the Context Hub Runtime Environment API interface.
37 * This is a legacy version. Version 1.0 is considered the first official
38 * version of the API.
45 * Value for version 1.0 of the Context Hub Runtime Environment API interface.
47 * The version of the CHRE API which shipped with the Android Nougat release.
54 * Value for version 1.1 of the Context Hub Runtime Environment API interface.
56 * The version of the CHRE API shipped with the Android O release. It adds
59 * @note This version of the CHRE API has not been finalized yet, and i
    [all...]
  /external/elfutils/libelf/
elf_version.c 10 Software Foundation; either version 3 of the License, or (at
11 your option) any later version
16 Software Foundation; either version 2 of the License, or (at
17 your option) any later version
37 /* Is the version initialized? */
40 /* Currently selected version. */
45 elf_version (unsigned int version)
47 if (version == EV_NONE)
50 if (likely (version < EV_NUM))
52 /* Phew, we know this version. *
    [all...]

Completed in 783 milliseconds

1 2 3 4 5 6 7 8 91011>>