/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/ |
vp9_convolve8_dspr2.c | 66 __asm__ __volatile__ ( 185 __asm__ __volatile__ ( 367 __asm__ __volatile__ ( [all...] |
vp9_convolve2_avg_horiz_dspr2.c | 47 __asm__ __volatile__ ( 142 __asm__ __volatile__ ( 298 __asm__ __volatile__ ( 549 __asm__ __volatile__ ( [all...] |
vp9_convolve2_dspr2.c | 47 __asm__ __volatile__ ( 141 __asm__ __volatile__ ( 284 __asm__ __volatile__ ( 517 __asm__ __volatile__ ( [all...] |
vp9_convolve2_horiz_dspr2.c | 46 __asm__ __volatile__ ( 129 __asm__ __volatile__ ( 260 __asm__ __volatile__ ( 469 __asm__ __volatile__ ( [all...] |
vp9_convolve8_avg_horiz_dspr2.c | 50 __asm__ __volatile__ ( 172 __asm__ __volatile__ ( 365 __asm__ __volatile__ ( [all...] |
vp9_convolve8_horiz_dspr2.c | 50 __asm__ __volatile__ ( 161 __asm__ __volatile__ ( 331 __asm__ __volatile__ ( [all...] |
vp9_convolve8_vert_dspr2.c | 58 __asm__ __volatile__ ( 213 __asm__ __volatile__ ( 355 __asm__ __volatile__ (
|
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
vp9_convolve8_dspr2.c | 66 __asm__ __volatile__ ( 185 __asm__ __volatile__ ( 367 __asm__ __volatile__ ( [all...] |
vp9_convolve2_avg_horiz_dspr2.c | 47 __asm__ __volatile__ ( 142 __asm__ __volatile__ ( 298 __asm__ __volatile__ ( 549 __asm__ __volatile__ ( [all...] |
vp9_convolve2_dspr2.c | 47 __asm__ __volatile__ ( 141 __asm__ __volatile__ ( 284 __asm__ __volatile__ ( 517 __asm__ __volatile__ ( [all...] |
vp9_convolve2_horiz_dspr2.c | 46 __asm__ __volatile__ ( 129 __asm__ __volatile__ ( 260 __asm__ __volatile__ ( 469 __asm__ __volatile__ ( [all...] |
vp9_convolve8_avg_horiz_dspr2.c | 50 __asm__ __volatile__ ( 172 __asm__ __volatile__ ( 365 __asm__ __volatile__ ( [all...] |
vp9_convolve8_horiz_dspr2.c | 50 __asm__ __volatile__ ( 161 __asm__ __volatile__ ( 331 __asm__ __volatile__ ( [all...] |
vp9_convolve8_vert_dspr2.c | 58 __asm__ __volatile__ ( 213 __asm__ __volatile__ ( 355 __asm__ __volatile__ (
|
/development/ndk/platforms/android-9/arch-mips/include/ |
fenv.h | 107 __asm__ __volatile__("cfc1 %0,$31" : "=r" (_fcsr)); 116 __asm__ __volatile__("ctc1 %0,$31" : : "r" (_fcsr));
|
/development/ndk/sources/android/libportable/arch-mips/ |
fenv.c | 112 __asm__ __volatile__("cfc1 %0,$31" : "=r" (_fcsr)); 121 __asm__ __volatile__("ctc1 %0,$31" : : "r" (_fcsr));
|
/external/chromium_org/third_party/freetype2/include/ |
ftconfig.h | 302 __asm__ __volatile__ ( 327 __asm__ __volatile__ (
|
/external/lzma/C/ |
CpuArch.c | 29 __asm__ __volatile__ (
75 __asm__ __volatile__ (
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
linux_syscall_support.h | 796 __asm__ __volatile__("push %%ebx\n" \ 851 __asm__ __volatile__("push %%ebx\n" \ 870 __asm__ __volatile__("push %%ebp\n" \ [all...] |
/art/runtime/arch/x86/ |
context_x86.cc | 87 __asm__ __volatile__(
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
processor.h | 91 #define return_address() ({__asm__ __volatile__("":::"$31");__builtin_return_address(0);})
|
io.h | 47 #define __SLOW_DOWN_IO __asm__ __volatile__( "sb\t$0,0x80(%0)" : : "r" (mips_io_port_base)); 76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); __val = pfx##ioswab##bwlq(__mem, val); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) *__mem = __val; else if (cpu_has_64bits) { unsigned long __flags; type __tmp; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __writeq""\n\t" "dsll32 %L0, %L0, 0" "\n\t" "dsrl32 %L0, %L0, 0" "\n\t" "dsll32 %M0, %M0, 0" "\n\t" "or %L0, %L0, %M0" "\n\t" "sd %L0, %2" "\n\t" ".set mips0" "\n" : "=r" (__tmp) : "0" (__val), "m" (*__mem)); if (irq) local_irq_restore(__flags); } else BUG(); } static inline type pfx##read##bwlq(const volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) __val = *__mem; else if (cpu_has_64bits) { unsigned long __flags; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __readq" "\n\t" "ld %L0, %1" "\n\t" "dsra32 %M0, %L0, 0" "\n\t" "sll %L0, %L0, 0" "\n\t" ".set mips0" "\n" : "=r" (__val) : "m" (*__mem)); if (irq) local_irq_restore(__flags); } else { __val = 0; BUG(); } return pfx##ioswab##bwlq(__mem, __val); }
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_atomic_clang.h | 39 __asm__ __volatile__("" ::: "memory");
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
linux_syscall_support.h | 808 __asm__ __volatile__("push %%ebx\n" \ 863 __asm__ __volatile__("push %%ebx\n" \ 882 __asm__ __volatile__("push %%ebp\n" \ [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/ |
mem.c | 110 __asm__ __volatile__("" : : "r"(ptr) : "memory");
|