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

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/clib/
H A Dstrdup.c52 char *copy; local
55 if (!(copy = malloc((u_int)len)))
57 memcpy(copy, str, len);
58 return (copy);
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dstrdup.c39 char *copy; local
42 if (!(copy = malloc(len)))
44 memcpy(copy, str, len);
45 return (copy);
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGMatrix.h14 * You should have received a copy of the GNU Library General Public License
47 AffineTransform copy = *this; local
48 copy.translate(tx, ty);
49 return static_cast<SVGMatrix>(copy);
54 AffineTransform copy = *this; local
55 copy.scale(s, s);
56 return static_cast<SVGMatrix>(copy);
61 AffineTransform copy = *this; local
62 copy.scale(sx, sy);
63 return static_cast<SVGMatrix>(copy);
68 AffineTransform copy = *this; local
75 AffineTransform copy = *this; local
82 AffineTransform copy = *this; local
89 AffineTransform copy = *this; local
96 AffineTransform copy = *this; local
103 AffineTransform copy = *this; local
122 AffineTransform copy = *this; local
[all...]
/macosx-10.9.5/Libc-997.90.3/string/FreeBSD/
H A Dstrdup.c44 char *copy; local
47 if ((copy = malloc(len)) == NULL)
49 memcpy(copy, str, len);
50 return (copy);
H A Dstrndup.c43 char *copy; local
48 if ((copy = malloc(len + 1)) == NULL)
50 memcpy(copy, str, len);
51 copy[len] = '\0';
52 return (copy);
H A Dwcsdup.c36 wchar_t *copy; local
40 if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
42 return (wmemcpy(copy, s, len));
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/
H A Dautogen.sh3 libtoolize --force --copy
6 automake --foreign --add-missing --copy
/macosx-10.9.5/tcpdump-56/tcpdump/missing/
H A Dstrdup.c50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
/macosx-10.9.5/ICU-511.35/icuSources/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...]
/macosx-10.9.5/OpenPAM-20/openpam/
H A Dautogen.sh7 libtoolize --copy --force
/macosx-10.9.5/libsecurity_agent-55000/lib/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.9.5/securityd-55199.3/libsecurity_agent/lib/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.9.5/securityd-55199.3/libsecurity_agent/security_agent_client/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.9.5/securityd-55199.3/security_agent_client/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.9.5/securityd-55199.3/security_agent_server/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.9.5/Heimdal-323.92.1/lib/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);
/macosx-10.9.5/ICU-511.35/icuSources/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...]
/macosx-10.9.5/SmartcardCCID-55005/ccid/ccid/
H A Dbootstrap8 libtoolize --copy --force --automake
11 automake --add-missing --copy --force --foreign
/macosx-10.9.5/libedit-39/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);
/macosx-10.9.5/libclosure-63/objectTests/
H A Dbyrefstruct.c22 BobTheStruct copy; local
33 memset(&copy, 0x2A, sizeof(copy));
41 copy = fiddly;
44 if ( &copy == &fiddly ) {
48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]);
49 if ( (fiddly.ps[i] != copy
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/CPP/
H A DWebDOMTestNamedConstructor.cpp15 * You should have received a copy of the GNU Library General Public License
50 WebDOMTestNamedConstructor::WebDOMTestNamedConstructor(const WebDOMTestNamedConstructor& copy) argument
53 m_impl = copy.impl() ? new WebDOMTestNamedConstructorPrivate(copy.impl()) : 0;
56 WebDOMTestNamedConstructor& WebDOMTestNamedConstructor::operator=(const WebDOMTestNamedConstructor& copy) argument
59 m_impl = copy.impl() ? new WebDOMTestNamedConstructorPrivate(copy.impl()) : 0;
H A DWebDOMTestOverloadedConstructors.cpp15 * You should have received a copy of the GNU Library General Public License
50 WebDOMTestOverloadedConstructors::WebDOMTestOverloadedConstructors(const WebDOMTestOverloadedConstructors& copy) argument
53 m_impl = copy.impl() ? new WebDOMTestOverloadedConstructorsPrivate(copy.impl()) : 0;
56 WebDOMTestOverloadedConstructors& WebDOMTestOverloadedConstructors::operator=(const WebDOMTestOverloadedConstructors& copy) argument
59 m_impl = copy.impl() ? new WebDOMTestOverloadedConstructorsPrivate(copy.impl()) : 0;
/macosx-10.9.5/SecurityTokend-55107/lib/
H A Dtdtransit.h9 * compliance with the License. Please obtain a copy of the License at
57 #define COPY(copy) copy, copy.length(), copy
58 #define COPYFLAT(copy) copy, copy##Length, copy
59 #define COPY_OUT(copy)
[all...]
/macosx-10.9.5/SecurityTokend-55107/security_tokend_client/
H A Dtdtransit.h9 * compliance with the License. Please obtain a copy of the License at
57 #define COPY(copy) copy, copy.length(), copy
58 #define COPYFLAT(copy) copy, copy##Length, copy
59 #define COPY_OUT(copy)
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/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...]

Completed in 187 milliseconds

1234567891011>>