Home
last modified time | relevance | path

Searched +full:- +full:m32 (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/external/mesa3d/src/panfrost/midgard/
Dmidgard_ops.c1 /* Copyright (c) 2018-2019 Alyssa Rosenzweig (alyssa@rosenzweig.io)
2 * Copyright (C) 2019-2020 Collabora, Ltd.
39 /* clang-format off */
214 #define M32 midgard_reg_mode_32 macro
218 [midgard_op_unpack_colour_f32] = {"UNPACK.f32", M32},
219 [midgard_op_unpack_colour_f16] = {"UNPACK.f16", M32},
220 [midgard_op_unpack_colour_u32] = {"UNPACK.u32", M32},
221 [midgard_op_unpack_colour_s32] = {"UNPACK.s32", M32},
222 [midgard_op_pack_colour_f32] = {"PACK.f32", M32},
223 [midgard_op_pack_colour_f16] = {"PACK.f16", M32},
[all …]
/external/clang/test/Driver/
Dcl-x86-flags.c1 // REQUIRES: x86-registered-target
3 // We support -m32 and -m64. We support all x86 CPU feature flags in gcc's -m
5 // RUN: %clang_cl /Zs /WX -m32 -m64 -msse3 -msse4.1 -mavx -mno-avx \
6 // RUN: --target=i386-pc-win32 -### -- 2>&1 %s | FileCheck -check-prefix=MFLAGS %s
7 // MFLAGS-NOT: argument unused during compilation
9 // RUN: %clang_cl -m32 -arch:IA32 --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=IA32 %s
10 // IA32: "-target-cpu" "i386"
11 // IA32-NOT: -target-feature
12 // IA32-NOT: argument unused during compilation
14 // RUN: %clang_cl -m32 -arch:ia32 --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=ia32 %s
[all …]
Dbiarch.c1 // RUN: %clang -target i386--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=I386 %s
2 // RUN: %clang -target x86_64--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=I386 %s
3 // I386: "-cc1" "-triple" "i386--netbsd"
5 // RUN: %clang -target i386--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=X86_64 %s
6 // RUN: %clang -target x86_64--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=X86_64 %s
7 // X86_64: "-cc1" "-triple" "x86_64--netbsd"
9 // r196538 set arm1176jzf-s as default CPU for ARMv6 on NetBSD
10 // RUN: %clang -target armv6--netbsd-eabihf -m32 %s -### 2>&1 | FileCheck -check-prefix=ARMV6 %s
11 // ARMV6: "-cc1" "-triple" "armv6kz--netbsd-eabihf"
13 // RUN: %clang -target sparcv9--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=SPARC %s
[all …]
Dunknown-gcc-arch.c1 // RUN: %clang -target x86_64-unknown-unknown -no-integrated-as -c \
2 // RUN: -x assembler %s -### 2>&1 | FileCheck -check-prefix=X86_64 %s
3 // X86_64: {{.*as.*--64}}
5 // RUN: %clang -target x86_64-unknown-unknown -c -x assembler %s -### -m32 \
6 // RUN: -no-integrated-as 2>&1 | FileCheck -check-prefix=X86_64-M32 %s
7 // X86_64-M32: {{.*as.*--32}}
9 // RUN: %clang -target i386-unknown-unknown -c -x assembler %s -### \
10 // RUN: -no-integrated-as 2>&1| FileCheck -check-prefix=I386 %s
11 // I386: {{.*as.*--32}}
13 // RUN: %clang -target i386-unknown-unknown -c -x assembler %s -### -m64 \
[all …]
Darc.c1 // RUN: not %clang -ObjC -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCh…
2 // RUN: not %clang -x objective-c -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1…
3 // RUN: not %clang -x objective-c++ -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>…
4 // RUN: not %clang -x c -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileChe…
5 // RUN: not %clang -x c++ -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileC…
6 …UN: not %clang -x objective-c -target x86_64-apple-darwin11 -mmacosx-version-min=10.5 -fobjc-arc %…
11 // CHECK: error: -fobjc-arc is not supported on platforms using the legacy runtime
12 // CHECK-NOT: invalid preprocessing directive
14 // NOTOBJC-NOT: error: -fobjc-arc is not supported on platforms using the legacy runtime
17 // NOTSUPPORTED: error: -fobjc-arc is not supported on versions of OS X prior to 10.6
Dprefixed-tools.c1 // RUN: %clang -### -B%S/Inputs/prefixed_tools_tree -o %t.o -no-integrated-as \
2 // RUN: -target x86_64--linux %s 2>&1 | \
3 // RUN: FileCheck --check-prefix=CHECK-M64 %s
5 // RUN: %clang -### -B%S/Inputs/prefixed_tools_tree -o %t.o -no-integrated-as \
6 // RUN: -m32 -target x86_64--linux %s 2>&1 | \
7 // RUN: FileCheck --check-prefix=CHECK-M32 %s
9 // CHECK-M64: "{{.*}}{{/|\\\\}}prefixed_tools_tree{{/|\\\\}}x86_64--linux-as"
10 // CHECK-M64: "{{.*}}{{/|\\\\}}prefixed_tools_tree{{/|\\\\}}x86_64--linux-ld"
11 // CHECK-M32: "{{.*}}{{/|\\\\}}prefixed_tools_tree{{/|\\\\}}x86_64--linux-as"
12 // CHECK-M32: "{{.*}}{{/|\\\\}}prefixed_tools_tree{{/|\\\\}}x86_64--linux-ld"
/external/clang/test/CodeGenCXX/
Ddllexport.cpp1-triple i686-windows-msvc -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O1 -mco…
2-triple i686-windows-msvc -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O1 -mco…
4-triple x86_64-windows-msvc -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O0 -o -
5-triple x86_64-windows-msvc -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O0 -o -
7 …cc1 -triple i686-windows-gnu -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O0
8 …cc1 -triple x86_64-windows-gnu -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O0
30 // M32-DAG: $"\01??_7W@@6B@" = comdat largest
33 //===----------------------------------------------------------------------===//
35 //===----------------------------------------------------------------------===//
38 // MSC-NOT: @"\01?ExternGlobalDecl@@3HA"
[all …]
Ddllexport-members.cpp1-triple i686-windows-msvc -fms-compatibility -fms-compatibility-version=18 -emit-llvm -std=c++1y…
2-triple x86_64-windows-msvc -fms-compatibility -fms-compatibility-version=18 -emit-llvm -std=c++1…
3 …%clang_cc1 -triple i686-windows-msvc -fms-compatibility -fms-compatibility-version=19 -emit-llvm…
4 …%clang_cc1 -triple x86_64-windows-msvc -fms-compatibility -fms-compatibility-version=19 -emit-llvm…
5 …RUN: %clang_cc1 -triple i686-windows-gnu -emit-llvm -std=c++1y -O0 -o - %s |…
6 …RUN: %clang_cc1 -triple x86_64-windows-gnu -emit-llvm -std=c++1y -O0 -o - %s |…
21 //===----------------------------------------------------------------------===//
23 //===----------------------------------------------------------------------===//
29 …// M32-DAG: define dllexport x86_thiscallcc void @"\01?normalDef@ExportMembers@@QAEXXZ"(%…
30 …// M64-DAG: define dllexport void @"\01?normalDef@ExportMembers@@QEAAXXZ"(…
[all …]
Ddllimport-members.cpp1 …ng_cc1 -triple i686-windows-msvc -fms-compatibility -emit-llvm -std=c++1y -O0 -o - %s -DMSABI | …
2 … %clang_cc1 -triple x86_64-windows-msvc -fms-compatibility -emit-llvm -std=c++1y -O0 -o - %s -DMSA…
3 … %clang_cc1 -triple i686-windows-gnu -emit-llvm -std=c++1y -O0 -o - %s …
4 … %clang_cc1 -triple x86_64-windows-gnu -emit-llvm -std=c++1y -O0 -o - %s …
5 // RUN: %clang_cc1 -triple i686-windows-msvc -fms-compatibility -emit-llvm -std=c++1y -O1 -o - %s…
6 // RUN: %clang_cc1 -triple i686-windows-gnu -emit-llvm -std=c++1y -O1 -o - %s…
46 // Used to force non-trivial special members.
58 //===----------------------------------------------------------------------===//
60 //===----------------------------------------------------------------------===//
66 …// M32-DAG: define dllexport x86_thiscallcc void @"\01?normalDef@ImportMembers@@QAEXXZ"(%struct…
[all …]
/external/skia/resources/sksl/shared/
DMatricesNonsquare.sksl12 float3x2 m32 = float3x2(4);
13 ok = ok && (m32 == float3x2(4, 0,
30 float2x2 m22 = m32 * m23;
39 m32 -= 2;
40 ok = ok && (m32 == float3x2(2, -2,
41 -2, 2,
42 -2, -2));
58 half3x2 m32 = half3x2(4);
59 ok = ok && (m32 == half3x2(4, 0,
76 half2x2 m22 = m32 * m23;
[all …]
/external/skia/tests/
DFloat16Test.cpp4 * Use of this source code is governed by a BSD-style license that can be
37 // Check all 8-bit exponents and all 10-bit upper mantissas, with a combination of all 0s,
47 (frac == 1) ? (1 << 13) - 1 // all 1s in lost fraction
54 // We want float->half and half->float to play well with infinities and max
55 // representable values in the 16-bit precision, but NaNs should have been caught ahead
68 uint32_t m32 = (uint32_t) bits & kF32_Mant; local
70 // Half floats can represent a real exponent from -14 to 15. Anything less than that would
72 int e = (int) (e32 >> 23) - kF32_Bias; // the true signed exponent
77 if (e < -kF16_Bias-10 || (e == -kF16_Bias-10 && m32 <= 0)) {
81 } else if ((e32 | m32) < 0x38fe'0000) {
[all …]
/external/skia/tests/sksl/shared/
DMatricesNonsquare.wgsl11 fn test_half_b() -> bool {
20 var m32: mat3x2<f32> = mat3x2<f32>(4.0, 0.0, 0.0, 4.0, 0.0, 0.0);
22 …ok = ok && (all(m32[0] == _skTemp2[0]) && all(m32[1] == _skTemp2[1]) && all(m32[2] == _skTemp2[2])…
32 var m22: mat2x2<f32> = m32 * m23;
41 m32 = mat3x2<f32>(m32[0] - 2.0, m32[1] - 2.0, m32[2] - 2.0);
42 let _skTemp9 = mat3x2<f32>(2.0, -2.0, -2.0, 2.0, -2.0, -2.0);
43 …ok = ok && (all(m32[0] == _skTemp9[0]) && all(m32[1] == _skTemp9[1]) && all(m32[2] == _skTemp9[2])…
50 fn _skslMain(coords: vec2<f32>) -> vec4<f32> {
68 _3_m32 = mat3x2<f32>(_3_m32[0] - 2.0, _3_m32[1] - 2.0, _3_m32[2] - 2.0);
69 let _skTemp16 = mat3x2<f32>(2.0, -2.0, -2.0, 2.0, -2.0, -2.0);
[all …]
DMatricesNonsquare.glsl11 mat3x2 m32 = mat3x2(4.0);
12 ok = ok && m32 == mat3x2(4.0, 0.0, 0.0, 4.0, 0.0, 0.0);
19 mat2 m22 = m32 * m23;
25 m32 -= 2.0;
26 ok = ok && m32 == mat3x2(2.0, -2.0, -2.0, 2.0, -2.0, -2.0);
43 _3_m32 -= 2.0;
44 _0_ok = _0_ok && _3_m32 == mat3x2(2.0, -2.0, -2.0, 2.0, -2.0, -2.0);
/external/ms-tpm-20-ref/
D.travis.yml4 - clang
5 - gcc
10 - autoconf-archive
13 - amd64
14 - arm64
15 - s390x
19 - compiler: clang
20 env: CONF_OPT="--host=i686-pc-linux-gnu" CFLAGS="-m32" LDFLAGS="-m32"
21 - compiler: gcc
22 env: CONF_OPT="--host=i686-pc-linux-gnu" CFLAGS="-m32" LDFLAGS="-m32"
[all …]
/external/openthread/src/core/net/
Dip6_address.cpp52 //-------------------------------------------------------------------------------------------------…
59 return Random::Crypto::FillBuffer(&m8[1], kSize - 1); in GenerateRandomUla()
62 //-------------------------------------------------------------------------------------------------…
101 uint8_t lastByteBitMask = ~(static_cast<uint8_t>(1 << (byteLength * 8 - mLength)) - 1); in Tidy()
105 mPrefix.mFields.m8[byteLength - 1] &= lastByteBitMask; in Tidy()
218 uint8_t sizeInUint16 = (GetBytesSize() + sizeof(uint16_t) - 1) / sizeof(uint16_t); in ToString()
224 if (GetBytesSize() < Address::kSize - 1) in ToString()
232 //-------------------------------------------------------------------------------------------------…
235 bool InterfaceIdentifier::IsUnspecified(void) const { return (mFields.m32[0] == 0) && (mFields.m32[… in IsUnspecified()
242 …entifier::IsSubnetRouterAnycast(void) const { return (mFields.m32[0] == 0) && (mFields.m32[1] == 0… in IsSubnetRouterAnycast()
[all …]
/external/autotest/client/deps/webgl_mpd/src/resources/
DJ3DIMath.js26 // J3DI (Jedi) - A support library for WebGL.
31 J3DIMatrix4 - A 4x4 Matrix
110 …SSMatrix" in window && ("media" in window && window.media.matchMedium("(-webkit-transform-3d)")) ||
111 … ("styleMedia" in window && window.styleMedia.matchMedium("(-webkit-transform-3d)"))) {
163 this.$matrix.m32 = matrix.m32;
188 this.$matrix.m32 = matrix[9];
208 this.$matrix.m31, this.$matrix.m32, this.$matrix.m33, this.$matrix.m34,
242 J3DIMatrix4.setUniformArray[9] = this.$matrix.m32;
269 this.$matrix.m32 = 0;
294 this.$matrix.m23 = this.$matrix.m32;
[all …]
/external/jemalloc_new/
D.travis.yml6 - os: linux
7 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
8 - os: osx
9 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
10 - os: linux
11 … CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
12 - os: linux
13 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun…
17 - gcc-multilib
18 - os: linux
[all …]
/external/python/cpython2/PC/VS8.0/
Dbuild_ssl.py17 # Now this script supports pre-generated makefiles and assembly files.
49 fh = os.popen('"%s" -e "use Win32;"' % perl)
78 if os.path.isdir(fqn) and fname.startswith("openssl-"):
84 parts = re.split("[.-]", os.path.basename(c))[1:]
85 # eg - openssl-0.9.7-beta1 - ignore all "beta" or any other qualifiers
98 def create_makefile64(makefile, m32): argument
103 if not os.path.isfile(m32):
105 with open(m32) as fin:
117 os.unlink(m32)
137 noalgo = " -DOPENSSL_NO_%s" % algo
[all …]
/external/clang/test/Preprocessor/
Dpredefined-arch-macros.c1 // Begin X86/GCC/Linux tests ----------------
3 // RUN: %clang -march=i386 -m32 -E -dM %s -o - 2>&1 \
4 // RUN: -target i386-unknown-linux \
5 // RUN: | FileCheck -match-full-lines %s -check-prefix=CHECK_I386_M32
10 // RUN: not %clang -march=i386 -m64 -E -dM %s -o - 2>&1 \
11 // RUN: -target i386-unknown-linux \
12 // RUN: | FileCheck -match-full-lines %s -check-prefix=CHECK_I386_M64
15 // RUN: %clang -march=i486 -m32 -E -dM %s -o - 2>&1 \
16 // RUN: -target i386-unknown-linux \
17 // RUN: | FileCheck -match-full-lines %s -check-prefix=CHECK_I486_M32
[all …]
/external/ltp/tools/sparse/
DREADME.md8 `make check-a_test01`, where `a_test01` is an arbitrary test
29 $ git submodule update --init
32 ### Modifying CFLAGS and -m32
34 When compiling the LTP with `-m32` it may break building
35 `sparse-ltp`. We do not pass LTP's `CFLAGS` or `HOST_CFLAGS` to
39 To avoid issues with m32, just pre-build the checker with a non-m32
41 tool itself. Similar issues with cross-compiling could be handled in a
42 similar way. Simply pre-build `sparse-ltp` and `libsparse.a` with a separate
/external/rust/crates/libz-sys/src/zlib-ng/test/
Dabicheck.sh2 set -ex
7 Usage: $0 [--zlib-compat][--refresh][--refresh-if]
9 Build shared library with -ggdb, then compare its ABI to the stable
13 --zlib-compat - check the ABI of the zlib-compatible flavor of zlib-ng.
14 --refresh - build the reference library and extract its ABI rather than using a stored ABI fil…
15 --refresh-if - refresh only if ABI file not present.
19 Requires libabigail (on Ubuntu, install package abigail-tools).
23 # Print the multiarch tuple for the current (non-cross) machine,
26 dpkg-architecture -qDEB_HOST_MULTIARCH ||
27 $CC -print-multiarch ||
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/
Dpkgcheck.yml4 ci-pkgcheck:
6 runs-on: ${{ matrix.os }}
8 fail-fast: false
11 - name: Ubuntu GCC
12 os: ubuntu-latest
14 cxx-compiler: g++
16 - name: Ubuntu GCC -m32
17 os: ubuntu-latest
19 cxx-compiler: g++
20 packages: gcc-multilib g++-multilib
[all …]
/external/clang/utils/ABITest/return-types-32/
DMakefile1 X_CFLAGS := -m32
2 Y_CFLAGS := -m32
3 CC_CFLAGS := -m32
7 TESTARGS += --max-args 0
/external/clang/utils/ABITest/single-args-32/
DMakefile1 X_CFLAGS := -m32
2 Y_CFLAGS := -m32
3 CC_CFLAGS := -m32
7 TESTARGS += --no-function-return --max-args 1
/external/boringssl/src/util/
D32-bit-toolchain.cmake5 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32 -msse2" CACHE STRING "c++ flags")
6 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32 -msse2" CACHE STRING "c flags")
7 set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} -m32 -msse2" CACHE STRING "asm flags")

12345678910>>...16