Searched defs:to (Results 1 - 25 of 26) sorted by relevance

12

/ndk/tests/build/test-gnustl-chrono/jni/
H A Dhanoi.c3 void hanoi(int from, int to, int mid, int n, void (*callback)(int, int)) { argument
5 callback(from, to);
7 hanoi(from, mid, to, n - 1, callback);
8 callback(from, to);
9 hanoi(mid, to, from, n - 1, callback);
H A Dmain.cpp9 void hanoi_callback(int from, int to) { argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar16_t_in.pass.cpp16 // internT* to, internT* to_end, internT*& to_next) const;
29 F::intern_type to[9]; local
35 to, to + 9, to_next) == F::ok);
37 assert(to_next - to == 9);
39 assert(to[i] == from[i]);
H A Dchar16_t_out.pass.cpp16 // externT* to, externT* to_end, externT*& to_next) const;
33 char to[9] = {0}; local
38 to, to + 9, to_next);
41 assert(to_next - to == 9);
43 assert(to[i] == from[i]);
H A Dchar32_t_in.pass.cpp16 // internT* to, internT* to_end, internT*& to_next) const;
29 F::intern_type to[9]; local
35 to, to + 9, to_next) == F::ok);
37 assert(to_next - to == 9);
39 assert(to[i] == from[i]);
H A Dchar32_t_out.pass.cpp16 // externT* to, externT* to_end, externT*& to_next) const;
33 char to[9] = {0}; local
38 to, to + 9, to_next);
41 assert(to_next - to == 9);
43 assert(to[i] == from[i]);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
H A Dconverter.hpp2 // Use, modification, and distribution is subject to the Boost Software
57 struct to struct in struct:boost::numeric::make_converter_from
/ndk/sources/cxx-stl/stlport/src/
H A Dcodecvt.cpp11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
87 extern_type* to,
90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
91 copy(from, from + len, to);
93 to_next = to + len;
102 intern_type* to,
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
107 __REINTERPRET_CAST(const unsigned char*, from) + len, to);
83 do_out(state_type& , const intern_type* from, const intern_type* from_end, const intern_type*& from_next, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
98 do_in(state_type& , const extern_type* from, const extern_type* from_end, const extern_type*& from_next, intern_type* to, intern_type* to_limit, intern_type*& to_next) const argument
114 do_unshift(state_type& , extern_type* to, extern_type* , extern_type*& to_next) const argument
[all...]
H A Dfacets_byname.cpp11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
58 // We have to do this, instead of just pointer twiddling, because
310 extern_type* to,
313 while (from != from_end && to != to_limit) {
315 to, to_limit - to, *from,
319 to_next = to;
324 to_next = to;
306 do_out(state_type& state, const intern_type* from, const intern_type* from_end, const intern_type*& from_next, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
338 do_in(state_type& state, const extern_type* from, const extern_type* from_end, const extern_type*& from_next, intern_type* to, intern_type* to_end, intern_type*& to_next) const argument
371 do_unshift(state_type& state, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
[all...]
/ndk/sources/host-tools/make-3.81/
H A Dvmsify.c15 GNU Make; see the file COPYING. If not, write to the Free Software
36 arbitrary string. ADDR is a pointer to the first character
47 NUL-terminated string. S is a pointer to the string; the length
54 copy 'from' to 'to' up to but not including 'upto'
58 return 'to' at last char + 1
61 if as_dir == 1, change all '.' to '_'
62 else change all '.' but the last to '_'
66 copyto (char **to, cha argument
[all...]
H A Dvariable.c16 GNU Make; see the file COPYING. If not, write to the Free Software
38 /* Pointer to last struct in the chain, so we can add onto the end. */
157 LENGTH is the length of NAME, which does not need to be null-terminated.
209 /* Create a new variable definition and add it to the hash table. */
250 .VARIABLES expands to a list of all the variables defined in this instance
252 .TARGETS expands to a list of all the targets defined in this
264 /* This one actually turns out to be very hard, due to the way the parser
278 Changing this would be a major pain. I think a less complex way to do it
279 would be to pr
668 struct variable_set_list *to = *setlist0; local
[all...]
/ndk/sources/android/support/src/musl-locale/
H A Diconv.c107 iconv_t iconv_open(const char *to, const char *from) argument
111 if ((t = find_charmap(to))==-1
162 unsigned to = cd & 0xffff; local
165 const unsigned char *tomap = charmaps+to+1;
311 /* A few HKSCS characters map to pairs of UCS
312 * characters. These are mapped to surrogate
319 x += iconv((iconv_t)(uintptr_t)to,
/ndk/sources/android/support/src/
H A Dwchar_support.c16 wchar_t *wcpcpy(wchar_t *to, const wchar_t *from) { argument
20 to[n] = wc;
25 return to + n;
/ndk/tests/device/test-gnustl-full/unit/
H A Dcodecvt_test.cpp297 //Maybe we simply do not have write access to repository
337 /* This test is broken, not sure if it is really possible to get a position in
398 wchar_t to[1]; local
401 to, to + sizeof(to) / sizeof(wchar_t), next_to);
404 CPPUNIT_ASSERT( next_to == &to[0] + 1 );
405 CPPUNIT_ASSERT( to[0] == L'a');
412 char to[1]; local
415 to, t
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dcodecvt_test.cpp297 //Maybe we simply do not have write access to repository
337 /* This test is broken, not sure if it is really possible to get a position in
398 wchar_t to[1]; local
401 to, to + sizeof(to) / sizeof(wchar_t), next_to);
404 CPPUNIT_ASSERT( next_to == &to[0] + 1 );
405 CPPUNIT_ASSERT( to[0] == L'a');
412 char to[1]; local
415 to, t
[all...]
/ndk/build/core/
H A Dinit.mk9 # Unless required by applicable law or agreed to in writing, software
36 # Define NDK_LOG=1 in your environment to display log traces when
44 # Define NDK_HOST_32BIT=1 in your environment to always use toolchain in 32-bit
64 # NDK_ROOT *must* be defined and point to the root of the NDK installation
71 $(error,Please fix the problem by reinstalling to a different location.)
81 # Used to output warnings and error from the library, it's possible to
99 # Arguments: 1: text to print when NDK_LOG is defined to 1
112 # Returns : path $1/prebuilt/(HOST_TAG64) exists and NDK_HOST_32BIT isn't defined to
[all...]
H A Ddefinitions.mk9 # Unless required by applicable law or agreed to in writing, software
79 # Returns : Generate a rule, but not dependency, to create a directory with
88 # to full-path, eg. C:/path/to/project/jni/
103 # Returns : Generate a dependency and a rule to ensure that the parent
105 # This is used to enforce a call to host-mkdir.
125 # Returns : write the content of a possibly very long string list to a file.
128 # Usage : $(call host-echo-to-file,<string-list>,<file>)
135 # This function is used to generat
[all...]
/ndk/sources/cxx-stl/stlport/src/details/
H A Dfstream_win32io.cpp11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
146 // For Read/Write access we have to guess
234 // requires them both to behave same.
329 // Associated the filebuf with a file descriptor pointing to an already-
330 // open file. Mode is set to be consistent with the way that the file
387 // Read up to n characters into a buffer. Return value is number of
391 //Here cast to size_t is safe as n cannot be negative.
393 // The following, while validating that we are still able to extrac
405 char *to = buf + readen; local
[all...]
/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest-port_test.cc15 // contributors may be used to endorse or promote products derived from
51 // included, or there will be a compiler error. This trick is to
209 To to = ::testing::internal::ImplicitCast_<To>(&converted); local
210 (void)to;
233 // to the parameter type.
341 // wait for up to .5 seconds for the OS to report the correct value.
388 // Verifies that Google Test choose regular expression engine appropriate to
1066 // writes to value_ rearranged when observed from other threads.
1095 // Tests that the mutex only lets one thread at a time to loc
[all...]
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/
H A Dc_wlocale_win32.c8 * Permission to use or copy this software for any purpose is hereby granted
10 * Permission to modify the code and to distribute modified code is granted,
143 size_t _WLocale_mbtowc(_Locale_codecvt_t *lcodecvt, wchar_t *to, argument
148 result = MultiByteToWideChar(lcodecvt->cp, lcodecvt->mbtowc_flags, from, 1, to, 1);
156 retval = __mbtowc(lcodecvt, to, from, count);
168 size_t _WLocale_wctomb(_Locale_codecvt_t *lcodecvt, char *to, size_t n, argument
176 /* Limiting the output buf size to INT_MAX seems like reasonable to transform a single wchar_t. */
179 WideCharToMultiByte(lcodecvt->cp, lcodecvt->wctomb_flags, &c, 1, to, (in
[all...]
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/
H A Dc_locale_glibc2.c104 try to see locale category LC should be used from environment;
344 wchar_t *to,
347 { *to = *from; return 1; }
350 char *to, size_t n,
353 { *to = (char)c; return 1; }
551 /* We are forced to manually handled the "C" locale for consistency with
561 /* We are forced to manually handled the "C" locale for consistency with
343 _WLocale_mbtowc(struct _Locale_codecvt *lcodecvt, wchar_t *to, const char *from, size_t n, mbstate_t *st) argument
349 _WLocale_wctomb(struct _Locale_codecvt *lcodecvt, char *to, size_t n, const wchar_t c, mbstate_t *st) argument
/ndk/sources/host-tools/ndk-stack/regex/
H A Dregcomp.c7 * This code is derived from software contributed to Berkeley by
19 * may be used to endorse or promote products derived from this software
52 * parse structure, passed up and down to avoid global variables and
64 # define NPAREN 10 /* we need to remember () 1-9 for back refs */
107 static char nuls[10]; /* place to point scanner in event of error */
451 * taken as an ordinary character and then revised to be an anchor. The
454 * The amount of lookahead needed to avoid this kludge is excessive.
648 invert++; /* make note to invert set at end */
940 sopno start, /* operand from here to end of strip */
942 int to) /* t
939 repeat(struct parse *p, sopno start, int from, int to) argument
[all...]
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h15 // contributors may be used to endorse or promote products derived from
35 // Google Test. They are subject to change without notice.
64 // Due to C++ preprocessor weirdness, we need double indirection to
102 // The text used in failure messages to indicate the start of the
109 // different sizes, so we can use sizeof() to test which version is
114 // version if x can be implicitly converted to Secret*, and pick the
135 // Appends the user-supplied message to the Google-Test-generated message.
146 // frameworks know how to extract and print the message inside it.
163 // Note that the d'tor is not virtual in order to b
918 CopyArray(const T& from, U* to) argument
930 CopyArray(const T* from, size_t size, U* to) argument
[all...]
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
H A Dc_locale_dummy.c11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
253 wchar_t *to,
256 { *to = *from; return 1; }
259 char *to, size_t n,
262 { *to = (char)c; return 1; }
252 _WLocale_mbtowc(struct _Locale_codecvt *lcodecvt, wchar_t *to, const char *from, size_t n, mbstate_t *st) argument
258 _WLocale_wctomb(struct _Locale_codecvt *lcodecvt, char *to, size_t n, const wchar_t c, mbstate_t *st) argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dlocale.cpp12 // On Solaris, we need to define something to make the C99 parts of localeconv
119 // Set priority to INT_MIN + 256 + 150
143 // I can't get the __sso_allocator to work here
667 " failed to construct for " + string(n));
684 " failed to construct for " + name);
731 " failed to construct for " + string(n));
748 " failed to construct for " + name);
1083 // This is assumed to be safe, which is a nonsense assumption because we're
1084 // going to en
1442 do_out(state_type&, const intern_type* frm, const intern_type*, const intern_type*& frm_nxt, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
1452 do_in(state_type&, const extern_type* frm, const extern_type*, const extern_type*& frm_nxt, intern_type* to, intern_type*, intern_type*& to_nxt) const argument
1462 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
1528 do_out(state_type& st, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
1597 do_in(state_type& st, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
1675 do_unshift(state_type& st, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
1778 utf16_to_utf8(const uint16_t* frm, const uint16_t* frm_end, const uint16_t*& frm_nxt, uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
1855 utf16_to_utf8(const uint32_t* frm, const uint32_t* frm_end, const uint32_t*& frm_nxt, uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
1932 utf8_to_utf16(const uint8_t* frm, const uint8_t* frm_end, const uint8_t*& frm_nxt, uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2053 utf8_to_utf16(const uint8_t* frm, const uint8_t* frm_end, const uint8_t*& frm_nxt, uint32_t* to, uint32_t* to_end, uint32_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2275 ucs4_to_utf8(const uint32_t* frm, const uint32_t* frm_end, const uint32_t*& frm_nxt, uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2330 utf8_to_ucs4(const uint8_t* frm, const uint8_t* frm_end, const uint8_t*& frm_nxt, uint32_t* to, uint32_t* to_end, uint32_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2542 ucs2_to_utf8(const uint16_t* frm, const uint16_t* frm_end, const uint16_t*& frm_nxt, uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2588 utf8_to_ucs2(const uint8_t* frm, const uint8_t* frm_end, const uint8_t*& frm_nxt, uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2738 ucs4_to_utf16be(const uint32_t* frm, const uint32_t* frm_end, const uint32_t*& frm_nxt, uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2783 utf16be_to_ucs4(const uint8_t* frm, const uint8_t* frm_end, const uint8_t*& frm_nxt, uint32_t* to, uint32_t* to_end, uint32_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2870 ucs4_to_utf16le(const uint32_t* frm, const uint32_t* frm_end, const uint32_t*& frm_nxt, uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
2915 utf16le_to_ucs4(const uint8_t* frm, const uint8_t* frm_end, const uint8_t*& frm_nxt, uint32_t* to, uint32_t* to_end, uint32_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
3002 ucs2_to_utf16be(const uint16_t* frm, const uint16_t* frm_end, const uint16_t*& frm_nxt, uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
3030 utf16be_to_ucs2(const uint8_t* frm, const uint8_t* frm_end, const uint8_t*& frm_nxt, uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
3076 ucs2_to_utf16le(const uint16_t* frm, const uint16_t* frm_end, const uint16_t*& frm_nxt, uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
3104 utf16le_to_ucs2(const uint8_t* frm, const uint8_t* frm_end, const uint8_t*& frm_nxt, uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, unsigned long Maxcode = 0x10FFFF, codecvt_mode mode = codecvt_mode(0)) argument
3158 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3175 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3192 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3235 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3252 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3269 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3306 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3335 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3361 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3400 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3418 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3436 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3475 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3493 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3511 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3550 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3568 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3586 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3625 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3643 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3661 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3700 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3718 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3736 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3775 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3793 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3811 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3850 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3868 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3886 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
3925 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
3943 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
3961 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
4000 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
4018 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
4036 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
4075 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
4093 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
4111 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
4150 do_out(state_type&, const intern_type* frm, const intern_type* frm_end, const intern_type*& frm_nxt, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const argument
4168 do_in(state_type&, const extern_type* frm, const extern_type* frm_end, const extern_type*& frm_nxt, intern_type* to, intern_type* to_end, intern_type*& to_nxt) const argument
4186 do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const argument
[all...]

Completed in 712 milliseconds

12