Home
last modified time | relevance | path

Searched full:copied (Results 1 – 25 of 10207) sorted by relevance

12345678910>>...409

/external/parameter-framework/asio-1.10.6/include/asio/
Dbuffer.hpp1107 * Both forms return the number of bytes actually copied. The number of bytes
1108 * copied is the lesser of:
1127 * the bytes will be copied.
1130 * which the bytes will be copied.
1132 * @returns The number of bytes copied.
1134 * @note The number of bytes copied is the lesser of:
1157 * the bytes will be copied.
1160 * which the bytes will be copied.
1162 * @returns The number of bytes copied.
1164 * @note The number of bytes copied is the lesser of:
[all …]
/external/libcxx/test/support/
Demplace_constructible.h16 int copied = 0; member
22 : copied(Other.copied + 1), value(std::move(Other.value)) {} in EmplaceConstructibleAndMoveInsertable()
27 int copied = 0; member
33 noexcept : copied(Other.copied + 1), in EmplaceConstructibleAndMoveable()
38 copied = Other.copied;
47 int copied = 0; member
55 : copied(Other.copied + 1), in EmplaceConstructibleMoveableAndAssignable()
60 copied = Other.copied;
Dany_helpers.h105 static int copied; member
111 small_type::copied = 0; in reset()
132 ++copied; in small_type()
139 ++copied; in small_type()
164 int small_type<Dummy>::copied = 0;
185 static int copied; member
191 large_type::copied = 0; in reset()
213 ++copied; in large_type()
220 ++copied; in large_type()
246 int large_type<Dummy>::copied = 0;
[all …]
Dexperimental_any_helpers.h80 static int copied; member
86 small_type::copied = 0; in reset()
101 ++copied; in throw()
108 ++copied; in throw()
133 int small_type<Dummy>::copied = 0;
154 static int copied; member
160 large_type::copied = 0; in reset()
176 ++copied; in large_type()
183 ++copied; in large_type()
209 int large_type<Dummy>::copied = 0;
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/support/
Demplace_constructible.h16 int copied = 0; member
22 : copied(Other.copied + 1), value(std::move(Other.value)) {} in EmplaceConstructibleAndMoveInsertable()
27 int copied = 0; member
33 noexcept : copied(Other.copied + 1), in EmplaceConstructibleAndMoveable()
38 copied = Other.copied;
47 int copied = 0; member
55 : copied(Other.copied + 1), in EmplaceConstructibleMoveableAndAssignable()
60 copied = Other.copied;
Dany_helpers.h102 static int copied; member
108 small_type::copied = 0; in reset()
129 ++copied; in small_type()
136 ++copied; in small_type()
161 int small_type<Dummy>::copied = 0;
182 static int copied; member
188 large_type::copied = 0; in reset()
210 ++copied; in large_type()
217 ++copied; in large_type()
243 int large_type<Dummy>::copied = 0;
[all …]
Dexperimental_any_helpers.h74 static int copied; member
80 small_type::copied = 0; in reset()
95 ++copied; in throw()
102 ++copied; in throw()
127 int small_type<Dummy>::copied = 0;
148 static int copied; member
154 large_type::copied = 0; in reset()
170 ++copied; in large_type()
177 ++copied; in large_type()
203 int large_type<Dummy>::copied = 0;
[all …]
/external/libese/libese/tests/
Dsg_unittests.cpp40 uint32_t copied; in TEST_F() local
41 copied = ese_sg_to_buf(&sg, 1, 0, sizeof(dst), dst); in TEST_F()
42 EXPECT_EQ(copied, sizeof(sg_data)); in TEST_F()
54 uint32_t copied; in TEST_F() local
55 copied = ese_sg_from_buf(&sg, 1, 0, sizeof(src), src); in TEST_F()
56 EXPECT_EQ(copied, sizeof(src)); in TEST_F()
81 uint32_t copied; in TEST_F() local
82 copied = ese_sg_to_buf(sg, 3, 0, sizeof(dst), dst); in TEST_F()
83 EXPECT_EQ(copied, strlen("HELLO WORLD") + 1); in TEST_F()
87 copied = ese_sg_to_buf(sg, 3, sizeof(one) + sizeof(two) - 2, sizeof(dst), in TEST_F()
[all …]
/external/libfuse/lib/
Dbuffer.c47 size_t copied = 0; in fuse_buf_write() local
57 if (!copied) in fuse_buf_write()
64 copied += res; in fuse_buf_write()
73 return copied; in fuse_buf_write()
81 size_t copied = 0; in fuse_buf_read() local
91 if (!copied) in fuse_buf_read()
98 copied += res; in fuse_buf_read()
107 return copied; in fuse_buf_read()
120 size_t copied = 0; in fuse_buf_fd_to_fd() local
130 if (!copied) in fuse_buf_fd_to_fd()
[all …]
/external/clang/lib/Headers/
Davxintrin.h771 /// copied.
773 /// 0: Bits [63:0] of the source are copied to bits [63:0] of the
775 /// 1: Bits [127:64] of the source are copied to bits [63:0] of the
778 /// 0: Bits [63:0] of the source are copied to bits [127:64] of the
780 /// 1: Bits [127:64] of the source are copied to bits [127:64] of the
782 /// \returns A 128-bit vector of [2 x double] containing the copied values.
800 /// copied.
802 /// 0: Bits [63:0] of the source are copied to bits [63:0] of the
804 /// 1: Bits [127:64] of the source are copied to bits [63:0] of the
807 /// 0: Bits [63:0] of the source are copied to bits [127:64] of the
[all …]
/external/python/cpython3/Lib/test/
Dtest_xml_dom_minicompat.py107 copied = copy.copy(node_list)
108 self.assertIsNot(copied, node_list)
109 self.assertEqual(copied, node_list)
114 copied = copy.copy(node_list)
115 self.assertIsNot(copied, node_list)
116 self.assertEqual(copied, node_list)
117 for x, y in zip(copied, node_list):
123 copied = copy.deepcopy(node_list)
124 self.assertIsNot(copied, node_list)
125 self.assertEqual(copied, node_list)
[all …]
/external/rust/crates/hashbrown/tests/
Drayon.rs272 map_seq.extend(MAP_EXTENSION_EMPTY.iter().copied()); in map_seq_par_equivalence_existing_empty_extend_empty()
273 map_par.par_extend(MAP_EXTENSION_EMPTY.par_iter().copied()); in map_seq_par_equivalence_existing_empty_extend_empty()
280 let expected = MAP_EXTENSION.iter().copied().collect::<HashMap<_, _>>(); in map_seq_par_equivalence_existing_empty_extend()
284 map_seq.extend(MAP_EXTENSION.iter().copied()); in map_seq_par_equivalence_existing_empty_extend()
285 map_par.par_extend(MAP_EXTENSION.par_iter().copied()); in map_seq_par_equivalence_existing_empty_extend()
296 map_seq.extend(MAP_EXTENSION_EMPTY.iter().copied()); in map_seq_par_equivalence_existing_extend_empty()
297 map_par.par_extend(MAP_EXTENSION_EMPTY.par_iter().copied()); in map_seq_par_equivalence_existing_extend_empty()
308 map_seq.extend(MAP_EXTENSION.iter().copied()); in map_seq_par_equivalence_existing_extend()
309 map_par.par_extend(MAP_EXTENSION.par_iter().copied()); in map_seq_par_equivalence_existing_extend()
426 set_seq.extend(SET_EXTENSION_EMPTY.iter().copied()); in set_seq_par_equivalence_existing_empty_extend_empty()
[all …]
/external/guava/android/guava-tests/test/com/google/common/io/
DCharStreamsTest.java158 long copied = in testCopy() local
162 assertEquals(ASCII.length(), copied); in testCopy() local
165 copied = in testCopy()
169 assertEquals(I18N.length(), copied); in testCopy() local
174 long copied = CharStreams.copy(new StringReader(ASCII), builder); in testCopy_toStringBuilder_fromReader() local
176 assertEquals(ASCII.length(), copied); in testCopy_toStringBuilder_fromReader() local
179 copied = CharStreams.copy(new StringReader(I18N), builder2); in testCopy_toStringBuilder_fromReader()
181 assertEquals(I18N.length(), copied); in testCopy_toStringBuilder_fromReader() local
186 long copied = CharStreams.copy(wrapAsGenericReadable(new StringReader(ASCII)), builder); in testCopy_toStringBuilder_fromReadable() local
188 assertEquals(ASCII.length(), copied); in testCopy_toStringBuilder_fromReadable() local
[all …]
/external/guava/guava-tests/test/com/google/common/io/
DCharStreamsTest.java158 long copied = in testCopy() local
162 assertEquals(ASCII.length(), copied); in testCopy() local
165 copied = in testCopy()
169 assertEquals(I18N.length(), copied); in testCopy() local
174 long copied = CharStreams.copy(new StringReader(ASCII), builder); in testCopy_toStringBuilder_fromReader() local
176 assertEquals(ASCII.length(), copied); in testCopy_toStringBuilder_fromReader() local
179 copied = CharStreams.copy(new StringReader(I18N), builder2); in testCopy_toStringBuilder_fromReader()
181 assertEquals(I18N.length(), copied); in testCopy_toStringBuilder_fromReader() local
186 long copied = CharStreams.copy(wrapAsGenericReadable(new StringReader(ASCII)), builder); in testCopy_toStringBuilder_fromReadable() local
188 assertEquals(ASCII.length(), copied); in testCopy_toStringBuilder_fromReadable() local
[all …]
/external/rust/crates/rayon/src/iter/
Dcopied.rs6 /// `Copied` is an iterator that copies the elements of an underlying iterator.
8 /// This struct is created by the [`copied()`] method on [`ParallelIterator`]
10 /// [`copied()`]: trait.ParallelIterator.html#method.copied
14 pub struct Copied<I: ParallelIterator> { struct
18 impl<I> Copied<I> impl
22 /// Creates a new `Copied` iterator.
24 Copied { base } in new()
28 impl<'a, T, I> ParallelIterator for Copied<I> implementation
48 impl<'a, T, I> IndexedParallelIterator for Copied<I> implementation
105 type IntoIter = iter::Copied<P::IntoIter>;
[all …]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
D2-1.c24 * -> check in this new process that the memory space was copied.
27 * -> a structure object is copied.
28 * -> a malloc'ed memory block is copied and can be freed in child.
29 * -> the environment is copied
30 * -> signal handlers are copied
124 /* Check the struct was copied */ in main()
127 printf("On-the-stack structure not copied correctly\n"); in main()
131 /* Check the malloc'ed memory is copied */ in main()
133 printf("Allocated page not copied correctly\n"); in main()
142 printf("Enviroment variable not copied correctly\n"); in main()
/external/gson/gson/src/test/java/com/google/gson/functional/
DTypeHierarchyAdapterTest.java106 Company copied = gson.fromJson(json, Company.class); in testTypeHierarchy() local
107 assertEquals(json, gson.toJson(copied, Company.class)); in testTypeHierarchy()
108 assertEquals(copied.ceo.userid, company.ceo.userid); in testTypeHierarchy()
109 assertEquals(copied.ceo.assistant.userid, company.ceo.assistant.userid); in testTypeHierarchy()
110 assertEquals(copied.ceo.minions[0].userid, company.ceo.minions[0].userid); in testTypeHierarchy()
111 assertEquals(copied.ceo.minions[1].userid, company.ceo.minions[1].userid); in testTypeHierarchy()
112 assertEquals(copied.ceo.minions[2].userid, company.ceo.minions[2].userid); in testTypeHierarchy()
113 assertEquals(((Manager) copied.ceo.minions[2]).minions[0].userid, in testTypeHierarchy()
115 assertEquals(((Manager) copied.ceo.minions[2]).minions[1].userid, in testTypeHierarchy()
130 Manager copied = gson.fromJson(json, Manager.class); in testRegisterSuperTypeFirst() local
[all …]
/external/erofs-utils/lib/
Dio.c296 size_t copied = 0; in __erofs_copy_file_range() local
317 return copied; in __erofs_copy_file_range()
319 /* Report the number of bytes copied so far. */ in __erofs_copy_file_range()
320 if (copied > 0) in __erofs_copy_file_range()
321 return copied; in __erofs_copy_file_range()
350 /* Report the number of bytes copied so far. */ in __erofs_copy_file_range()
351 if (copied + written > 0) in __erofs_copy_file_range()
352 return copied + written; in __erofs_copy_file_range()
358 copied += read_count; in __erofs_copy_file_range()
361 return copied; in __erofs_copy_file_range()
/external/icu/icu4c/source/test/intltest/
Dquantityformattertest.cpp87 QuantityFormatter copied(fmt); in TestBasic() local
89 "copied getByVariant", in TestBasic()
90 copied.getByVariant("other")->getTextWithNoArguments(), in TestBasic()
93 "copied getByVariant", in TestBasic()
94 copied.getByVariant("one")->getTextWithNoArguments(), in TestBasic()
97 "copied getByVariant", in TestBasic()
98 copied.getByVariant("few")->getTextWithNoArguments(), in TestBasic()
/external/cronet/third_party/icu/source/test/intltest/
Dquantityformattertest.cpp87 QuantityFormatter copied(fmt); in TestBasic() local
89 "copied getByVariant", in TestBasic()
90 copied.getByVariant("other")->getTextWithNoArguments(), in TestBasic()
93 "copied getByVariant", in TestBasic()
94 copied.getByVariant("one")->getTextWithNoArguments(), in TestBasic()
97 "copied getByVariant", in TestBasic()
98 copied.getByVariant("few")->getTextWithNoArguments(), in TestBasic()
/external/python/cpython3/Lib/distutils/
Dfile_util.py70 copied there with the same name; otherwise, it must be a filename. (If
73 whatever is analogous on the current platform) is copied. If
75 last-access times are copied as well. If 'update' is true, 'src' will
76 only be copied if 'dst' does not exist, or if 'dst' does exist but is
81 None (the default), files are copied. Don't set 'link' on systems that
89 Return a tuple (dest_name, copied): 'dest_name' is the actual name of
90 the output file, and 'copied' is true if the file was copied (or would
91 have been copied, if 'dry_run' true).
/external/python/setuptools/setuptools/_distutils/
Dfile_util.py70 copied there with the same name; otherwise, it must be a filename. (If
73 whatever is analogous on the current platform) is copied. If
75 last-access times are copied as well. If 'update' is true, 'src' will
76 only be copied if 'dst' does not exist, or if 'dst' does exist but is
81 None (the default), files are copied. Don't set 'link' on systems that
89 Return a tuple (dest_name, copied): 'dest_name' is the actual name of
90 the output file, and 'copied' is true if the file was copied (or would
91 have been copied, if 'dry_run' true).
/external/python/cpython2/Lib/distutils/
Dfile_util.py75 If 'dst' is a directory, then 'src' is copied there with the same name;
79 the current platform) is copied. If 'preserve_times' is true (the
80 default), the last-modified and last-access times are copied as well.
81 If 'update' is true, 'src' will only be copied if 'dst' does not exist,
86 None (the default), files are copied. Don't set 'link' on systems that
94 Return a tuple (dest_name, copied): 'dest_name' is the actual name of
95 the output file, and 'copied' is true if the file was copied (or would
96 have been copied, if 'dry_run' true).
/external/ComputeLibrary/arm_compute/runtime/CL/functions/
DCLElementwiseUnaryLayer.h47 /** Prevent instances of this class from being copied (As this class contains pointers) */
51 /** Prevent instances of this class from being copied (As this class contains pointers) */
102 /** Prevent instances of this class from being copied (As this class contains pointers) */
106 /** Prevent instances of this class from being copied (As this class contains pointers) */
157 /** Prevent instances of this class from being copied (As this class contains pointers) */
161 /** Prevent instances of this class from being copied (As this class contains pointers) */
213 /** Prevent instances of this class from being copied (As this class contains pointers) */
217 /** Prevent instances of this class from being copied (As this class contains pointers) */
268 /** Prevent instances of this class from being copied (As this class contains pointers) */
272 /** Prevent instances of this class from being copied (As this class contains pointers) */
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/ranges/range.adaptors/range.filter/
Dctor.view_pred.pass.cpp78 bool moved = false, copied = false; in test() local
79 TrackingRange range(&moved, &copied); in test()
83 assert(!copied); in test()
88 bool moved = false, copied = false; in test() local
90 TrackingPred pred(&moved, &copied); in test()
93 assert(!copied); in test()

12345678910>>...409