/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
riprel1.asm | 21 a64 mov rax, [val] ; 48 8b ... (32-bit disp) label 22 a64 mov rax, [dword val] ; 48 8b ... (32-bit disp) label 23 a64 mov rax, [qword val] ; 48 a1 ... (64-bit disp) label 31 a64 mov rbx, [val] ; 48 8b ... (32-bit disp) label 32 a64 mov rbx, [dword val] ; 48 8b ... (32-bit disp) label 33 ;a64 mov rbx, [qword val] ; illegal (can't have 64-bit disp) 53 a64 mov rax, [val] ; 48 8b ... (32-bit disp, RIP-rel) label 54 a64 mov rax, [dword val] ; 48 8b ... (32-bit disp, RIP-rel) label 55 a64 mov rax, [qword val] ; 48 a1 ... (64-bit disp, ABS) label 63 a64 mov rbx, [val] ; 48 8b ... (32-bit disp, RIP-rel label 64 a64 mov rbx, [dword val] ; 48 8b ... (32-bit disp, RIP-rel) label [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface_atomic.cc | 46 typedef unsigned long long a64; // NOLINT typedef 255 static atomic_uint64_t *to_atomic(const volatile a64 *a) { 524 a64 __tsan_atomic64_load(const volatile a64 *a, morder mo) { 551 void __tsan_atomic64_store(volatile a64 *a, a64 v, morder mo) { 578 a64 __tsan_atomic64_exchange(volatile a64 *a, a64 v, morder mo) { 605 a64 __tsan_atomic64_fetch_add(volatile a64 *a, a64 v, morder mo) [all...] |
/external/elfutils/0.153/libebl/ |
eblobjnote.c | 86 Elf64_Addr a64[3]; member in union:__anon773 139 pc = addrs.a64[0]; 140 base = addrs.a64[1]; 141 sem = addrs.a64[2];
|
/external/elfutils/0.153/libdwfl/ |
linux-proc-maps.c | 90 Elf64_auxv_t a64[sizeof (long int) * 2 * 64 / sizeof (Elf64_auxv_t)]; member in union:__anon770 114 for (size_t i = 0; (char *) &d.a64[i] < &d.buffer[nread]; ++i) 115 if (d.a64[i].a_type == AT_SYSINFO_EHDR) 117 *sysinfo_ehdr = d.a64[i].a_un.a_val; 124 else if (d.a64[i].a_type == AT_PAGESZ 126 dwfl->segment_align = d.a64[i].a_un.a_val;
|
link_map.c | 85 Elf64_auxv_t a64[size / sizeof (Elf64_auxv_t)]; member in union:__anon762 90 if (u->a64[i].a_type == BE64 (PROBE_TYPE) 91 && u->a64[i].a_un.a_val == BE64 (PROBE_VAL64)) 97 if (u->a64[i].a_type == LE64 (PROBE_TYPE) 98 && u->a64[i].a_un.a_val == LE64 (PROBE_VAL64)) 302 Elf64_Addr a64[n]; 318 addrs[i] = BE64 (in->a64[i]); 321 addrs[i] = LE64 (in->a64[i]); 575 Elf64_Addr a64; 584 ? BE64 (u->a64) : LE64 (u->a64)) 300 Elf64_Addr a64[n]; member in union:__anon763 572 Elf64_Addr a64; member in union:__anon764 [all...] |
/external/chromium_org/third_party/opus/src/silk/ |
MacroDebug.h | 167 static OPUS_INLINE opus_int64 silk_ADD_SAT64_( opus_int64 a64, opus_int64 b64, char *file, int line) { 170 res = ((((a64) + (b64)) & 0x8000000000000000LL) == 0 ? \ 171 ((((a64) & (b64)) & 0x8000000000000000LL) != 0 ? silk_int64_MIN : (a64)+(b64)) : \ 172 ((((a64) | (b64)) & 0x8000000000000000LL) == 0 ? silk_int64_MAX : (a64)+(b64)) ); 173 if( res != a64 + b64 ) { 175 if ( !(( res == silk_int64_MAX && ( ( a64 >> 1 ) + ( b64 >> 1 ) > ( silk_int64_MAX >> 3 ) ) ) || 176 ( res == silk_int64_MIN && ( ( a64 >> 1 ) + ( b64 >> 1 ) < ( silk_int64_MIN >> 3 ) ) ) ) ) 182 fail = res != a64 + b64 [all...] |
macros.h | 64 /* a64 + (b32 * c32) */ 65 #define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((opus_int64)(b32) * (opus_int64)(c32))))
|
MacroCount.h | 190 static OPUS_INLINE opus_int64 silk_SMLAL(opus_int64 a64, opus_int32 b32, opus_int32 c32){ 193 ret = a64 + ((opus_int64)(b32) * /*(opus_int64)*/(c32)); 197 static OPUS_INLINE opus_int64 silk_SMLALBB(opus_int64 a64, opus_int16 b16, opus_int16 c16){ 200 ret = a64 + ((opus_int64)(b16) * /*(opus_int64)*/(c16)); 567 static OPUS_INLINE opus_int64 silk_ADD_SAT64( opus_int64 a64, opus_int64 b64 ) { 570 res = ((((a64) + (b64)) & 0x8000000000000000LL) == 0 ? \ 571 ((((a64) & (b64)) & 0x8000000000000000LL) != 0 ? silk_int64_MIN : (a64)+(b64)) : \ 572 ((((a64) | (b64)) & 0x8000000000000000LL) == 0 ? silk_int64_MAX : (a64)+(b64)) ) [all...] |
SigProc_FIX.h | 411 #define silk_SMLALBB(a64, b16, c16) silk_ADD64((a64),(opus_int64)((opus_int32)(b16) * (opus_int32)(c16))) [all...] |
/external/libopus/silk/ |
MacroDebug.h | 167 static OPUS_INLINE opus_int64 silk_ADD_SAT64_( opus_int64 a64, opus_int64 b64, char *file, int line) { 170 res = ((((a64) + (b64)) & 0x8000000000000000LL) == 0 ? \ 171 ((((a64) & (b64)) & 0x8000000000000000LL) != 0 ? silk_int64_MIN : (a64)+(b64)) : \ 172 ((((a64) | (b64)) & 0x8000000000000000LL) == 0 ? silk_int64_MAX : (a64)+(b64)) ); 173 if( res != a64 + b64 ) { 175 if ( !(( res == silk_int64_MAX && ( ( a64 >> 1 ) + ( b64 >> 1 ) > ( silk_int64_MAX >> 3 ) ) ) || 176 ( res == silk_int64_MIN && ( ( a64 >> 1 ) + ( b64 >> 1 ) < ( silk_int64_MIN >> 3 ) ) ) ) ) 182 fail = res != a64 + b64 [all...] |
macros.h | 64 /* a64 + (b32 * c32) */ 65 #define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((opus_int64)(b32) * (opus_int64)(c32))))
|
MacroCount.h | 190 static OPUS_INLINE opus_int64 silk_SMLAL(opus_int64 a64, opus_int32 b32, opus_int32 c32){ 193 ret = a64 + ((opus_int64)(b32) * /*(opus_int64)*/(c32)); 197 static OPUS_INLINE opus_int64 silk_SMLALBB(opus_int64 a64, opus_int16 b16, opus_int16 c16){ 200 ret = a64 + ((opus_int64)(b16) * /*(opus_int64)*/(c16)); 567 static OPUS_INLINE opus_int64 silk_ADD_SAT64( opus_int64 a64, opus_int64 b64 ) { 570 res = ((((a64) + (b64)) & 0x8000000000000000LL) == 0 ? \ 571 ((((a64) & (b64)) & 0x8000000000000000LL) != 0 ? silk_int64_MIN : (a64)+(b64)) : \ 572 ((((a64) | (b64)) & 0x8000000000000000LL) == 0 ? silk_int64_MAX : (a64)+(b64)) ) [all...] |
SigProc_FIX.h | 411 #define silk_SMLALBB(a64, b16, c16) silk_ADD64((a64),(opus_int64)((opus_int32)(b16) * (opus_int32)(c16))) [all...] |
/external/chromium_org/net/base/ |
int128.h | 287 uint64 a64 = hi_ & 0xffffffffu; local 297 uint64 c96 = a96 * b00 + a64 * b32 + a32 * b64 + a00 * b96; 298 uint64 c64 = a64 * b00 + a32 * b32 + a00 * b64;
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
osr-regress-max-locals.js | 39 a61, a62, a63, a64;
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
dbghelp.h | 186 static __inline void Address32To64(LPADDRESS a32,LPADDRESS64 a64) { 187 a64->Offset = (ULONG64)(LONG64)(LONG)a32->Offset; 188 a64->Segment = a32->Segment; 189 a64->Mode = a32->Mode; 192 static __inline void Address64To32(LPADDRESS64 a64,LPADDRESS a32) { 193 a32->Offset = (ULONG)a64->Offset; 194 a32->Segment = a64->Segment; 195 a32->Mode = a64->Mode; [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
dbghelp.h | 186 static __inline void Address32To64(LPADDRESS a32,LPADDRESS64 a64) { 187 a64->Offset = (ULONG64)(LONG64)(LONG)a32->Offset; 188 a64->Segment = a32->Segment; 189 a64->Mode = a32->Mode; 192 static __inline void Address64To32(LPADDRESS64 a64,LPADDRESS a32) { 193 a32->Offset = (ULONG)a64->Offset; 194 a32->Segment = a64->Segment; 195 a32->Mode = a64->Mode; [all...] |
/external/clang/test/CodeGen/ |
builtins-mips.c | 8 typedef long long a64; typedef 23 a64 a64_r, a64_a, a64_b;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/ |
x86insn_nasm.gperf | 14 a64, NULL, X86_ADDRSIZE>>8, 0x40, 0, 0, 0, ONLY_64, 0, 0, 0 [all...] |
/external/chromium_org/third_party/usb_ids/ |
usb.ids | [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
pdfjs.js | [all...] |