/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
functional_hash.h | 41 operator()(_Tp __val) const; 57 hash<_Tp>::operator()(_Tp __val) const \ 58 { return static_cast<size_t>(__val); } 133 hash<float>::operator()(float __val) const 138 if (__val != 0.0f) 139 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val), 140 sizeof(__val)); 147 hash<double>::operator()(double __val) const 152 if (__val != 0.0) 153 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val), [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
functional_hash.h | 41 operator()(_Tp __val) const; 57 hash<_Tp>::operator()(_Tp __val) const \ 58 { return static_cast<size_t>(__val); } 133 hash<float>::operator()(float __val) const 138 if (__val != 0.0f) 139 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val), 140 sizeof(__val)); 147 hash<double>::operator()(double __val) const 152 if (__val != 0.0) 153 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val), [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
functional_hash.h | 41 operator()(_Tp __val) const; 57 hash<_Tp>::operator()(_Tp __val) const \ 58 { return static_cast<size_t>(__val); } 133 hash<float>::operator()(float __val) const 138 if (__val != 0.0f) 139 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val), 140 sizeof(__val)); 147 hash<double>::operator()(double __val) const 152 if (__val != 0.0) 153 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val), [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/ |
functional_hash.h | 41 operator()(_Tp __val) const; 57 hash<_Tp>::operator()(_Tp __val) const \ 58 { return static_cast<size_t>(__val); } 133 hash<float>::operator()(float __val) const 138 if (__val != 0.0f) 139 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val), 140 sizeof(__val)); 147 hash<double>::operator()(double __val) const 152 if (__val != 0.0) 153 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val), [all...] |
/bionic/libc/kernel/arch-mips/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); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bw (…) [all...] |
/development/ndk/platforms/android-9/arch-mips/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); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bw (…) [all...] |
/prebuilts/ndk/8/platforms/android-14/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); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bw (…) [all...] |
/prebuilts/ndk/8/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); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bw (…) [all...] |
/prebuilts/ndk/9/platforms/android-14/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); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bw (…) [all...] |
/prebuilts/ndk/9/platforms/android-18/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); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bw (…) [all...] |
/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); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bw (…) [all...] |
/external/stlport/stlport/stl/ |
_heap.c | 43 _Distance __holeIndex, _Distance __topIndex, _Tp __val) 46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) { 51 *(__first + __holeIndex) = __val; 77 _Distance __topIndex, _Tp __val, _Compare __comp) 80 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __val)) { 81 _STLP_VERBOSE_ASSERT(!__comp(__val, *(__first + __parent)), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 86 *(__first + __holeIndex) = __val; 112 _Distance __len, _Tp __val) { 126 __push_heap(__first, __holeIndex, __topIndex, __val); 147 _Distance __len, _Tp __val, _Compare __comp [all...] |
_algobase.c | 113 const _Tp& __val, 118 if (*__first == __val) return __first; 121 if (*__first == __val) return __first; 124 if (*__first == __val) return __first; 127 if (*__first == __val) return __first; 133 if (*__first == __val) return __first; 136 if (*__first == __val) return __first; 139 if (*__first == __val) return __first; 148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) { 149 void *res = memchr(__first, __val, __last - __first) [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_heap.c | 43 _Distance __holeIndex, _Distance __topIndex, _Tp __val) 46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) { 51 *(__first + __holeIndex) = __val; 77 _Distance __topIndex, _Tp __val, _Compare __comp) 80 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __val)) { 81 _STLP_VERBOSE_ASSERT(!__comp(__val, *(__first + __parent)), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 86 *(__first + __holeIndex) = __val; 112 _Distance __len, _Tp __val) { 126 __push_heap(__first, __holeIndex, __topIndex, __val); 147 _Distance __len, _Tp __val, _Compare __comp [all...] |
_algobase.c | 113 const _Tp& __val, 118 if (*__first == __val) return __first; 121 if (*__first == __val) return __first; 124 if (*__first == __val) return __first; 127 if (*__first == __val) return __first; 133 if (*__first == __val) return __first; 136 if (*__first == __val) return __first; 139 if (*__first == __val) return __first; 148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) { 149 void *res = memchr(__first, __val, __last - __first) [all...] |
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_heap.c | 43 _Distance __holeIndex, _Distance __topIndex, _Tp __val) 46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) { 51 *(__first + __holeIndex) = __val; 77 _Distance __topIndex, _Tp __val, _Compare __comp) 80 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __val)) { 81 _STLP_VERBOSE_ASSERT(!__comp(__val, *(__first + __parent)), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 86 *(__first + __holeIndex) = __val; 112 _Distance __len, _Tp __val) { 126 __push_heap(__first, __holeIndex, __topIndex, __val); 147 _Distance __len, _Tp __val, _Compare __comp [all...] |
_algobase.c | 113 const _Tp& __val, 118 if (*__first == __val) return __first; 121 if (*__first == __val) return __first; 124 if (*__first == __val) return __first; 127 if (*__first == __val) return __first; 133 if (*__first == __val) return __first; 136 if (*__first == __val) return __first; 139 if (*__first == __val) return __first; 148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) { 149 void *res = memchr(__first, __val, __last - __first) [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_heap.c | 43 _Distance __holeIndex, _Distance __topIndex, _Tp __val) 46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) { 51 *(__first + __holeIndex) = __val; 77 _Distance __topIndex, _Tp __val, _Compare __comp) 80 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __val)) { 81 _STLP_VERBOSE_ASSERT(!__comp(__val, *(__first + __parent)), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 86 *(__first + __holeIndex) = __val; 112 _Distance __len, _Tp __val) { 126 __push_heap(__first, __holeIndex, __topIndex, __val); 147 _Distance __len, _Tp __val, _Compare __comp [all...] |
_algobase.c | 113 const _Tp& __val, 118 if (*__first == __val) return __first; 121 if (*__first == __val) return __first; 124 if (*__first == __val) return __first; 127 if (*__first == __val) return __first; 133 if (*__first == __val) return __first; 136 if (*__first == __val) return __first; 139 if (*__first == __val) return __first; 148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) { 149 void *res = memchr(__first, __val, __last - __first) [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_heap.c | 43 _Distance __holeIndex, _Distance __topIndex, _Tp __val) 46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) { 51 *(__first + __holeIndex) = __val; 77 _Distance __topIndex, _Tp __val, _Compare __comp) 80 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __val)) { 81 _STLP_VERBOSE_ASSERT(!__comp(__val, *(__first + __parent)), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 86 *(__first + __holeIndex) = __val; 112 _Distance __len, _Tp __val) { 126 __push_heap(__first, __holeIndex, __topIndex, __val); 147 _Distance __len, _Tp __val, _Compare __comp [all...] |
_algobase.c | 113 const _Tp& __val, 118 if (*__first == __val) return __first; 121 if (*__first == __val) return __first; 124 if (*__first == __val) return __first; 127 if (*__first == __val) return __first; 133 if (*__first == __val) return __first; 136 if (*__first == __val) return __first; 139 if (*__first == __val) return __first; 148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) { 149 void *res = memchr(__first, __val, __last - __first) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_heap.c | 43 _Distance __holeIndex, _Distance __topIndex, _Tp __val) 46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) { 51 *(__first + __holeIndex) = __val; 77 _Distance __topIndex, _Tp __val, _Compare __comp) 80 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __val)) { 81 _STLP_VERBOSE_ASSERT(!__comp(__val, *(__first + __parent)), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 86 *(__first + __holeIndex) = __val; 112 _Distance __len, _Tp __val) { 126 __push_heap(__first, __holeIndex, __topIndex, __val); 147 _Distance __len, _Tp __val, _Compare __comp [all...] |
_algobase.c | 113 const _Tp& __val, 118 if (*__first == __val) return __first; 121 if (*__first == __val) return __first; 124 if (*__first == __val) return __first; 127 if (*__first == __val) return __first; 133 if (*__first == __val) return __first; 136 if (*__first == __val) return __first; 139 if (*__first == __val) return __first; 148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) { 149 void *res = memchr(__first, __val, __last - __first) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_heap.c | 43 _Distance __holeIndex, _Distance __topIndex, _Tp __val) 46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) { 51 *(__first + __holeIndex) = __val; 77 _Distance __topIndex, _Tp __val, _Compare __comp) 80 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __val)) { 81 _STLP_VERBOSE_ASSERT(!__comp(__val, *(__first + __parent)), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 86 *(__first + __holeIndex) = __val; 112 _Distance __len, _Tp __val) { 126 __push_heap(__first, __holeIndex, __topIndex, __val); 147 _Distance __len, _Tp __val, _Compare __comp [all...] |
_algobase.c | 113 const _Tp& __val, 118 if (*__first == __val) return __first; 121 if (*__first == __val) return __first; 124 if (*__first == __val) return __first; 127 if (*__first == __val) return __first; 133 if (*__first == __val) return __first; 136 if (*__first == __val) return __first; 139 if (*__first == __val) return __first; 148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) { 149 void *res = memchr(__first, __val, __last - __first) [all...] |