/external/valgrind/memcheck/tests/solaris/ |
D | strlcpy.c | 9 size_t copied; in main() local 25 copied = strlcpy(dst, src, 10); in main() 26 if (copied != 10) in main() 27 fprintf(stderr, "Expected 10 but got %zu for test #1.\n", copied); in main() 30 copied = strlcpy(dst, src, strlen(src) + 1); in main() 31 if (copied != 10) in main() 32 fprintf(stderr, "Expected 10 but got %zu for test #2.\n", copied); in main() 36 copied = strlcpy(NULL, src, 0); in main() 37 if (copied != 10) in main() 38 fprintf(stderr, "Expected 10 but got %zu for test #3.\n", copied); in main()
|
/external/libcxx/test/support/ |
D | any_helpers.h | 70 static int copied; member 76 small_type::copied = 0; in reset() 91 ++copied; in throw() 98 ++copied; in throw() 123 int small_type<Dummy>::copied = 0; 144 static int copied; member 150 large_type::copied = 0; in reset() 166 ++copied; in large_type() 173 ++copied; in large_type() 199 int large_type<Dummy>::copied = 0;
|
/external/libcxx/test/std/experimental/any/any.nonmembers/any.cast/ |
D | any_cast_reference.pass.cpp | 119 assert(Type::copied == 0); in test_cast_to_reference() 167 assert(Type::copied == 0); in test_cast_to_reference() 181 assert(Type::copied == 0); in test_cast_to_value() 198 assert(Type::copied == 1); in test_cast_to_value() 212 assert(Type::copied == 1); in test_cast_to_value() 226 assert(Type::copied == 1); in test_cast_to_value() 240 assert(Type::copied == 1); in test_cast_to_value() 254 assert(Type::copied == 1); in test_cast_to_value() 268 assert(Type::copied == 1); in test_cast_to_value()
|
/external/libcxx/test/std/experimental/any/any.class/any.assign/ |
D | value.pass.cpp | 40 assert(RHS::copied == 0); in test_assign_value() 44 assert(RHS::copied == 1); in test_assign_value() 66 assert(RHS::copied == 0); in test_assign_value() 85 assert(RHS::copied == 0); in test_assign_value_empty() 90 assert(RHS::copied == 1); in test_assign_value_empty() 105 assert(RHS::copied == 0); in test_assign_value_empty()
|
D | copy.pass.cpp | 40 assert(RHS::copied == 0); in test_copy_assign() 44 assert(RHS::copied == 1); in test_copy_assign() 64 assert(LHS::copied == 0); in test_copy_assign_empty() 68 assert(LHS::copied == 1); in test_copy_assign_empty() 81 assert(LHS::copied == 0); in test_copy_assign_empty() 85 assert(LHS::copied == 0); in test_copy_assign_empty()
|
/external/squashfs-tools/kernel/fs/squashfs/ |
D | symlink.c | 55 int bytes, copied; in squashfs_symlink_readpage() local 83 for (bytes = 0; bytes < length; offset = 0, bytes += copied) { in squashfs_symlink_readpage() 94 copied = squashfs_copy_data(pageaddr + bytes, entry, offset, in squashfs_symlink_readpage() 96 if (copied == length - bytes) in squashfs_symlink_readpage()
|
/external/guava/guava-tests/test/com/google/common/io/ |
D | CharStreamsTest.java | 163 long copied = CharStreams.copy(new StringReader(ASCII), builder); in testCopy() local 165 assertEquals(ASCII.length(), copied); in testCopy() local 168 copied = CharStreams.copy(new StringReader(I18N), builder2); in testCopy() 170 assertEquals(I18N.length(), copied); in testCopy() local 188 long copied = CharStreams.copy(newNonBufferFillingReader(new StringReader(string)), b); in testCopyWithReaderThatDoesNotFillBuffer() local 190 assertEquals(string.length(), copied); in testCopyWithReaderThatDoesNotFillBuffer() local
|
/external/opencv3/modules/core/src/ |
D | glob.cpp | 83 size_t copied = mbstowcs(wfull_path, full_path.c_str(), MAX_PATH); in opendir() local 84 CV_Assert((copied != MAX_PATH) && (copied != (size_t)-1)); in opendir() 152 size_t copied = mbstowcs(wpath, path.c_str(), MAX_PATH); in isDir() local 153 CV_Assert((copied != MAX_PATH) && (copied != (size_t)-1)); in isDir()
|
/external/icu/icu4c/source/test/intltest/ |
D | quantityformattertest.cpp | 79 QuantityFormatter copied(fmt); in TestBasic() local 82 copied.getByVariant("other")->getTextWithNoPlaceholders(), in TestBasic() 86 copied.getByVariant("one")->getTextWithNoPlaceholders(), in TestBasic() 90 copied.getByVariant("few")->getTextWithNoPlaceholders(), in TestBasic()
|
/external/libcxx/test/std/experimental/any/any.class/any.modifiers/ |
D | swap.pass.cpp | 46 assert(LHS::copied == 0); in test_swap() 47 assert(RHS::copied == 0); in test_swap() 79 assert(Tp::copied == 0); in test_swap_empty()
|
/external/vboot_reference/cgpt/ |
D | cgpt_nor.c | 118 uint64_t copied = 0; in read_write() local 121 while (copied < size) { in read_write() 122 size_t to_read = size - copied; in read_write() 138 copied += nr_read; in read_write()
|
/external/vulkan-validation-layers/cmake/ |
D | README.txt | 1 The following files are copied out of CMake 2.8. 4 I have also copied the Copyright.txt file out of cmake and renamed it:
|
/external/chromium-trace/catapult/telemetry/third_party/mock/ |
D | README.chromium | 14 Packaging and setup files have not been copied downstream. 16 have not been copied downstream.
|
/external/tlsdate/src/ |
D | platform-cros.c | 133 int copied = 0; in canonicalize_pac() local 157 copied = snprintf (proxy_url, len, "http://%s", hostport); in canonicalize_pac() 161 copied = snprintf (proxy_url, len, "socks4://%s", hostport); in canonicalize_pac() 165 copied = snprintf (proxy_url, len, "socks5://%s", hostport); in canonicalize_pac() 169 copied = snprintf (proxy_url, len, "https://%s", hostport); in canonicalize_pac() 175 if (copied < 0 || ((size_t) copied) >= len) in canonicalize_pac()
|
/external/autotest/client/common_lib/ |
D | boottool.py | 196 copied = set() 200 if arg not in copied: 202 copied.add(arg)
|
/external/chromium-trace/catapult/telemetry/third_party/pyserial/ |
D | README.chromium | 16 Packaging and setup files have not been copied downstream. 18 have not been copied downstream.
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/ |
D | FirstOrderIntegratorWithJacobians.java | 730 StepInterpolatorWrapper copied = in copy() local 732 copyArray(y, copied.y); in copy() 733 copyArray(dydy0, copied.dydy0); in copy() 734 copyArray(dydp, copied.dydp); in copy() 735 copyArray(yDot, copied.yDot); in copy() 736 copyArray(dydy0Dot, copied.dydy0Dot); in copy() 737 copyArray(dydpDot, copied.dydpDot); in copy() 738 return copied; in copy()
|
/external/mesa3d/src/mesa/vbo/ |
D | vbo_exec_api.c | 70 exec->vtx.copied.nr = 0; in vbo_exec_wrap_buffers() 93 exec->vtx.copied.nr = 0; in vbo_exec_wrap_buffers() 106 if (exec->vtx.copied.nr == last_count) in vbo_exec_wrap_buffers() 119 GLfloat *data = exec->vtx.copied.buffer; in vbo_exec_vtx_wrap() 134 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr); in vbo_exec_vtx_wrap() 136 for (i = 0 ; i < exec->vtx.copied.nr ; i++) { in vbo_exec_vtx_wrap() 144 exec->vtx.copied.nr = 0; in vbo_exec_vtx_wrap() 254 if (unlikely(exec->vtx.copied.nr)) { in vbo_exec_wrap_upgrade_vertex() 318 if (unlikely(exec->vtx.copied.nr)) { in vbo_exec_wrap_upgrade_vertex() 319 GLfloat *data = exec->vtx.copied.buffer; in vbo_exec_wrap_upgrade_vertex() [all …]
|
/external/libchrome/base/third_party/icu/ |
D | README.chromium | 6 This file has the relevant components from ICU copied to handle basic 7 UTF8/16/32 conversions. Components are copied from utf.h utf8.h utf16.h and
|
/external/libweave/third_party/chromium/base/third_party/icu/ |
D | README.chromium | 6 This file has the relevant components from ICU copied to handle basic 7 UTF8/16/32 conversions. Components are copied from utf.h utf8.h utf16.h and
|
/external/libcxx/test/std/experimental/any/any.class/any.cons/ |
D | move.pass.cpp | 72 assert(Type::copied == 0); in test_move() 81 assert(Type::copied == 0); // no copies can be performed. in test_move()
|
D | value.pass.cpp | 90 assert(Type::copied == 1); in test_copy_move_value() 103 assert(Type::copied == 0); in test_copy_move_value()
|
D | copy.pass.cpp | 67 assert(Type::copied == 0); in test_copy() 71 assert(Type::copied == 1); in test_copy()
|
/external/jetty/ |
D | README.android | 36 were copied from the maven repository into the lib directory. pom files and sha1 files are included 42 .project file was copied from one of the .project files created by maven. 48 copied into the lib directory. The Android.mk file (.classpath file for eclipse) should be updated
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.fbo.blit.txt | 47 and second framebuffer. If depth and/or stencil values were copied, 48 a rendering command that will use the copied depth/stencil values is
|