Home
last modified time | relevance | path

Searched refs:memcpy (Results 1 – 25 of 59) sorted by relevance

123

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
Dfp_traits.hpp32 namespace std{ using ::memcpy; }
187 static void get_bits(float x, uint32_t& a) { std::memcpy(&a, &x, 4); } in get_bits()
188 static void set_bits(float& x, uint32_t a) { std::memcpy(&x, &a, 4); } in set_bits()
209 std::memcpy(&a, reinterpret_cast<const unsigned char*>(&x) + offset_, 4); in get_bits()
214 std::memcpy(reinterpret_cast<unsigned char*>(&x) + offset_, &a, 4); in set_bits()
243 static void get_bits(double x, uint64_t& a) { std::memcpy(&a, &x, 8); } in get_bits()
244 static void set_bits(double& x, uint64_t a) { std::memcpy(&x, &a, 8); } in set_bits()
269 std::memcpy(&a, reinterpret_cast<const unsigned char*>(&x) + offset_, 4); in get_bits()
274 std::memcpy(reinterpret_cast<unsigned char*>(&x) + offset_, &a, 4); in set_bits()
303 static void get_bits(long double x, uint64_t& a) { std::memcpy(&a, &x, 8); } in get_bits()
[all …]
/ndk/sources/cxx-stl/stlport/stlport/using/
Dcstring5 # undef memcpy
7 inline void* memcpy(void* dst, const void* src, size_t len)
13 using _STLP_VENDOR_CSTD::memcpy;
/ndk/sources/host-tools/make-3.81/glob/
Dglob.c167 # define memcpy(d, s, n) bcopy ((s), (d), (n)) macro
408 memcpy (onealt, pattern, begin - pattern);
466 memcpy (alt_start, p, next - p);
467 memcpy (&alt_start[next - p], rest, rest_len);
563 memcpy (drive_spec, pattern, dirlen);
579 memcpy (newp, pattern, dirlen);
708 memcpy (newp, home_dir, home_len);
709 memcpy (&newp[home_len], &dirname[1], dirlen);
731 memcpy (newp, dirname + 1, end_name - dirname);
782 memcpy (newp, home_dir, home_len);
[all …]
/ndk/tests/device/test-stlport_static-exception/jni/
Dbadalloc1.cpp13 extern "C" void *memcpy(void *, const void *, size_t);
80 memcpy (r, p, old_size); in realloc()
/ndk/tests/device/test-stlport_shared-exception/jni/
Dbadalloc1.cpp13 extern "C" void *memcpy(void *, const void *, size_t);
80 memcpy (r, p, old_size); in realloc()
/ndk/sources/android/support/tests/minitest/
Dminitest.cc28 ::memcpy(str_, str, len); in String()
35 ::memcpy(str_ + old_size, other.str_, other.size_); in operator +=()
43 ::memcpy(str_ + old_size, str, len); in operator +=()
/ndk/sources/third_party/googletest/googletest/samples/
Dsample2.cc44 memcpy(clone, a_c_string, len + 1); in CloneCString()
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DAddressSpace.hpp109 memcpy(&val, (void *)addr, sizeof(val)); in get8()
114 memcpy(&val, (void *)addr, sizeof(val)); in get16()
119 memcpy(&val, (void *)addr, sizeof(val)); in get32()
124 memcpy(&val, (void *)addr, sizeof(val)); in get64()
129 memcpy(&val, (void *)addr, sizeof(val)); in getDouble()
134 memcpy(&val, (void *)addr, sizeof(val)); in getVector()
DRegisters.hpp92 memcpy(&_registers, registers, sizeof(_registers)); in Registers_x86()
284 memcpy(&_registers, registers, sizeof(_registers)); in Registers_x86_64()
549 memcpy(&_registers, static_cast<const uint8_t *>(registers), in Registers_ppc()
553 memcpy(&_floatRegisters, in Registers_ppc()
558 memcpy(_vectorRegisters, in Registers_ppc()
1077 memcpy(&_registers, registers, sizeof(_registers)); in Registers_arm64()
1080 memcpy(_vectorHalfRegisters, in Registers_arm64()
1402 memcpy(&_registers, registers, sizeof(_registers)); in Registers_arm()
/ndk/sources/android/support/src/stdio/
Dstdio_impl.c39 memcpy((char*)(file->buffer + file->buffer_pos), in fake_file_out()
65 memcpy((char*)(file->buffer + file->buffer_pos), in fake_file_outw()
/ndk/sources/host-tools/make-3.81/
Dstrcache.c85 memcpy (best->end, str, len); in add_string()
159 memcpy (key, str, len); in strcache_add_len()
Djob.c305 memcpy (path, temp_path, final_size); in create_batch_file()
2827 memcpy (new_line, line, line_len + 1); in construct_command_argv_internal()
2879 memcpy (new_argv[0], shell, sh_len + 1); in construct_command_argv_internal()
2881 memcpy (new_argv[1], "/c", 3); in construct_command_argv_internal()
2883 memcpy (new_argv[2], new_line, line_len + 1); in construct_command_argv_internal()
3013 memcpy (buf, shell, size); in construct_command_argv()
3014 memcpy (buf + size, ".exe", 5); /* including the trailing '\0' */ in construct_command_argv()
/ndk/tests/device/test-stlport/unit/
Dcstring_test.cpp46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL ); in import_checks()
/ndk/tests/device/test-gnustl-full/unit/
Dcstring_test.cpp46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL ); in import_checks()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
Dargv_traverser.ipp28 namespace std { using ::memcpy; }
191 std::memcpy( m_remainder.get() + m_remainder_size, token().begin(), token().size() );
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstring28 void* memcpy(void* restrict s1, const void* restrict s2, size_t n);
70 using ::memcpy;
D__refstring95 std::memcpy(data, msg, len + 1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstring_h.pass.cpp26 static_assert((std::is_same<decltype(memcpy(vp, vpc, s)), void*>::value), ""); in main()
/ndk/sources/cxx-stl/gabi++/src/
Dstdexcept.cc85 std::memcpy(const_cast<char*>(c_str()), msg, len + 1); in __libcpp_nmstr()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcstring.pass.cpp26 static_assert((std::is_same<decltype(std::memcpy(vp, vpc, s)), void*>::value), ""); in main()
/ndk/sources/cxx-stl/system/include/
Dcstring46 using ::memcpy;
/ndk/sources/cxx-stl/gabi++/include/
Dcstring46 using ::memcpy;
/ndk/sources/host-tools/ndk-stack/regex/
Dregexec.c109 #define ASSIGN(d, s) memcpy(d, s, m->g->nstates)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
Dwcsnrtombs.inc79 memcpy(dst, buf, nb);
/ndk/sources/cxx-stl/stlport/src/details/
Dfstream_win32io.cpp503 memcpy(ptrtextbuf, nextblock, linelength); in _M_write()
514 memcpy(ptrtextbuf, nextblock, nextblocksize); in _M_write()

123