Searched defs:a64 (Results 1 - 10 of 10) sorted by relevance

/external/elfutils/libebl/
H A Deblobjnote.c63 Elf64_Addr a64[3]; member in union:__anon5697
116 pc = addrs.a64[0];
117 base = addrs.a64[1];
118 sem = addrs.a64[2];
/external/clang/test/CodeGen/
H A Dbuiltins-mips.c8 typedef long long a64; typedef
23 a64 a64_r, a64_a, a64_b;
/external/elfutils/libdwfl/
H A Dlinux-proc-maps.c111 Elf64_auxv_t a64[64]; member in union:__anon5694
116 eu_static_assert (sizeof d.a64 == sizeof d.a32);
117 nread = pread_retry (fd, d.a64, sizeof d.a64, offset);
137 for (size_t a64i = 0; a64i < nread / sizeof d.a64[0]; a64i++)
139 const Elf64_auxv_t *a64 = d.a64 + a64i; local
140 switch (a64->a_type)
143 sysinfo_ehdr64 = a64->a_un.a_val;
146 segment_align64 = a64
[all...]
H A Dlink_map.c46 do_check64 (size_t i, const Elf64_auxv_t (*a64)[], uint_fast8_t *elfdata) argument
51 uint64_t type = read_8ubyte_unaligned_noncvt (&(*a64)[i].a_type);
52 uint64_t val = read_8ubyte_unaligned_noncvt (&(*a64)[i].a_un.a_val);
71 #define check64(n) do_check64 (n, a64, elfdata)
108 const Elf64_auxv_t (*a64)[size / sizeof (Elf64_auxv_t)] = (void *) auxv;
288 Elf64_Addr (*a64)[n] = (void *) a32;
303 addrs[i] = BE64 (read_8ubyte_unaligned_noncvt (&(*a64)[i]));
306 addrs[i] = LE64 (read_8ubyte_unaligned_noncvt (&(*a64)[i]));
645 Elf64_Addr a64;
654 ? BE64 (u->a64)
642 Elf64_Addr a64; member in union:__anon5692
[all...]
/external/gemmlowp/internal/
H A Dfixedpoint.h149 int64_t a64 = a; local
151 int64_t sum = a64 + b64;
/external/libopus/silk/
H A DMacroCount.h190 static OPUS_INLINE opus_int64 silk_SMLAL(opus_int64 a64, opus_int32 b32, opus_int32 c32){ argument
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){ argument
200 ret = a64 + ((opus_int64)(b16) * /*(opus_int64)*/(c16));
567 static OPUS_INLINE opus_int64 silk_ADD_SAT64( opus_int64 a64, opus_int64 b64 ) { argument
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)
596 silk_SUB_SAT64( opus_int64 a64, opus_int64 b64 ) argument
[all...]
H A DMacroDebug.h167 static OPUS_INLINE opus_int64 silk_ADD_SAT64_( opus_int64 a64, opus_int64 b64, char *file, int line) { argument
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
228 silk_SUB_SAT64_( opus_int64 a64, opus_int64 b64, char *file, int line ) argument
379 silk_SMULL_(opus_int64 a64, opus_int64 b64, char *file, int line) argument
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_atomic.cc34 typedef unsigned long long a64; // NOLINT typedef
216 static atomic_uint64_t *to_atomic(const volatile a64 *a) {
217 return reinterpret_cast<atomic_uint64_t *>(const_cast<a64 *>(a));
537 a64 __tsan_atomic64_load(const volatile a64 *a, morder mo) {
564 void __tsan_atomic64_store(volatile a64 *a, a64 v, morder mo) {
591 a64 __tsan_atomic64_exchange(volatile a64 *a, a64
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h186 static __inline void Address32To64(LPADDRESS a32,LPADDRESS64 a64) { argument
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) { argument
193 a32->Offset = (ULONG)a64->Offset;
194 a32->Segment = a64->Segment;
195 a32->Mode = a64->Mode;
/external/valgrind/VEX/priv/
H A Dguest_ppc_toIR.c15822 IRTemp a64 = newTemp(Ity_I64); local
15829 assign( a64, unop(word_op, mkexpr(vA)) );
15830 assign( ahi32, unop(Iop_64HIto32, mkexpr(a64)) );
15831 assign( alo32, unop(Iop_64to32, mkexpr(a64)) );

Completed in 863 milliseconds