HomeSort by relevance Sort by last modified time
    Searched refs:a64 (Results 1 - 19 of 19) sorted by null

  /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 __tsan_atomic64 a64; typedef
402 a64 __tsan_atomic64_load(const volatile a64 *a, morder mo) {
424 void __tsan_atomic64_store(volatile a64 *a, a64 v, morder mo) {
446 a64 __tsan_atomic64_exchange(volatile a64 *a, a64 v, morder mo) {
468 a64 __tsan_atomic64_fetch_add(volatile a64 *a, a64 v, morder mo)
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
MacroDebug.h 167 static 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 61 /* a64 + (b32 * c32) */
62 #define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((opus_int64)(b32) * (opus_int64)(c32))))
MacroCount.h 190 static 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 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 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 414 #define silk_SMLALBB(a64, b16, c16) silk_ADD64((a64),(opus_int64)((opus_int32)(b16) * (opus_int32)(c16)))
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
type_with_alignment.hpp 228 struct __attribute__((__aligned__(64))) a64 {}; struct in namespace:boost::align
238 template<> class type_with_alignment<64> { public: typedef align::a64 type; };
247 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a64,true)
281 struct __declspec(align(64)) a64
284 typedef a64 type;
322 align::a64,
340 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a64,true)
  /external/elfutils/libdwfl/
linux-proc-maps.c 90 Elf64_auxv_t a64[sizeof (long int) * 2 * 64 / sizeof (Elf64_auxv_t)]; member in union:__anon19924
108 for (size_t i = 0; (char *) &d.a64[i] < &d.buffer[nread]; ++i)
109 if (d.a64[i].a_type == AT_SYSINFO_EHDR)
111 *sysinfo_ehdr = d.a64[i].a_un.a_val;
link_map.c 85 Elf64_auxv_t a64[size / sizeof (Elf64_auxv_t)]; member in union:__anon19916
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))
309 Elf64_Addr a64[n];
325 addrs[i] = BE64 (in->a64[i]);
328 addrs[i] = LE64 (in->a64[i]);
579 Elf64_Addr a64;
588 ? BE64 (u->a64) : LE64 (u->a64))
307 Elf64_Addr a64[n]; member in union:__anon19917
576 Elf64_Addr a64; member in union:__anon19918
    [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/v8/test/mjsunit/compiler/
regress-max-locals-for-osr.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/valgrind/main/VEX/priv/
guest_ppc_toIR.c 14221 IRTemp a64 = newTemp(Ity_I64); local
    [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]

Completed in 1636 milliseconds