Home
last modified time | relevance | path

Searched full:copy (Results 1 – 25 of 16767) sorted by relevance

12345678910>>...671

/external/mesa3d/src/mesa/vbo/
Dvbo_split_copy.c9 * copy of this software and associated documentation files (the "Software"),
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
117 check_flush( struct copy_context *copy ) in check_flush() argument
119 GLenum mode = copy->dstprim[copy->dstprim_nr].mode; in check_flush()
122 copy->dstelt_nr & 1) { /* see bug9962 */ in check_flush()
126 if (copy->dstbuf_nr + 4 > copy->dstbuf_size) in check_flush()
129 if (copy->dstelt_nr + 4 > copy->dstelt_size) in check_flush()
172 flush( struct copy_context *copy ) in flush() argument
174 struct gl_context *ctx = copy->ctx; in flush()
180 copy->dstib.count = copy->dstelt_nr; in flush()
[all …]
/external/protobuf/cmake/
Dextract_includes.bat.in16 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\any.h include\google\protobuf\any.h
17 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\any.pb.h include\google\protobuf\any.pb.h
18 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\api.pb.h include\google\protobuf\api.pb.h
19 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\arena.h include\google\protobuf\arena.h
20 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\arenastring.h include\google\protobuf\are…
21 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\compiler\code_generator.h include\google\…
22 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\compiler\command_line_interface.h include…
23 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\compiler\cpp\cpp_generator.h include\goog…
24 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\compiler\csharp\csharp_generator.h includ…
25 copy ${PROTOBUF_SOURCE_WIN32_PATH}\..\src\google\protobuf\compiler\csharp\csharp_names.h include\go…
[all …]
/external/caliper/examples/src/main/java/examples/
DCopyArrayBenchmark.java6 * You may obtain a copy of the License at
27 * Tests each of four ways to copy an array, for all nine array types.
29 * <p>Once upon a time, {@code clone} was much slower than the other array copy techniques, but
35 * at which time all copy methods were equally efficient.
50 @Override Object[] copy(Object[] array) { in copy() method
53 @Override boolean[] copy(boolean[] array) { in copy() method
56 @Override byte[] copy(byte[] array) { in copy() method
59 @Override char[] copy(char[] array) { in copy() method
62 @Override double[] copy(double[] array) { in copy() method
65 @Override float[] copy(float[] array) { in copy() method
[all …]
/external/selinux/libsepol/cil/src/
Dcil_copy_ast.h37 void cil_copy_list(struct cil_list *orig, struct cil_list **copy);
40 int cil_copy_block(struct cil_db *db, void *data, void **copy, symtab_t *symtab);
41 int cil_copy_blockabstract(struct cil_db *db, void *data, void **copy, symtab_t *symtab);
42 int cil_copy_blockinherit(struct cil_db *db, void *data, void **copy, symtab_t *symtab);
43 int cil_copy_perm(struct cil_db *db, void *data, void **copy, symtab_t *symtab);
44 int cil_copy_class(struct cil_db *db, void *data, void **copy, symtab_t *symtab);
45 int cil_copy_classorder(struct cil_db *db, void *data, void **copy, symtab_t *symtab);
46 int cil_copy_classmapping(struct cil_db *db, void *data, void **copy, symtab_t *symtab);
47 int cil_copy_permset(struct cil_db *db, void *data, void **copy, symtab_t *symtab);
52 int cil_copy_classpermission(__attribute__((unused)) struct cil_db *db, void *data, void **copy, sy…
[all …]
Dcil_copy_ast.c49 void cil_copy_list(struct cil_list *data, struct cil_list **copy) in cil_copy_list() argument
83 *copy = new; in cil_copy_list()
86 int cil_copy_node(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__… in cil_copy_node() argument
93 *copy = new; in cil_copy_node()
98 int cil_copy_block(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *sy… in cil_copy_block() argument
108 *copy = new; in cil_copy_block()
110 *copy = datum;; in cil_copy_block()
116 int cil_copy_blockabstract(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __at… in cil_copy_blockabstract() argument
125 *copy = new; in cil_copy_blockabstract()
130 int cil_copy_blockinherit(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __att… in cil_copy_blockinherit() argument
[all …]
/external/llvm/test/CodeGen/X86/
Dmachine-copy-prop.mir19 # The second copy is redundant and will be removed, check that we also remove
23 # CHECK-NEXT: %rax = COPY %rdi
25 # CHECK-NOT: COPY
31 %rax = COPY %rdi
33 %rdi = COPY %rax
37 # The second copy is redundant and will be removed, check that we also remove
41 # CHECK-NEXT: %rax = COPY %rdi
43 # CHECK-NOT: COPY
49 %rax = COPY %rdi
51 %rdi = COPY %rax
[all …]
/external/clang/test/CXX/special/class.copy/
Dp11.0x.copy.cpp8 // A defaulted copy constructor for a class X is defined as deleted if X has:
12 …T; // expected-note{{copy constructor of 'DeletedNTVariant' is implicitly deleted because variant …
16 DeletedNTVariant DVb(DVa); // expected-error{{call to implicitly-deleted copy constructor}}
20 …T; // expected-note{{copy constructor of 'DeletedNTVariant2' is implicitly deleted because variant…
25 DeletedNTVariant2 DV2b(DV2a); // expected-error{{call to implicitly-deleted copy constructor}}
39 …cess NA; // expected-note{{copy constructor of 'HasNoAccess' is implicitly deleted because field '…
42 HasNoAccess HNAb(HNAa); // expected-error{{call to implicitly-deleted copy constructor}}
61 …biguity A; // expected-note 2{{copy constructor of 'IsAmbiguous' is implicitly deleted because fie…
65 IsAmbiguous IAb(IAa); // expected-error{{call to implicitly-deleted copy constructor}}
68 …Ambiguous IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because field …
[all …]
/external/ImageMagick/Magick++/lib/Magick++/
DDrawable.h111 // Return polymorphic copy of object
112 virtual DrawableBase* copy() const;
132 // Copy constructor
174 // Return polymorphic copy of object
175 virtual VPathBase* copy() const = 0;
195 // Copy constructor
253 // Return polymorphic copy of object
255 DrawableBase* copy() const;
332 // Return polymorphic copy of object
333 DrawableBase* copy() const;
[all …]
/external/llvm/lib/CodeGen/
DMachineCopyPropagation.cpp1 //===- MachineCopyPropagation.cpp - Machine Copy Propagation Pass ---------===//
10 // This is an extremely simple MachineInstr-level copy propagation pass.
65 bool eraseIfRedundant(MachineInstr &Copy, unsigned Src, unsigned Def);
82 "Machine Copy Propagation Pass", false, false)
89 // Source of copy is no longer available for propagation. in removeRegsFromMap()
123 /// Return true if \p PreviousCopy did copy register \p Src to register \p Def.
127 /// isNopCopy("ecx = COPY eax", AX, CX) == true
128 /// isNopCopy("ecx = COPY eax", AH, CL) == false
143 /// Remove instruction \p Copy if there exists a previous copy that copies the
146 bool MachineCopyPropagation::eraseIfRedundant(MachineInstr &Copy, unsigned Src, in eraseIfRedundant() argument
[all …]
/external/clang/test/SemaObjC/
Dproperty-10.m11 @property(copy) int p2; // expected-error {{property with 'copy' attribute must be of object type}}
13 @property(assign, copy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mu…
16 @property(copy, retain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mu…
17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mu…
18 @property(assign, copy, retain) id p3_3; // expected-error {{property attributes 'assign' and 'copy
19 @property(assign, copy, strong) id s3_3; // expected-error {{property attributes 'assign' and 'copy
21 @property(unsafe_unretained, copy) id p4_0; // expected-error {{property attributes 'unsafe_unretai…
24 @property(unsafe_unretained, copy, retain) id p4_3; // expected-error {{property attributes 'unsafe…
25 @property(unsafe_unretained, copy, strong) id s4_3; // expected-error {{property attributes 'unsafe…
27 @property id p4; // expected-warning {{no 'assign', 'retain', or 'copy' attribute is specified - 'a…
[all …]
/external/icu/icu4c/source/common/
Dcommon.vcxproj485 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\includ…
488 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\…
491 …<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\incl…
494 …<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\includ…
505 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\includ…
508 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\…
511 …<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\incl…
514 …<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\includ…
520 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\includ…
523 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\…
[all …]
/external/llvm/test/CodeGen/MIR/AArch64/
Dmachine-dead-copy.mir12 # The first copy is dead copy which is not used.
15 # CHECK-NOT: %w20 = COPY
21 %w20 = COPY %w1
26 # The first copy is not a dead copy which is used in the second copy after the
30 # CHECK: %w20 = COPY
36 %w20 = COPY %w1
38 %w0 = COPY %w20
42 # Both the first and second copy are dead copies which are not used.
45 # CHECK-NOT: COPY
51 %w20 = COPY %w1
[all …]
/external/libusb/.private/
Dbd.cmd14 copy examples\listdevs.c E:\dailies\%DATE%\examples\source
15 copy examples\xusb.c E:\dailies\%DATE%\examples\source
16 copy examples\ezusb.? E:\dailies\%DATE%\examples\source
17 copy examples\fxload.c E:\dailies\%DATE%\examples\source
18 copy msvc\stdint.h E:\dailies\%DATE%\examples\source
19 copy .private\wbs.txt E:\dailies\%DATE%\README.txt
38 copy Win32\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS32\static
39 copy Win32\Release\examples\listdevs.exe E:\dailies\%DATE%\examples\bin32
40 copy Win32\Release\examples\xusb.exe E:\dailies\%DATE%\examples\bin32
41 copy Win32\Release\examples\fxload.exe E:\dailies\%DATE%\examples\bin32
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DWifiConfigurationTest.java43 WifiConfiguration copy = shadowOf(wifiConfiguration).copy(); in shouldCopy() local
45 assertThat(copy.networkId, equalTo(1)); in shouldCopy()
46 assertThat(copy.SSID, equalTo("SSID")); in shouldCopy()
47 assertThat(copy.BSSID, equalTo("BSSID")); in shouldCopy()
48 assertThat(copy.preSharedKey, equalTo("preSharedKey")); in shouldCopy()
49 assertThat(copy.status, equalTo(666)); in shouldCopy()
50 assertThat(copy.wepTxKeyIndex, equalTo(777)); in shouldCopy()
51 assertThat(copy.priority, equalTo(2)); in shouldCopy()
52 assertThat(copy.hiddenSSID, equalTo(true)); in shouldCopy()
53 assertThat(copy.allowedKeyManagement.get(1), equalTo(true)); in shouldCopy()
[all …]
/external/icu/icu4c/source/i18n/
Di18n.vcxproj469 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\includ…
472 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\…
475 …<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\incl…
478 …<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\includ…
484 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\includ…
487 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\…
490 …<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\incl…
493 …<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\includ…
498 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\includ…
501 …<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\…
[all …]
/external/protobuf/js/binary/
Dproto_test.js194 * @param {proto.jspb.test.TestAllTypes} copy
196 function checkAllFields(original, copy) { argument
197 assertTrue(jspb.Message.equals(original, copy));
199 assertEquals(copy.getOptionalInt32(), -42);
200 assertEquals(copy.getOptionalInt64(), -0x7fffffff00000000);
201 assertEquals(copy.getOptionalUint32(), 0x80000000);
202 assertEquals(copy.getOptionalUint64(), 0xf000000000000000);
203 assertEquals(copy.getOptionalSint32(), -100);
204 assertEquals(copy.getOptionalSint64(), -0x8000000000000000);
205 assertEquals(copy.getOptionalFixed32(), 1234);
[all …]
/external/clang/test/SemaCXX/
Dwarn-range-loop-analysis.cpp68 …// expected-warning@-1 {{loop variable 'x' is always a copy because the range of type 'Container<i… in test0()
72 …oop variable 'x' has type 'const double &' but is initialized with type 'int' resulting in a copy}} in test0()
73 …// expected-note@-2 {{use non-reference type 'double' to keep the copy or type 'const int &' to pr… in test0()
76 …// expected-warning@-1 {{loop variable 'x' of type 'const Bar' creates a copy from type 'const Bar… in test0()
84 // expected-warning@-1 {{always a copy}} in test1()
87 // No warning, non-reference type indicates copy is made in test1()
91 // No warning, non-reference type indicates copy is made in test1()
94 // expected-warning@-1 {{always a copy}} in test1()
97 // No warning, non-reference type indicates copy is made in test1()
101 // No warning, non-reference type indicates copy is made in test1()
[all …]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy/
Dcopy.pass.cpp14 // void copy(const path& from, const path& to);
15 // void copy(const path& from, const path& to, error_code& ec) noexcept;
16 // void copy(const path& from, const path& to, copy_options options);
17 // void copy(const path& from, const path& to, copy_options options,
41 ASSERT_NOT_NOEXCEPT(fs::copy(p, p)); in TEST_CASE()
42 ASSERT_NOEXCEPT(fs::copy(p, p, ec)); in TEST_CASE()
43 ASSERT_NOT_NOEXCEPT(copy(p, p, opts)); in TEST_CASE()
44 ASSERT_NOEXCEPT(copy(p, p, opts, ec)); in TEST_CASE()
55 fs::copy(f, t); in TEST_CASE()
81 fs::copy(f, t, ec); in TEST_CASE()
[all …]
/external/harfbuzz_ng/win32/
Dinstall.mak8 @copy /b $(HARFBUZZ_DLL_FILENAME).dll $(PREFIX)\bin
9 @copy /b $(HARFBUZZ_DLL_FILENAME).pdb $(PREFIX)\bin
10 @copy /b $(CFG)\$(PLAT)\harfbuzz.lib $(PREFIX)\lib
11 …@if exist $(HARFBUZZ_GOBJECT_DLL_FILENAME).dll copy /b $(HARFBUZZ_GOBJECT_DLL_FILENAME).dll $(PREF…
12 …@if exist $(HARFBUZZ_GOBJECT_DLL_FILENAME).dll copy /b $(HARFBUZZ_GOBJECT_DLL_FILENAME).pdb $(PREF…
13 …@if exist $(HARFBUZZ_GOBJECT_DLL_FILENAME).dll copy /b $(CFG)\$(PLAT)\harfbuzz-gobject.lib $(PREFI…
14 @if exist $(CFG)\$(PLAT)\hb-view.exe copy /b $(CFG)\$(PLAT)\hb-view.exe $(PREFIX)\bin
15 @if exist $(CFG)\$(PLAT)\hb-view.exe copy /b $(CFG)\$(PLAT)\hb-view.pdb $(PREFIX)\bin
16 …@if exist $(CFG)\$(PLAT)\hb-ot-shape-closure.exe copy /b $(CFG)\$(PLAT)\hb-ot-shape-closure.exe $(…
17 …@if exist $(CFG)\$(PLAT)\hb-ot-shape-closure.exe copy /b $(CFG)\$(PLAT)\hb-ot-shape-closure.pdb $(…
[all …]
/external/mesa3d/src/mesa/math/
Dm_copy_tmp.h9 * copy of this software and associated documentation files (the "Software"),
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
32 static void TAG2(copy, BITS)( GLvector4f *to, const GLvector4f *f ) \
70 _mesa_copy_tab[0x0] = TAG2(copy, 0x0);
71 _mesa_copy_tab[0x1] = TAG2(copy, 0x1);
72 _mesa_copy_tab[0x2] = TAG2(copy, 0x2);
73 _mesa_copy_tab[0x3] = TAG2(copy, 0x3);
74 _mesa_copy_tab[0x4] = TAG2(copy, 0x4);
75 _mesa_copy_tab[0x5] = TAG2(copy, 0x5);
76 _mesa_copy_tab[0x6] = TAG2(copy, 0x6);
[all …]
/external/llvm/test/CodeGen/AArch64/GlobalISel/
Darm64-regbankselect.mir94 # Indeed based on the source of the copy it should live
108 ; CHECK: %0(32) = COPY %s0
109 ; CHECK-NEXT: %2(32) = COPY %0
111 %0(32) = COPY %s0
129 ; CHECK: %0(32) = COPY %s0
130 ; CHECK-NEXT: %2(32) = COPY %0
131 ; CHECK-NEXT: %3(32) = COPY %0
133 %0(32) = COPY %s0
154 ; CHECK: %0(32) = COPY %w0
156 ; CHECK-NEXT: %1(32) = COPY %2
[all …]
/external/icu/icu4c/source/test/intltest/
Dtstnrapi.cpp33 // test copy constructor in TestNormalizerAPI()
34 Normalizer copy(norm); in TestNormalizerAPI() local
35 if(copy.next()!=0xac00) { in TestNormalizerAPI()
40 Normalizer *clone=copy.clone(); in TestNormalizerAPI()
41 if(*clone!=copy) { in TestNormalizerAPI()
42 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy"); in TestNormalizerAPI()
45 if(clone->hashCode()!=copy.hashCode()) { in TestNormalizerAPI()
46 … errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()"); in TestNormalizerAPI()
52 if(clone->hashCode()==copy.hashCode()) { in TestNormalizerAPI()
53 …errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()==copy.hashCod… in TestNormalizerAPI()
[all …]
/external/skia/src/core/
DSkRecorder.cpp80 // Use copy() only for optional arguments, to be copied if present or skipped if not.
81 // (For most types we just pass by value and let copy constructors do their thing.)
83 T* SkRecorder::copy(const T* src) { in copy() function in SkRecorder
90 // This copy() is for arrays.
93 T* SkRecorder::copy(const T src[], size_t count) { in copy() function in SkRecorder
108 char* SkRecorder::copy(const char src[], size_t count) { in copy() function in SkRecorder
119 char* SkRecorder::copy(const char* src) { in copy() function in SkRecorder
120 return this->copy(src, strlen(src)+1); in copy()
139 APPEND(DrawPoints, paint, mode, SkToUInt(count), this->copy(pts, count)); in onDrawPoints()
174 APPEND(DrawDrawable, this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1); in onDrawDrawable()
[all …]
/external/zlib/src/
Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
379 local int updatewindow(strm, end, copy) in updatewindow() argument
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
413 zmemcpy(state->window + state->wnext, end - copy, dist);
[all …]
/external/pdfium/third_party/zlib_v128/
Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
382 unsigned copy) in updatewindow() argument
404 /* copy state->wsize or less output bytes into the circular window */ in updatewindow()
405 if (copy >= state->wsize) { in updatewindow()
412 if (dist > copy) dist = copy; in updatewindow()
413 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow()
414 copy -= dist; in updatewindow()
[all …]

12345678910>>...671