/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/ |
io.h | 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); [all...] |
/external/stlport/stlport/stl/ |
_limits.c | 36 # define __declare_numeric_base_member(__type, __mem) \ 38 const __type _Numeric_limits_base<__number>:: __mem 65 # define __declare_integer_limits_member(__type, __mem) \ 67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem 102 # define __declare_float_limits_member(__type, __mem) \ 113 __mem
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_limits.c | 36 # define __declare_numeric_base_member(__type, __mem) \ 38 const __type _Numeric_limits_base<__number>:: __mem 65 # define __declare_integer_limits_member(__type, __mem) \ 67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem 102 # define __declare_float_limits_member(__type, __mem) \ 113 __mem
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_limits.c | 36 # define __declare_numeric_base_member(__type, __mem) \ 38 const __type _Numeric_limits_base<__number>:: __mem 65 # define __declare_integer_limits_member(__type, __mem) \ 67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem 102 # define __declare_float_limits_member(__type, __mem) \ 113 __mem
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_limits.c | 36 # define __declare_numeric_base_member(__type, __mem) \ 38 const __type _Numeric_limits_base<__number>:: __mem 65 # define __declare_integer_limits_member(__type, __mem) \ 67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem 102 # define __declare_float_limits_member(__type, __mem) \ 113 __mem
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_limits.c | 36 # define __declare_numeric_base_member(__type, __mem) \ 38 const __type _Numeric_limits_base<__number>:: __mem 65 # define __declare_integer_limits_member(__type, __mem) \ 67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem 102 # define __declare_float_limits_member(__type, __mem) \ 113 __mem
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_limits.c | 36 # define __declare_numeric_base_member(__type, __mem) \ 38 const __type _Numeric_limits_base<__number>:: __mem 65 # define __declare_integer_limits_member(__type, __mem) \ 67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem 102 # define __declare_float_limits_member(__type, __mem) \ 113 __mem
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_limits.c | 36 # define __declare_numeric_base_member(__type, __mem) \ 38 const __type _Numeric_limits_base<__number>:: __mem 65 # define __declare_integer_limits_member(__type, __mem) \ 67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem 102 # define __declare_float_limits_member(__type, __mem) \ 113 __mem
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
shared_ptr_base.h | 473 _Sp_cd_type* __mem = 0; local 476 __mem = _Alloc_traits::allocate(__a2, 1); 477 _Alloc_traits::construct(__a2, __mem, 479 _M_pi = __mem; 484 if (__mem) 485 _Alloc_traits::deallocate(__a2, __mem, 1); 499 _Sp_cp_type* __mem = _Alloc_traits::allocate(__a2, 1); local 502 _Alloc_traits::construct(__a2, __mem, std::move(__a), 504 _M_pi = __mem; 508 _Alloc_traits::deallocate(__a2, __mem, 1) 534 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1); local [all...] |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
shared_ptr_base.h | 473 _Sp_cd_type* __mem = 0; local 476 __mem = _Alloc_traits::allocate(__a2, 1); 477 _Alloc_traits::construct(__a2, __mem, 479 _M_pi = __mem; 484 if (__mem) 485 _Alloc_traits::deallocate(__a2, __mem, 1); 499 _Sp_cp_type* __mem = _Alloc_traits::allocate(__a2, 1); local 502 _Alloc_traits::construct(__a2, __mem, std::move(__a), 504 _M_pi = __mem; 508 _Alloc_traits::deallocate(__a2, __mem, 1) 534 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1); local [all...] |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
shared_ptr_base.h | 473 _Sp_cd_type* __mem = 0; local 476 __mem = _Alloc_traits::allocate(__a2, 1); 477 _Alloc_traits::construct(__a2, __mem, 479 _M_pi = __mem; 484 if (__mem) 485 _Alloc_traits::deallocate(__a2, __mem, 1); 499 _Sp_cp_type* __mem = _Alloc_traits::allocate(__a2, 1); local 502 _Alloc_traits::construct(__a2, __mem, std::move(__a), 504 _M_pi = __mem; 508 _Alloc_traits::deallocate(__a2, __mem, 1) 534 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1); local [all...] |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
shared_ptr_base.h | 473 _Sp_cd_type* __mem = 0; local 476 __mem = _Alloc_traits::allocate(__a, 1); 477 _Alloc_traits::construct(__a, __mem, __p, std::move(__d)); 478 _M_pi = __mem; 483 if (__mem) 484 _Alloc_traits::deallocate(__a, __mem, 1); 496 _Sp_cd_type* __mem = 0; local 499 __mem = _Alloc_traits::allocate(__a2, 1); 500 _Alloc_traits::construct(__a2, __mem, 502 _M_pi = __mem; 522 _Sp_cp_type* __mem = _Alloc_traits::allocate(__a2, 1); local [all...] |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
shared_ptr_base.h | 473 _Sp_cd_type* __mem = 0; local 476 __mem = _Alloc_traits::allocate(__a, 1); 477 _Alloc_traits::construct(__a, __mem, __p, std::move(__d)); 478 _M_pi = __mem; 483 if (__mem) 484 _Alloc_traits::deallocate(__a, __mem, 1); 496 _Sp_cd_type* __mem = 0; local 499 __mem = _Alloc_traits::allocate(__a2, 1); 500 _Alloc_traits::construct(__a2, __mem, 502 _M_pi = __mem; 522 _Sp_cp_type* __mem = _Alloc_traits::allocate(__a2, 1); local [all...] |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
shared_ptr_base.h | 590 _Sp_cd_type* __mem = 0; local 593 __mem = _Alloc_traits::allocate(__a2, 1); 594 _Alloc_traits::construct(__a2, __mem, 596 _M_pi = __mem; 601 if (__mem) 602 _Alloc_traits::deallocate(__a2, __mem, 1); 616 _Sp_cp_type* __mem = _Alloc_traits::allocate(__a2, 1); local 619 _Alloc_traits::construct(__a2, __mem, std::move(__a), 621 _M_pi = __mem; 625 _Alloc_traits::deallocate(__a2, __mem, 1) 651 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1); local [all...] |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/ |
printf.h | 91 typedef void printf_va_arg_function (void *__mem, va_list *__ap);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
printf.h | 91 typedef void printf_va_arg_function (void *__mem, va_list *__ap);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/ |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
locale_facets_nonio.tcc | 645 int __mem = 0; 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, 725 __tm->tm_mon = __mem - 1; 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; [all...] |