Searched refs:copy (Results 1 - 25 of 1958) 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/lib/asan/lit_tests/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/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGMatrix.h14 * You should have received a copy of the GNU Library General Public License
45 AffineTransform copy = *this; local
46 copy.translate(tx, ty);
47 return static_cast<SVGMatrix>(copy);
52 AffineTransform copy = *this; local
53 copy.scale(s, s);
54 return static_cast<SVGMatrix>(copy);
59 AffineTransform copy = *this; local
60 copy.scale(sx, sy);
61 return static_cast<SVGMatrix>(copy);
66 AffineTransform copy = *this; local
73 AffineTransform copy = *this; local
80 AffineTransform copy = *this; local
87 AffineTransform copy = *this; local
94 AffineTransform copy = *this; local
101 AffineTransform copy = *this; local
120 AffineTransform copy = *this; local
[all...]
/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/icu4c/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/icu4c/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/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/dropbear/libtomcrypt/src/pk/asn1/der/set/
H A Dder_encode_set.c70 ltc_asn1_list *copy; local
74 /* make copy of list */
75 copy = XCALLOC(inlen, sizeof(*copy));
76 if (copy == NULL) {
82 copy[x] = list[x];
83 copy[x].used = x;
87 XQSORT(copy, inlen, sizeof(*copy), &qsort_helper);
90 err = der_encode_sequence_ex(copy, inle
[all...]
/external/elfutils/tests/
H A Drun-ranlib-test.sh15 # You should have received a copy of the GNU General Public License along
29 tempfiles ranlib-test.a ranlib-test.a-copy
39 cp ranlib-test.a ranlib-test.a-copy
44 cmp ranlib-test.a ranlib-test.a-copy
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCPair.m37 _key = [key copy];
38 _value = [value copy];
/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/ui/gfx/
H A Dpath_gtk.cc36 GdkRegion* copy = gdk_region_copy(r1); local
37 gdk_region_intersect(copy, r2);
38 return copy;
43 GdkRegion* copy = gdk_region_copy(r1); local
44 gdk_region_union(copy, r2);
45 return copy;
50 GdkRegion* copy = gdk_region_copy(r1); local
51 gdk_region_subtract(copy, r2);
52 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/icu4c/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/chromium/third_party/libevent/
H A Dautogen.sh11 automake --add-missing --copy

Completed in 973 milliseconds

1234567891011>>