/external/libvpx/libvpx/vpx_dsp/arm/ |
D | highbd_idct_neon.h | 243 int64x2_t t64[8]; in idct8x8_64_half1d_bd12() local 266 t64[0] = vmull_lane_s32(input1l, vget_high_s32(cospis1), 1); in idct8x8_64_half1d_bd12() 267 t64[1] = vmull_lane_s32(input1h, vget_high_s32(cospis1), 1); in idct8x8_64_half1d_bd12() 268 t64[2] = vmull_lane_s32(input3l, vget_high_s32(cospis1), 0); in idct8x8_64_half1d_bd12() 269 t64[3] = vmull_lane_s32(input3h, vget_high_s32(cospis1), 0); in idct8x8_64_half1d_bd12() 270 t64[4] = vmull_lane_s32(input3l, vget_low_s32(cospis1), 1); in idct8x8_64_half1d_bd12() 271 t64[5] = vmull_lane_s32(input3h, vget_low_s32(cospis1), 1); in idct8x8_64_half1d_bd12() 272 t64[6] = vmull_lane_s32(input1l, vget_low_s32(cospis1), 0); in idct8x8_64_half1d_bd12() 273 t64[7] = vmull_lane_s32(input1h, vget_low_s32(cospis1), 0); in idct8x8_64_half1d_bd12() 274 t64[0] = vmlsl_lane_s32(t64[0], input7l, vget_low_s32(cospis1), 0); in idct8x8_64_half1d_bd12() [all …]
|
D | highbd_idct8x8_add_neon.c | 134 int64x2_t t64[8]; in idct8x8_12_half1d_bd12() local 149 t64[0] = vmull_lane_s32(input1l, vget_high_s32(cospis1), 1); in idct8x8_12_half1d_bd12() 150 t64[1] = vmull_lane_s32(input1h, vget_high_s32(cospis1), 1); in idct8x8_12_half1d_bd12() 151 t64[2] = vmull_lane_s32(input3l, vget_high_s32(cospis1), 0); in idct8x8_12_half1d_bd12() 152 t64[3] = vmull_lane_s32(input3h, vget_high_s32(cospis1), 0); in idct8x8_12_half1d_bd12() 153 t64[4] = vmull_lane_s32(input3l, vget_low_s32(cospis1), 1); in idct8x8_12_half1d_bd12() 154 t64[5] = vmull_lane_s32(input3h, vget_low_s32(cospis1), 1); in idct8x8_12_half1d_bd12() 155 t64[6] = vmull_lane_s32(input1l, vget_low_s32(cospis1), 0); in idct8x8_12_half1d_bd12() 156 t64[7] = vmull_lane_s32(input1h, vget_low_s32(cospis1), 0); in idct8x8_12_half1d_bd12() 157 t32[0] = vrshrn_n_s64(t64[0], DCT_CONST_BITS); in idct8x8_12_half1d_bd12() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
D | sections.test | 4 # RUN: yaml2obj %s -o %t64 5 # RUN: llvm-readobj --sections %t64 | FileCheck %s --check-prefixes=ELF,ELF64 10 # RUN: llvm-readobj --sections %t64 > %t64.llvm.sections 11 # RUN: llvm-readobj -S %t64 > %t64.llvm.upper.s 12 # RUN: cmp %t64.llvm.sections %t64.llvm.upper.s 13 # RUN: llvm-readobj -s %t64 > %t64.llvm.lower.s 14 # RUN: cmp %t64.llvm.sections %t64.llvm.lower.s 15 # RUN: llvm-readobj --section-headers %t64 > %t64.llvm.section-headers 16 # RUN: cmp %t64.llvm.sections %t64.llvm.section-headers
|
D | symbols.test | 13 # RUN: yaml2obj %s -DBITS=64 -DTYPE=ET_REL -o %t64 14 # RUN: llvm-readobj --symbols %t64 | FileCheck %s --match-full-lines --strict-whitespace --check-pr… 15 # RUN: llvm-readelf --symbols %t64 | FileCheck %s --match-full-lines --strict-whitespace --check-pr… 20 # RUN: yaml2obj %s -DBITS=64 -DTYPE=ET_DYN -o %t64.so 21 # RUN: llvm-readobj --symbols %t64.so | FileCheck %s --match-full-lines --strict-whitespace --check… 22 # RUN: llvm-readelf --symbols %t64.so | FileCheck %s --match-full-lines --strict-whitespace --check… 70 # RUN: llvm-readobj --symbols %t64 > %t.symbols 71 # RUN: llvm-readobj --syms %t64 > %t.syms 73 # RUN: llvm-readobj -t %t64 > %t.t 75 # RUN: llvm-readelf -s --elf-output-style=LLVM %t64 > %t.lowers [all …]
|
D | gnu-section-mapping.test | 5 # RUN: yaml2obj %s -o %t64.elf 6 # RUN: llvm-readelf --section-mapping %t64.elf \ 55 # RUN: llvm-readelf --section-mapping=false --program-headers %t64.elf \ 62 # RUN: llvm-readelf --section-mapping --program-headers %t64.elf \ 66 ## RUN: llvm-objcopy --strip-sections %t64.elf %tno-shdrs.o 76 # RUN: yaml2obj %s -DPHENTSIZE=1 -o %t64-err1.elf 77 # RUN: llvm-readelf --section-mapping %t64-err1.elf 2>&1 | \ 78 # RUN: FileCheck %s -DFILE=%t64-err1.elf --check-prefix=PHENTSIZE
|
D | relocation-errors.test | 3 # RUN: yaml2obj %s -o %t64 4 # RUN: llvm-readobj --relocations %t64 2>&1 | FileCheck %s -DFILE=%t64 --check-prefix=LLVM 5 # RUN: llvm-readelf --relocations %t64 2>&1 | FileCheck %s -DFILE=%t64 --check-prefix=GNU
|
D | section-details.test | 4 # RUN: yaml2obj %s -DBITS=64 -o %t64.o 5 # RUN: llvm-readelf %t64.o --section-details | \ 207 # RUN: llvm-readelf %t64.o --section-details --sections | FileCheck %s --check-prefix=GNU64 208 # RUN: llvm-readelf %t64.o --sections --section-details | FileCheck %s --check-prefix=GNU64 211 # RUN: llvm-readelf --section-details %t64.o > %t.readelf.full 212 # RUN: llvm-readelf -t %t64.o > %t.readelf.alias
|
D | relocations.test | 4 # RUN: yaml2obj %s --docnum=1 -o %t64 5 # RUN: llvm-readobj -r %t64 \ 7 # RUN: llvm-readobj --relocs %t64 \ 9 # RUN: llvm-readobj --relocations %t64 \ 28 # RUN: llvm-readelf -r %t64 \ 30 # RUN: llvm-readelf --relocs %t64 \ 32 # RUN: llvm-readelf --relocations %t64 \ 52 # RUN: llvm-readobj -r --expand-relocs %t64 \ 54 # RUN: llvm-readelf -r --expand-relocs %t64 \
|
/external/llvm-project/llvm/test/DebugInfo/PowerPC/ |
D | eh-frame.ll | 12 ; RUN: llc -filetype=obj -mtriple=ppc64 %s -o %t64.o 13 ; RUN: llvm-readobj -r %t64.o | FileCheck %s --check-prefix=PPC64_REL 14 ; RUN: llvm-dwarfdump --eh-frame %t64.o 2>&1 | FileCheck %s --check-prefix=PPC64
|
/external/llvm-project/lld/test/ELF/ |
D | lazy-arch-conflict.s | 3 # RUN: echo '.weak foo; .quad foo;' | llvm-mc -filetype=obj -triple=x86_64 - -o %t64.o 5 # RUN: not ld.lld %t64.o --start-lib %t32.o --end-lib -o /dev/null 2>&1 | FileCheck %s
|
/external/llvm/test/Transforms/GVN/ |
D | non-local-offset.ll | 56 %t64 = load i64, i64* %pc 57 store i64 %t64, i64* %qc
|
/external/llvm-project/lld/test/wasm/ |
D | data-layout.ll | 7 ; RUN: llc -mtriple=wasm64-unknown-unknown -filetype=obj %s -o %t64.o 8 …xport=__data_end --export=__heap_base --allow-undefined --no-entry -o %t64.wasm %t64.o %t.hello64.o 9 ; RUN: obj2yaml %t64.wasm | FileCheck --check-prefixes CHECK,CHK64 %s
|
/external/llvm-project/llvm/test/Transforms/NewGVN/ |
D | non-local-offset.ll | 56 %t64 = load i64, i64* %pc 57 store i64 %t64, i64* %qc
|
/external/llvm-project/llvm/test/Transforms/GVN/ |
D | non-local-offset.ll | 56 %t64 = load i64, i64* %pc 57 store i64 %t64, i64* %qc
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | bswap-inline-asm.ll | 83 ; CHECK-LABEL: t64: 85 define i64 @t64(i64 %x) nounwind {
|
D | statepoint-live-in-remat.ll | 119 %t64 = zext i32 %t to i64 126 …i64 %m64, i64 %n64, i64 %o64, i64 %p64, i64 %q64, i64 %r64, i64 %s64, i64 %t64, i64 %u64, i64 %v64…
|
D | statepoint-live-in.ll | 224 %t64 = zext i32 %t to i64 231 …i64 %m64, i64 %n64, i64 %o64, i64 %p64, i64 %q64, i64 %r64, i64 %s64, i64 %t64, i64 %u64, i64 %v64… 319 %t64 = zext i32 %t to i64 326 …i64 %m64, i64 %n64, i64 %o64, i64 %p64, i64 %q64, i64 %r64, i64 %s64, i64 %t64, i64 %u64, i64 %v64… 550 %t64 = zext i32 %t to i64 557 …i64 %m64, i64 %n64, i64 %o64, i64 %p64, i64 %q64, i64 %r64, i64 %s64, i64 %t64, i64 %u64, i64 %v64… 576 %addt = add i64 %adds, %t64
|
D | statepoint-regs.ll | 246 %t64 = zext i32 %t to i64 253 …i64 %m64, i64 %n64, i64 %o64, i64 %p64, i64 %q64, i64 %r64, i64 %s64, i64 %t64, i64 %u64, i64 %v64… 350 %t64 = zext i32 %t to i64 357 …i64 %m64, i64 %n64, i64 %o64, i64 %p64, i64 %q64, i64 %r64, i64 %s64, i64 %t64, i64 %u64, i64 %v64… 587 %t64 = zext i32 %t to i64 594 …i64 %m64, i64 %n64, i64 %o64, i64 %p64, i64 %q64, i64 %r64, i64 %s64, i64 %t64, i64 %u64, i64 %v64… 613 %addt = add i64 %adds, %t64
|
/external/llvm/test/CodeGen/X86/ |
D | bswap-inline-asm.ll | 83 ; CHECK-LABEL: t64: 85 define i64 @t64(i64 %x) nounwind {
|
/external/llvm-project/llvm/test/Transforms/Reassociate/ |
D | 2012-05-08-UndefLeak.ll | 76 %t64 = add i64 %t63, %t29 77 %t65 = add i64 %t64, %t30
|
/external/llvm/test/Transforms/Reassociate/ |
D | 2012-05-08-UndefLeak.ll | 76 %t64 = add i64 %t63, %t29 77 %t65 = add i64 %t64, %t30
|
/external/llvm-project/llvm/test/DebugInfo/X86/ |
D | split-dwarf-v5-ranges.ll | 5 …: llc -dwarf64 -split-dwarf-file=foo.dwo -mtriple=x86_64-unknown-linux-gnu -filetype=obj %s -o %t64 6 ; RUN: llvm-dwarfdump -v -debug-info -debug-rnglists %t64 | \
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/ |
D | reassoc-scalar.ll | 121 %t64 = zext i32 %tid to i64 122 %add1 = getelementptr [4 x i32], [4 x i32] addrspace(1)* @var, i64 0, i64 %t64
|
/external/llvm-project/llvm/test/CodeGen/Hexagon/ |
D | rdf-filter-defs.ll | 165 %t64 = getelementptr inbounds %type.0, %type.0* %p2, i32 0, i32 3 166 %t65 = load i32, i32* %t64, align 4
|
/external/llvm-project/llvm/test/Transforms/PhaseOrdering/X86/ |
D | nancvt.ll | 145 %t64 = load i64, i64* %t6263, align 8 146 %t6465 = trunc i64 %t64 to i32
|