| /third_party/alsa-lib/alsalisp/ |
| D | test.lisp | 13 (!=) (&check-memory) 14 (!= 0) (&check-memory) 15 (!= 0 1) (&check-memory) 16 (!= 1 1) (&check-memory) 17 (!= 0 1 2) (&check-memory) 18 (!= 'aaaa 'bbbb) (&check-memory) 20 (%) (&check-memory) 21 (% 11) (&check-memory) 22 (% 11 5) (&check-memory) 23 (% 11.5 5.1) (&check-memory) [all …]
|
| /third_party/rust/rust/tests/assembly/asm/ |
| D | x86-types.rs | 2 // assembly-output: emit-asm 3 //[x86_64] compile-flags: --target x86_64-unknown-linux-gnu 4 //[x86_64] needs-llvm-components: x86 5 //[i686] compile-flags: --target i686-unknown-linux-gnu 6 //[i686] needs-llvm-components: x86 7 // compile-flags: -C llvm-args=--x86-asm-syntax=intel 8 // compile-flags: -C target-feature=+avx512bw 236 // CHECK-LABEL: sym_fn: 237 // CHECK: #APP 238 // CHECK: call extern_func [all …]
|
| D | arm-types.rs | 1 // assembly-output: emit-asm 2 // compile-flags: --target armv7-unknown-linux-gnueabihf 3 // compile-flags: -C target-feature=+neon 4 // needs-llvm-components: arm 75 // CHECK-LABEL: sym_fn: 76 // CHECK: @APP 77 // CHECK: bl extern_func 78 // CHECK: @NO_APP 84 // CHECK-LABEL: sym_static: 85 // CHECK: @APP [all …]
|
| D | aarch64-types.rs | 1 // assembly-output: emit-asm 2 // compile-flags: --target aarch64-unknown-linux-gnu 3 // needs-llvm-components: aarch64 80 // CHECK-LABEL: sym_fn: 81 // CHECK: //APP 82 // CHECK: bl extern_func 83 // CHECK: //NO_APP 89 // CHECK-LABEL: sym_static: 90 // CHECK: //APP 91 // CHECK: adr x0, extern_static [all …]
|
| D | x86-modifiers.rs | 2 // assembly-output: emit-asm 3 // compile-flags: -O 4 //[x86_64] compile-flags: --target x86_64-unknown-linux-gnu 5 //[x86_64] needs-llvm-components: x86 6 //[i686] compile-flags: --target i686-unknown-linux-gnu 7 //[i686] needs-llvm-components: x86 8 // compile-flags: -C llvm-args=--x86-asm-syntax=intel 9 // compile-flags: -C target-feature=+avx512bw 36 macro_rules! check { macro 38 // -O and extern "C" guarantee that the selected register is always ax/xmm0 [all …]
|
| D | loongarch-type.rs | 1 // min-llvm-version: 16.0 2 // assembly-output: emit-asm 3 // compile-flags: --target loongarch64-unknown-linux-gnu 4 // needs-llvm-components: loongarch 48 // CHECK-LABEL: sym_fn: 49 // CHECK: #APP 50 // CHECK: pcalau12i $t0, %got_pc_hi20(extern_func) 51 // CHECK: ld.d $t0, $t0, %got_pc_lo12(extern_func) 52 // CHECK: #NO_APP 58 // CHECK-LABEL: sym_static: [all …]
|
| D | wasm-types.rs | 1 // assembly-output: emit-asm 2 // compile-flags: --target wasm32-unknown-unknown 3 // compile-flags: --crate-type cdylib 4 // needs-llvm-components: webassembly 38 // CHECK-LABEL: sym_fn: 39 // CHECK: #APP 40 // CHECK: call extern_func 41 // CHECK: #NO_APP 47 // CHECK-LABEL: sym_static 48 // CHECK: #APP [all …]
|
| D | nvptx-types.rs | 1 // assembly-output: emit-asm 2 // compile-flags: --target nvptx64-nvidia-cuda 3 // compile-flags: --crate-type cdylib 4 // needs-llvm-components: nvptx 37 // CHECK-LABEL: .visible .func sym_fn() 38 // CHECK: // begin inline asm 39 // CHECK: call extern_func; 40 // CHECK: // end inline asm 46 macro_rules! check { macro 49 pub unsafe fn $func(x: $ty) -> $ty { [all …]
|
| D | riscv-types.rs | 2 // assembly-output: emit-asm 3 //[riscv64] compile-flags: --target riscv64imac-unknown-none-elf 4 //[riscv64] needs-llvm-components: riscv 5 //[riscv32] compile-flags: --target riscv32imac-unknown-none-elf 6 //[riscv32] needs-llvm-components: riscv 7 // compile-flags: -C target-feature=+d 47 // CHECK-LABEL: sym_fn: 48 // CHECK: #APP 49 // CHECK: call extern_func 50 // CHECK: #NO_APP [all …]
|
| D | arm-modifiers.rs | 1 // assembly-output: emit-asm 2 // compile-flags: -O 3 // compile-flags: --target armv7-unknown-linux-gnueabihf 4 // compile-flags: -C target-feature=+neon 5 // needs-llvm-components: arm 38 macro_rules! check { macro 40 // -O and extern "C" guarantee that the selected register is always r0/s0/d0/q0 42 pub unsafe extern "C" fn $func() -> $ty { 56 // CHECK-LABEL: reg: 57 // CHECK: @APP [all …]
|
| D | aarch64-modifiers.rs | 1 // assembly-output: emit-asm 2 // compile-flags: -O 3 // compile-flags: --target aarch64-unknown-linux-gnu 4 // needs-llvm-components: aarch64 27 macro_rules! check { macro 29 // -O and extern "C" guarantee that the selected register is always r0/s0/d0/q0 31 pub unsafe extern "C" fn $func() -> i32 { 45 // CHECK-LABEL: reg: 46 // CHECK: //APP 47 // CHECK: mov x0, x0 [all …]
|
| D | bpf-types.rs | 1 // assembly-output: emit-asm 2 // compile-flags: --target bpfel-unknown-none -C target_feature=+alu32 3 // needs-llvm-components: bpf 36 macro_rules! check { macro 39 pub unsafe fn $func(x: $ty) -> $ty { 50 pub unsafe fn $func(x: $ty) -> $ty { 62 // CHECK-LABEL: sym_fn 63 // CHECK: #APP 64 // CHECK: call extern_func 65 // CHECK: #NO_APP [all …]
|
| D | powerpc-types.rs | 2 // assembly-output: emit-asm 3 //[powerpc] compile-flags: --target powerpc-unknown-linux-gnu 4 //[powerpc] needs-llvm-components: powerpc 5 //[powerpc64] compile-flags: --target powerpc64-unknown-linux-gnu 6 //[powerpc64] needs-llvm-components: powerpc 51 macro_rules! check { ($func:ident, $ty:ty, $class:ident, $mov:literal) => { macro 53 pub unsafe fn $func(x: $ty) -> $ty { 64 pub unsafe fn $func(x: $ty) -> $ty { 73 // CHECK-LABEL: reg_i8: 74 // CHECK: #APP [all …]
|
| D | avr-types.rs | 1 // assembly-output: emit-asm 2 // compile-flags: --target avr-unknown-gnu-atmega328 3 // needs-llvm-components: avr 32 macro_rules! check { macro 35 pub unsafe fn $func(x: $ty) -> $ty { 46 pub unsafe fn $func(x: $ty) -> $ty { 57 pub unsafe fn $func(x: $ty) -> $ty { 68 pub unsafe fn $func(x: $ty) -> $ty { 81 // CHECK-LABEL: sym_fn 82 // CHECK: ;APP [all …]
|
| /third_party/mbedtls/library/ |
| D | version_features.c | 5 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 19 "HAVE_ASM", //no-check-names 22 "NO_UDBL_DIVISION", //no-check-names 25 "NO_64BIT_MULTIPLICATION", //no-check-names 28 "HAVE_SSE2", //no-check-names 31 "HAVE_TIME", //no-check-names 34 "HAVE_TIME_DATE", //no-check-names 37 "PLATFORM_MEMORY", //no-check-names 40 "PLATFORM_NO_STD_FUNCTIONS", //no-check-names 43 "PLATFORM_SETBUF_ALT", //no-check-names [all …]
|
| /third_party/rust/rust/tests/codegen/ |
| D | vec-calloc.rs | 1 // compile-flags: -O -Z merge-functions=disabled 2 // only-x86_64 3 // ignore-debug 4 // min-llvm-version: 15.0 8 // CHECK-LABEL: @vec_zero_bytes 10 pub fn vec_zero_bytes(n: usize) -> Vec<u8> { in vec_zero_bytes() 11 // CHECK-NOT: call {{.*}}alloc::vec::from_elem in vec_zero_bytes() 12 // CHECK-NOT: call {{.*}}reserve in vec_zero_bytes() 13 // CHECK-NOT: call {{.*}}__rust_alloc( in vec_zero_bytes() 14 // CHECK-NOT: call {{.*}}llvm.memset in vec_zero_bytes() [all …]
|
| D | vec-calloc-llvm14.rs | 1 // compile-flags: -O 2 // only-x86_64 3 // ignore-debug 7 // CHECK-LABEL: @vec_zero_bytes 9 pub fn vec_zero_bytes(n: usize) -> Vec<u8> { in vec_zero_bytes() 10 // CHECK-NOT: call {{.*}}alloc::vec::from_elem in vec_zero_bytes() 11 // CHECK-NOT: call {{.*}}reserve in vec_zero_bytes() 12 // CHECK-NOT: call {{.*}}__rust_alloc( in vec_zero_bytes() 13 // CHECK-NOT: call {{.*}}llvm.memset in vec_zero_bytes() 15 // CHECK: call {{.*}}__rust_alloc_zeroed( in vec_zero_bytes() [all …]
|
| /third_party/rust/rust/tests/debuginfo/ |
| D | destructured-local.rs | 1 // min-lldb-version: 310 3 // compile-flags:-g 7 // gdb-command:run 9 // gdb-command:print a 10 // gdb-check:$1 = 1 11 // gdb-command:print b 12 // gdb-check:$2 = false 14 // gdb-command:print c 15 // gdb-check:$3 = 2 16 // gdb-command:print d [all …]
|
| D | lexical-scopes-in-block-expression.rs | 1 // min-lldb-version: 310 2 // ignore-gdb // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155 4 // compile-flags:-g 8 // gdb-command:run 10 // gdbg-command:print 'lexical_scopes_in_block_expression::MUT_INT' 11 // gdbr-command:print lexical_scopes_in_block_expression::MUT_INT 12 // gdb-check:$1 = 0 15 // gdb-command:print val 16 // gdb-check:$2 = -1 17 // gdb-command:print ten [all …]
|
| D | destructured-fn-argument.rs | 1 // min-lldb-version: 310 3 // compile-flags:-g 7 // gdb-command:run 9 // gdb-command:print a 10 // gdb-check:$1 = 1 11 // gdb-command:print b 12 // gdb-check:$2 = false 13 // gdb-command:continue 15 // gdb-command:print a 16 // gdb-check:$3 = 2 [all …]
|
| D | step-into-match.rs | 1 // compile-flags: -g 2 // ignore-android: FIXME(#10381) 6 // gdb-command: r 8 // gdb-command: s 9 // gdb-check:[...]match x { 11 // gdb-command: s 12 // gdb-check:[...] Some(42) => 1, 14 // gdb-command: s 15 // gdb-check:[...]} 17 // gdb-command: s [all …]
|
| /third_party/rust/rust/tests/codegen/intrinsics/ |
| D | transmute.rs | 1 // compile-flags: -O -C no-prepopulate-passes 2 // only-64bit (so I don't need to worry about usize) 3 // min-llvm-version: 15.0 # this test assumes `ptr`s 31 // CHECK-LABEL: @check_bigger_size( 33 pub unsafe fn check_bigger_size(x: u16) -> u32 { in check_bigger_size() 34 // CHECK: call void @llvm.trap in check_bigger_size() 38 // CHECK-LABEL: @check_smaller_size( 40 pub unsafe fn check_smaller_size(x: u32) -> u16 { in check_smaller_size() 41 // CHECK: call void @llvm.trap in check_smaller_size() 45 // CHECK-LABEL: @check_smaller_array( [all …]
|
| /third_party/json/tests/src/ |
| D | unit-iterators1.cpp | 6 // SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me> 7 // SPDX-License-Identifier: MIT 22 CHECK(it.m_object == nullptr); 25 CHECK(cit.m_object == nullptr); 36 CHECK(it != j.end()); 37 CHECK(*it == j); 40 CHECK(it != j.begin()); 41 CHECK(it == j.end()); 43 it--; 44 CHECK(it == j.begin()); [all …]
|
| /third_party/spirv-tools/test/opt/ |
| D | invocation_interlock_placement_test.cpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 15 #include "spirv-tools/optimizer.hpp" 96 ; CHECK: OpLabel in TEST_F() 98 ; CHECK-NEXT: OpNoLine in TEST_F() 100 ; CHECK-NEXT: OpBeginInvocationInterlockEXT in TEST_F() 105 ; CHECK-NEXT: OpNoLine in TEST_F() 107 ; CHECK-NEXT: OpEndInvocationInterlockEXT in TEST_F() 109 ; CHECK-NEXT: OpNoLine in TEST_F() 111 ; CHECK-NEXT: OpReturn in TEST_F() 134 ; CHECK: OpLabel in TEST_F() [all …]
|
| /third_party/rust/rust/tests/ui/namespace/ |
| D | namespace-mix.stderr | 2 --> $DIR/namespace-mix.rs:34:11 5 | ---------------- similarly named tuple struct `TS` defined here 7 LL | check(m1::S); 13 LL | check(m1::TS); 23 LL - check(m1::S); 24 LL + check(S); 28 --> $DIR/namespace-mix.rs:40:11 30 LL | check(xm1::S); 33 ::: $DIR/auxiliary/namespace-mix.rs:3:5 36 | ------------- similarly named tuple struct `TS` defined here [all …]
|