Home
last modified time | relevance | path

Searched refs:hword (Results 1 – 14 of 14) 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/valgrind/none/tests/ppc64/
Dppc64_helpers.h2071 long hword; in dissect_national_decimal() local
2078 hword = dword1 >> (i) & 0x00ff; in dissect_national_decimal()
2082 if (((i > 0) && (hword < 0x30)) || (hword > 0x39)) printf("!"); in dissect_national_decimal()
2084 printf("%04lx ", hword); in dissect_national_decimal()
2088 hword = dword0 >> (i) & 0x00ff; in dissect_national_decimal()
2090 if ((hword < 0x30) || (hword > 0x39)) printf("!"); in dissect_national_decimal()
2092 printf("%04lx ", hword); in dissect_national_decimal()
/external/valgrind/VEX/priv/
Dguest_ppc_helpers.c418 ULong tmp = 0, hword; in convert_from_national_helper() local
424 hword = ( src_hi >> ( ( 3 - i ) * 16 ) ) & 0xF; in convert_from_national_helper()
425 tmp = tmp | ( hword << ( ( 7 - i ) * 4 ) ); in convert_from_national_helper()
428 hword = ( src_low >> ( ( 3 - i ) * 16 ) ) & 0xF; in convert_from_national_helper()
429 tmp = tmp | ( hword << ( ( 3 - i ) * 4 ) ); in convert_from_national_helper()
/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.cc5557 int16_t Simulator::ByteReverse(int16_t hword) { in ByteReverse() argument
5559 return __builtin_bswap16(hword); in ByteReverse()
5561 return (hword << 8) | ((hword >> 8) & 0x00ff); in ByteReverse()