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

1234567891011>>

/macosx-10.10/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.10/lukemftp-14/tnftp/libnetbsd/
H A Dstrdup.c39 char *copy; local
42 if (!(copy = malloc(len)))
44 memcpy(copy, str, len);
45 return (copy);
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGMatrix.h14 * You should have received a copy of the GNU Library General Public License
46 AffineTransform copy = *this; local
47 copy.translate(tx, ty);
48 return static_cast<SVGMatrix>(copy);
53 AffineTransform copy = *this; local
54 copy.scale(s, s);
55 return static_cast<SVGMatrix>(copy);
60 AffineTransform copy = *this; local
61 copy.scale(sx, sy);
62 return static_cast<SVGMatrix>(copy);
67 AffineTransform copy = *this; local
74 AffineTransform copy = *this; local
81 AffineTransform copy = *this; local
88 AffineTransform copy = *this; local
95 AffineTransform copy = *this; local
102 AffineTransform copy = *this; local
121 AffineTransform copy = *this; local
[all...]
/macosx-10.10/Libc-1044.1.2/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.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/
H A Dautogen.sh3 libtoolize --force --copy
6 automake --foreign --add-missing --copy
/macosx-10.10/tcpdump-61/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.10/WebCore-7600.1.25/bindings/scripts/test/ObjC/
H A DDOMTestInterface.h39 @property (readonly, copy) NSString *implementsStr1;
40 @property (copy) NSString *implementsStr2;
41 @property (copy) NSString *implementsStr3;
43 @property (readonly, copy) NSString *supplementalStr1;
44 @property (copy) NSString *supplementalStr2;
45 @property (copy) NSString *supplementalStr3;
H A DDOMTestNondeterministic.h34 @property (copy) NSString *nondeterministicWriteableAttr;
35 @property (copy) NSString *nondeterministicExceptionAttr;
36 @property (copy) NSString *nondeterministicGetterExceptionAttr;
37 @property (copy) NSString *nondeterministicSetterExceptionAttr;
/macosx-10.10/ICU-531.30/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.10/OpenPAM-20/openpam/
H A Dautogen.sh7 libtoolize --copy --force
/macosx-10.10/Security-57031.1.35/securityd/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.10/Security-57031.1.35/securityd/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.10/Security-57031.1.35/securityd/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.10/Security-57031.1.35/securityd/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.10/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.10/Heimdal-398.1.2/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.10/ICU-531.30/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.10/OpenSSL098-52/src/demos/tunala/
H A Dautogunk.sh18 libtoolize --copy --force
19 automake --foreign --add-missing --copy
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/
H A Dbootstrap8 libtoolize --copy --force --automake
11 automake --add-missing --copy --force --foreign
/macosx-10.10/libedit-40/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.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBackForwardListItem.h39 @property (readonly, copy) NSURL *URL;
43 @property (readonly, copy) NSString *title;
47 @property (readonly, copy) NSURL *initialURL;
/macosx-10.10/libclosure-65/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.10/SecurityTokend-55108/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...]

Completed in 150 milliseconds

1234567891011>>