Home
last modified time | relevance | path

Searched refs:hword (Results 1 – 12 of 12) sorted by relevance

/external/llvm/test/CodeGen/AArch64/
Daarch64_tree_tests.ll8 ; CHECK: .hword 32768
9 ; CHECK: .hword 32767
10 ; CHECK: .hword 4664
11 ; CHECK: .hword 32767
12 ; CHECK: .hword 32768
13 ; CHECK: .hword 32768
14 ; CHECK: .hword 0
15 ; CHECK: .hword 0
26 ; CHECK: .hword 32768
27 ; CHECK: .hword 32766
[all …]
Demutls.ll179 ; ARM64-NEXT: .hword 15
/external/llvm/test/MC/ARM/
Ddirective-literals.s13 hword: label
14 .hword 0
15 .hword 0xdefe
17 @ CHECK-LABEL: hword
Darm-elf-relocation-diagnostics.s11 .hword target(sbrel)
13 @ CHECK: .hword target(sbrel)
/external/llvm/test/CodeGen/ARM/
Dunaligned_load_store.ll36 define void @hword(double* %a, double* %b) nounwind {
38 ; EXPANDED-LABEL: hword:
44 ; UNALIGNED-LABEL: hword:
/external/llvm/test/MC/Mips/
Dmips-data-directives.s37 .hword 0xc0de
41 .hword label
/external/llvm/test/MC/AArch64/
Dmapping-within-section.s9 .hword 2
Darm64-mapping-within-section.s9 .hword 2
Darm64-elf-relocs.s52 .hword sym + 4 - .
59 .hword sym
/external/llvm/lib/Target/PowerPC/
DREADME_P9.txt65 VR[VRT].word[i] ← EXTS32(VR[VRB].word[i].hword[1])
81 VR[VRT].dword[i] ← EXTS64(VR[VRB].dword[i].hword[3])
171 . Note! Their VA is accessed only 2 byte, i.e. VA.hword[3] (VA.bit[48:63])
/external/v8/src/s390/
Dsimulator-s390.h283 inline int16_t ByteReverse(int16_t hword);
Dsimulator-s390.cc5537 int16_t Simulator::ByteReverse(int16_t hword) { in ByteReverse() argument
5539 return __builtin_bswap16(hword); in ByteReverse()
5541 return (hword << 8) | ((hword >> 8) & 0x00ff); in ByteReverse()