Home
last modified time | relevance | path

Searched refs:copy (Results 1 – 25 of 4425) sorted by relevance

12345678910>>...177

/external/mesa3d/src/mesa/vbo/
Dvbo_split_copy.c117 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()
183 dump_draw_info(copy->ctx, in flush()
184 copy->dstarray_ptr, in flush()
[all …]
/external/caliper/examples/src/main/java/examples/
DCopyArrayBenchmark.java50 @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
68 @Override int[] copy(int[] array) { in copy() method
71 @Override long[] copy(long[] array) { in copy() method
74 @Override short[] copy(short[] array) { in copy() method
79 @Override Object[] copy(Object[] 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/protobuf/vsprojects/
Dextract_includes.bat10 copy ..\src\google\protobuf\stubs\atomicops.h include\google\protobuf\stubs\atomicops.h
11 copy ..\src\google\protobuf\stubs\atomicops_internals_x86_msvc.h include\google\protobuf\stubs\atom…
12 copy ..\src\google\protobuf\stubs\common.h include\google\protobuf\stubs\common.h
13 copy ..\src\google\protobuf\stubs\once.h include\google\protobuf\stubs\once.h
14 copy ..\src\google\protobuf\stubs\platform_macros.h include\google\protobuf\stubs\platform_macros.h
15 copy ..\src\google\protobuf\stubs\template_util.h include\google\protobuf\stubs\template_util.h
16 copy ..\src\google\protobuf\stubs\type_traits.h include\google\protobuf\stubs\type_traits.h
17 copy ..\src\google\protobuf\descriptor.h include\google\protobuf\descriptor.h
18 copy ..\src\google\protobuf\descriptor.pb.h include\google\protobuf\descriptor.pb.h
19 copy ..\src\google\protobuf\descriptor_database.h include\google\protobuf\descriptor_database.h
[all …]
/external/mesa3d/src/mesa/math/
Dm_copy_tmp.h32 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);
77 _mesa_copy_tab[0x7] = TAG2(copy, 0x7);
78 _mesa_copy_tab[0x8] = TAG2(copy, 0x8);
[all …]
/external/icu/icu4c/source/test/intltest/
Dtstnrapi.cpp32 Normalizer copy(norm); in TestNormalizerAPI() local
33 if(copy.next()!=0xac00) { in TestNormalizerAPI()
38 Normalizer *clone=copy.clone(); in TestNormalizerAPI()
39 if(*clone!=copy) { in TestNormalizerAPI()
43 if(clone->hashCode()!=copy.hashCode()) { in TestNormalizerAPI()
50 if(clone->hashCode()==copy.hashCode()) { in TestNormalizerAPI()
82 copy.setText(iter, errorCode); in TestNormalizerAPI()
86 copy.getText(out); in TestNormalizerAPI()
89 copy.startIndex()!=iter.startIndex() || in TestNormalizerAPI()
90 copy.endIndex()!=iter.endIndex() in TestNormalizerAPI()
[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/unicode/
Dfieldpos.h140 FieldPosition(const FieldPosition& copy) in FieldPosition() argument
141 … : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {} in FieldPosition()
154 FieldPosition& operator=(const FieldPosition& copy);
264 FieldPosition::operator=(const FieldPosition& copy)
266 fField = copy.fField;
267 fEndIndex = copy.fEndIndex;
268 fBeginIndex = copy.fBeginIndex;
273 FieldPosition::operator==(const FieldPosition& copy) const
275 return (fField == copy.fField &&
276 fEndIndex == copy.fEndIndex &&
[all …]
/external/gptfdisk/
Dguid.cc67 string copy, fragment; in operator =() local
82 copy = DeleteSpaces(orig); in operator =()
85 len = copy.length(); in operator =()
93 uuidData[3] = StrToHex(copy, 0); in operator =()
94 uuidData[2] = StrToHex(copy, 2); in operator =()
95 uuidData[1] = StrToHex(copy, 4); in operator =()
96 uuidData[0] = StrToHex(copy, 6); in operator =()
99 uuidData[5] = StrToHex(copy, (unsigned int) segStart[1]); in operator =()
100 uuidData[4] = StrToHex(copy, (unsigned int) segStart[1] + 2); in operator =()
103 uuidData[7] = StrToHex(copy, (unsigned int) segStart[2]); in operator =()
[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_ICU_DLL_FILENAME).dll copy /b $(HARFBUZZ_ICU_DLL_FILENAME).dll $(PREFIX)\bin
12 @if exist $(HARFBUZZ_ICU_DLL_FILENAME).dll copy /b $(HARFBUZZ_ICU_DLL_FILENAME).pdb $(PREFIX)\bin
13 @if exist $(HARFBUZZ_ICU_DLL_FILENAME).dll copy /b $(CFG)\$(PLAT)\harfbuzz-icu.lib $(PREFIX)\lib
14 …@if exist $(HARFBUZZ_GOBJECT_DLL_FILENAME).dll copy /b $(HARFBUZZ_GOBJECT_DLL_FILENAME).dll $(PREF…
15 …@if exist $(HARFBUZZ_GOBJECT_DLL_FILENAME).dll copy /b $(HARFBUZZ_GOBJECT_DLL_FILENAME).pdb $(PREF…
16 …@if exist $(HARFBUZZ_GOBJECT_DLL_FILENAME).dll copy /b $(CFG)\$(PLAT)\harfbuzz-gobject.lib $(PREFI…
17 @if exist $(CFG)\$(PLAT)\hb-view.exe copy /b $(CFG)\$(PLAT)\hb-view.exe $(PREFIX)\bin
[all …]
/external/libcxx/test/std/localization/locales/locale/locale.operators/
Deq.pass.cpp22 std::locale copy(cloc); in main() local
30 assert(cloc == copy); in main()
37 assert(copy == cloc); in main()
38 assert(copy == copy); in main()
39 assert(copy != n1); in main()
40 assert(copy != n2); in main()
41 assert(copy != noname1); in main()
42 assert(copy != nonamec); in main()
43 assert(copy != noname2); in main()
46 assert(n1 != copy); in main()
[all …]
/external/zlib/src/
Dinflate.c97 unsigned copy));
379 local int updatewindow(strm, end, copy) in updatewindow() argument
382 unsigned copy;
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
413 zmemcpy(state->window + state->wnext, end - copy, dist);
414 copy -= dist;
415 if (copy) {
416 zmemcpy(state->window, end - copy, copy);
417 state->wnext = copy;
[all …]
/external/opencv3/3rdparty/zlib/
Dinflate.c97 unsigned copy));
379 local int updatewindow(strm, end, copy) in updatewindow() argument
382 unsigned copy;
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
413 zmemcpy(state->window + state->wnext, end - copy, dist);
414 copy -= dist;
415 if (copy) {
416 zmemcpy(state->window, end - copy, copy);
417 state->wnext = copy;
[all …]
/external/icu/icu4c/source/common/unicode/
Dparsepos.h75 ParsePosition(const ParsePosition& copy) in ParsePosition() argument
76 : UObject(copy), in ParsePosition()
77 index(copy.index), in ParsePosition()
78 errorIndex(copy.errorIndex) in ParsePosition()
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy)
185 index = copy.index;
186 errorIndex = copy.errorIndex;
191 ParsePosition::operator==(const ParsePosition& copy) const
193 if(index != copy.index || errorIndex != copy.errorIndex)
[all …]
/external/pdfium/third_party/zlib_v128/
Dinflate.c97 unsigned copy));
382 unsigned copy) in updatewindow() argument
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()
415 if (copy) { in updatewindow()
416 zmemcpy(state->window, end - copy, copy); in updatewindow()
417 state->wnext = copy; in updatewindow()
616 unsigned copy; /* number of stored or match bytes to copy */ in inflate() local
[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/skia/src/core/
DSkRecorder.cpp84 T* SkRecorder::copy(const T* src) { in copy() function in SkRecorder
94 T* SkRecorder::copy(const T src[], size_t count) { in copy() function in SkRecorder
109 char* SkRecorder::copy(const char src[], size_t count) { in copy() function in SkRecorder
120 char* SkRecorder::copy(const char* src) { in copy() function in SkRecorder
121 return this->copy(src, strlen(src)+1); in copy()
140 APPEND(DrawPoints, paint, mode, SkToUInt(count), this->copy(pts, count)); in onDrawPoints()
166 APPEND(DrawDrawable, this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1); in onDrawDrawable()
188 APPEND(DrawBitmap, this->copy(paint), bitmap, left, top); in onDrawBitmap()
206 APPEND(DrawBitmapRectFast, this->copy(paint), bitmap, this->copy(src), dst); in onDrawBitmapRect()
210 APPEND(DrawBitmapRect, this->copy(paint), bitmap, this->copy(src), dst); in onDrawBitmapRect()
[all …]
/external/curl/src/
Dtool_cb_hdr.c138 char *copy; in parse_filename() local
144 copy = malloc(len+1); in parse_filename()
145 if(!copy) in parse_filename()
147 memcpy(copy, ptr, len); in parse_filename()
148 copy[len] = '\0'; in parse_filename()
150 p = copy; in parse_filename()
160 q = strrchr(copy, '/'); in parse_filename()
164 Curl_safefree(copy); in parse_filename()
176 Curl_safefree(copy); in parse_filename()
201 if(copy != p) in parse_filename()
[all …]
/external/clang/test/CodeGenObjC/
Dcategory-super-class-meth.m4 -(id)copy; method
5 +(id)copy; class
11 -(id)copy { return [super copy]; } // ok: instance method in class method
12 +(id)copy { return [super copy]; } // ok: class method in class class
20 -(id)copy { return [super copy]; } // ok: instance method in category method in Category
21 +(id)copy { return [super copy]; } // BAD: class method in category class in Category
24 // CHECK: define internal i8* @"\01+[Sub2(Category) copy]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DImmutableSortedMapTest.java409 ImmutableSortedMap<String, Integer> copy in testCopyOfEmptyMap() local
411 assertEquals(Collections.<String, Integer>emptyMap(), copy); in testCopyOfEmptyMap() local
412 assertSame(copy, ImmutableSortedMap.copyOf(copy)); in testCopyOfEmptyMap()
413 assertSame(Ordering.natural(), copy.comparator()); in testCopyOfEmptyMap()
417 ImmutableSortedMap<String, Integer> copy in testCopyOfSingletonMap() local
419 assertMapEquals(copy, "one", 1); in testCopyOfSingletonMap()
420 assertSame(copy, ImmutableSortedMap.copyOf(copy)); in testCopyOfSingletonMap()
421 assertSame(Ordering.natural(), copy.comparator()); in testCopyOfSingletonMap()
430 ImmutableSortedMap<String, Integer> copy in testCopyOf() local
432 assertMapEquals(copy, "one", 1, "three", 3, "two", 2); in testCopyOf()
[all …]
/external/zlib/src/contrib/infback9/
Dinfback9.c238 unsigned long copy; /* number of stored or match bytes to copy */ local
328 copy = length;
331 if (copy > have) copy = have;
332 if (copy > left) copy = left;
333 zmemcpy(put, next, copy);
334 have -= copy;
335 next += copy;
336 left -= copy;
337 put += copy;
338 length -= copy;
[all …]
/external/mockito/src/org/mockito/internal/creation/settings/
DCreationSettings.java37 public CreationSettings(CreationSettings copy) { in CreationSettings() argument
38 this.typeToMock = copy.typeToMock; in CreationSettings()
39 this.extraInterfaces = copy.extraInterfaces; in CreationSettings()
40 this.name = copy.name; in CreationSettings()
41 this.spiedInstance = copy.spiedInstance; in CreationSettings()
42 this.defaultAnswer = copy.defaultAnswer; in CreationSettings()
43 this.mockName = copy.mockName; in CreationSettings()
44 this.serializable = copy.serializable; in CreationSettings()
45 this.invocationListeners = copy.invocationListeners; in CreationSettings()
46 this.stubOnly = copy.stubOnly; in CreationSettings()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DAbstractRealVector.java111 RealVector result = v.copy(); in add()
139 RealVector result = v.copy(); in subtract()
151 return copy().mapAddToSelf(d); in mapAdd()
167 public abstract AbstractRealVector copy(); in copy() method in AbstractRealVector
350 return copy().mapAbsToSelf(); in mapAbs()
364 return copy().mapAcosToSelf(); in mapAcos()
378 return copy().mapAsinToSelf(); in mapAsin()
392 return copy().mapAtanToSelf(); in mapAtan()
406 return copy().mapCbrtToSelf(); in mapCbrt()
420 return copy().mapCeilToSelf(); in mapCeil()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DLenientSerializableTester.java48 Set<E> copy = reserialize(original); in reserializeAndAssertLenient() local
49 assertEquals(original, copy); in reserializeAndAssertLenient()
50 assertTrue(copy instanceof ImmutableSet); in reserializeAndAssertLenient()
51 return copy; in reserializeAndAssertLenient()
56 Multiset<E> copy = reserialize(original); in reserializeAndAssertLenient() local
57 assertEquals(original, copy); in reserializeAndAssertLenient()
58 assertTrue(copy instanceof ImmutableMultiset); in reserializeAndAssertLenient()
59 return copy; in reserializeAndAssertLenient()

12345678910>>...177