Home
last modified time | relevance | path

Searched refs:__to (Results 1 – 12 of 12) sorted by relevance

/external/libcxx/include/
Dcodecvt98 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
102 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const;
105 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
133 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
137 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const;
140 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
168 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
172 intern_type* __to, intern_type* __to_end, intern_type*& __to_nxt) const;
175 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
221 extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const;
[all …]
D__locale544 const char* widen(const char* __low, const char* __high, char_type* __to) const
546 return do_widen(__low, __high, __to);
556 …char_type* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) const
558 return do_narrow(__low, __high, __dfault, __to);
653 const char* widen(const char* __low, const char* __high, char_type* __to) const
655 return do_widen(__low, __high, __to);
665 …const char* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) con…
667 return do_narrow(__low, __high, __dfault, __to);
695 virtual const char* do_widen(const char* __low, const char* __high, char_type* __to) const;
697 … char* do_narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) const;
[all …]
Dfilesystem1387 void __copy(const path& __from, const path& __to, copy_options __opt,
1390 bool __copy_file(const path& __from, const path& __to, copy_options __opt,
1403 void __create_directory_symlink(const path& __to, const path& __new_symlink,
1406 void __create_hard_link(const path& __to, const path& __new_hard_link,
1409 void __create_symlink(const path& __to, const path& __new_symlink,
1489 const path& __to) {
1490 __copy(__from, __to, copy_options::none);
1493 inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from, const path& __to,
1495 __copy(__from, __to, copy_options::none, &__ec);
1498 inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from, const path& __to,
[all …]
Dlocale3760 _Elem* __to = &__ws[0];
3761 _Elem* __to_end = __to + __ws.size();
3767 __to, __to_end, __to_nxt);
3775 __ws.resize(__to - &__ws[0]);
3790 __to = &__ws[0] + __s;
3821 char* __to = &__bs[0];
3822 char* __to_end = __to + __bs.size();
3828 __to, __to_end, __to_nxt);
3836 __bs.resize(__to - &__bs[0]);
3851 __to = &__bs[0] + __s;
[all …]
Dvector824 void __move_range(pointer __from_s, pointer __from_e, pointer __to);
1756 vector<_Tp, _Allocator>::__move_range(pointer __from_s, pointer __from_e, pointer __to)
1759 difference_type __n = __old_last - __to;
/external/clang/lib/Headers/
D__clang_cuda_cmath.h123 __DEVICE__ float nexttoward(float __from, float __to) { in nexttoward() argument
124 return __builtin_nexttowardf(__from, __to); in nexttoward()
126 __DEVICE__ double nexttoward(double __from, double __to) { in nexttoward() argument
127 return __builtin_nexttoward(__from, __to); in nexttoward()
/external/libdrm/
Dutil_double_list.h94 #define LIST_REPLACE(__from, __to) list_replace(__from, __to) argument
/external/virglrenderer/src/gallium/auxiliary/util/
Du_double_list.h99 #define LIST_REPLACE(__from, __to) list_replace(__from, __to) argument
/external/u-boot/arch/mips/include/asm/
Dstring.h31 extern void *memcpy(void *__to, __const__ void *__from, __kernel_size_t __n);
/external/u-boot/arch/sh/include/asm/
Dstring.h91 extern void *memcpy(void *__to, __const__ void *__from, size_t __n);
/external/mesa3d/src/util/
Dlist.h159 #define LIST_REPLACE(__from, __to) list_replace(__from, __to) argument
/external/u-boot/drivers/mtd/
Dmtdconcat.c176 uint64_t __to = to; in concat_writev() local
177 if (do_div(__to, mtd->writesize) || (total_len % mtd->writesize)) in concat_writev()