Searched refs:copy (Results 1 - 25 of 2627) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dxstrdup.c48 char *copy; local
51 copy = yasm_xmalloc(len);
52 memcpy(copy, str, len);
53 return (copy);
60 char *copy; local
64 copy = yasm_xmalloc(len+1);
65 memcpy(copy, str, len);
66 copy[len] = '\0';
67 return (copy);
/external/compiler-rt/test/asan/TestCases/
H A Dstrdup_oob_test.cc11 char *copy = strdup(kString); local
12 int x = copy[4 + argc]; // BOOM
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A 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 )
119 GLenum mode = copy->dstprim[copy->dstprim_nr].mode;
122 copy->dstelt_nr & 1) { /* see bug9962 */
126 if (copy->dstbuf_nr + 4 > copy->dstbuf_size)
129 if (copy->dstelt_nr + 4 > copy
227 begin( struct copy_context *copy, GLenum mode, GLboolean begin_flag ) argument
242 elt(struct copy_context *copy, GLuint elt_idx) argument
308 end( struct copy_context *copy, GLboolean end_flag ) argument
599 struct copy_context copy; local
[all...]
/external/mesa3d/src/mesa/vbo/
H A 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 )
119 GLenum mode = copy->dstprim[copy->dstprim_nr].mode;
122 copy->dstelt_nr & 1) { /* see bug9962 */
126 if (copy->dstbuf_nr + 4 > copy->dstbuf_size)
129 if (copy->dstelt_nr + 4 > copy
227 begin( struct copy_context *copy, GLenum mode, GLboolean begin_flag ) argument
242 elt(struct copy_context *copy, GLuint elt_idx) argument
308 end( struct copy_context *copy, GLboolean end_flag ) argument
599 struct copy_context copy; local
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeMemPool.cpp9 * You may obtain a copy of the License at
35 char* copy = (char*)pool->alloc(size); local
37 std::copy(string, string+size, copy);
39 return copy;
/external/tcpdump/missing/
H A Dstrdup.c50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A 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,
[all...]
/external/mesa3d/src/mesa/math/
H A 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,
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dparsepos.h72 * @param copy the object to be copied from.
75 ParsePosition(const ParsePosition& copy) argument
76 : UObject(copy),
77 index(copy.index),
78 errorIndex(copy.errorIndex)
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy) argument
185 index = copy.index;
186 errorIndex = copy.errorIndex;
191 ParsePosition::operator==(const ParsePosition& copy) cons
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dparsepos.h72 * @param copy the object to be copied from.
75 ParsePosition(const ParsePosition& copy) argument
76 : UObject(copy),
77 index(copy.index),
78 errorIndex(copy.errorIndex)
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy) argument
185 index = copy.index;
186 errorIndex = copy.errorIndex;
191 ParsePosition::operator==(const ParsePosition& copy) cons
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DMemoable.java6 * Produce a copy of this object with its configuration and in its current state.
11 public Memoable copy(); method in interface:Memoable
18 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dfieldpos.h14 * 07/17/98 stephen Added default/copy ctors, and operators =, ==, !=
137 * @param copy the object to be copied from.
140 FieldPosition(const FieldPosition& copy) argument
141 : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {}
151 * @param copy the object to be copied from.
154 FieldPosition& operator=(const FieldPosition& copy);
264 FieldPosition::operator=(const FieldPosition& copy) argument
[all...]
/external/clang/test/Analysis/diagnostics/
H A Dexplicit-suppression.cpp13 std::copy(I, E, (int *)0);
/external/clang/test/CodeGen/
H A D2007-04-24-VolatileStructCopy.c8 void copy(volatile struct foo *p, struct foo *q) { function
/external/icu/icu4c/source/i18n/unicode/
H A Dfieldpos.h14 * 07/17/98 stephen Added default/copy ctors, and operators =, ==, !=
137 * @param copy the object to be copied from.
140 FieldPosition(const FieldPosition& copy) argument
141 : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {}
151 * @param copy the object to be copied from.
154 FieldPosition& operator=(const FieldPosition& copy);
264 FieldPosition::operator=(const FieldPosition& copy) argument
[all...]
/external/libedit/src/
H A Dwcsdup.c9 * Permission to use or copy this software for any purpose is hereby granted
29 wchar_t *copy; local
35 copy = malloc(len * sizeof (wchar_t));
37 if (!copy)
40 return wmemcpy(copy, str, len);
/external/chromium_org/tools/perf/measurements/
H A Dsmooth_gesture_util.py4 import copy namespace
22 return copy.copy(interaction_record)
30 return copy.copy(interaction_record)
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DWifiConfigurationTest.java43 WifiConfiguration copy = shadowOf(wifiConfiguration).copy();
45 assertThat(copy.networkId, equalTo(1));
46 assertThat(copy.SSID, equalTo("SSID"));
47 assertThat(copy.BSSID, equalTo("BSSID"));
48 assertThat(copy.preSharedKey, equalTo("preSharedKey"));
49 assertThat(copy.status, equalTo(666));
50 assertThat(copy.wepTxKeyIndex, equalTo(777));
51 assertThat(copy.priority, equalTo(2));
52 assertThat(copy
[all...]
/external/chromium_org/third_party/skia/tests/
H A DMiniDataTest.cpp12 SkMiniData copy(md);
13 REPORTER_ASSERT(r, copy.len() == len);
14 REPORTER_ASSERT(r, 0 == memcmp(copy.data(), s, len));
/external/clang/test/Lexer/
H A Ddigraph.c10 void copy(char d<::>, const char s<::>, int len)
/external/guava/guava-testlib/src/com/google/common/testing/
H A DSerializableTester.java6 * You may obtain a copy of the License at
95 T copy = reserialize(object);
97 .addEqualityGroup(object, copy)
99 Assert.assertEquals(object.getClass(), copy.getClass());
100 return copy;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtstnrapi.cpp31 // test copy constructor
32 Normalizer copy(norm);
33 if(copy.next()!=0xac00) {
38 Normalizer *clone=copy.clone();
39 if(*clone!=copy) {
40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
43 if(clone->hashCode()!=copy.hashCode()) {
44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
50 if(clone->hashCode()==copy.hashCode()) {
51 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()==copy
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtstnrapi.cpp31 // test copy constructor
32 Normalizer copy(norm);
33 if(copy.next()!=0xac00) {
38 Normalizer *clone=copy.clone();
39 if(*clone!=copy) {
40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
43 if(clone->hashCode()!=copy.hashCode()) {
44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
50 if(clone->hashCode()==copy.hashCode()) {
51 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()==copy
[all...]
/external/libcxx/test/localization/locales/locale/locale.operators/
H A Deq.pass.cpp22 std::locale copy(cloc);
30 assert(cloc == copy);
37 assert(copy == cloc);
38 assert(copy == copy);
39 assert(copy != n1);
40 assert(copy != n2);
41 assert(copy != noname1);
42 assert(copy != nonamec);
43 assert(copy !
[all...]
/external/chromium_org/third_party/angle/src/
H A Dcopy_compiler_dll.bat4 copy %2"\Redist\D3D\"%_arch%"\d3dcompiler_46.dll" %3 > NUL

Completed in 5612 milliseconds

1234567891011>>