Searched refs:from (Results 51 - 75 of 3428) sorted by relevance

1234567891011>>

/macosx-10.9.5/ruby-104/ruby/ext/socket/
H A Dunixserver.c51 struct sockaddr_un from; local
57 (struct sockaddr*)&from, &fromlen);
97 struct sockaddr_un from; local
101 fromlen = (socklen_t)sizeof(from);
103 (struct sockaddr *)&from, &fromlen);
128 struct sockaddr_un from; local
133 return rsock_s_accept(0, fptr->fd, (struct sockaddr*)&from, &fromlen);
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dcopy_host_realm.c18 * may be used to endorse or promote products derived from this software
37 * Copy the list of realms from `from' to `to'.
40 * @param from list of realms to copy from.
51 const krb5_realm *from,
57 for (n = 1, p = from; *p != NULL; ++p)
67 for (i = 0, p = from; *p != NULL; ++p, ++i) {
50 krb5_copy_host_realm(krb5_context context, const krb5_realm *from, krb5_realm **to) argument
H A Dasn1_glue.c18 * may be used to endorse or promote products derived from this software
42 const krb5_principal from)
44 return copy_PrincipalName(&from->name, p);
50 const PrincipalName from,
59 ret = copy_PrincipalName(&from, &p->name);
41 _krb5_principal2principalname(PrincipalName *p, const krb5_principal from) argument
48 _krb5_principalname2krb5_principal(krb5_context context, krb5_principal *principal, const PrincipalName from, const Realm realm) argument
/macosx-10.9.5/MITKerberosShim-62.1/
H A Dcreds.c20 * may be used to endorse or promote products derived from this software
95 const mit_krb5_creds *from,
105 ret = krb5_copy_principal(context, from->client, &c->client);
108 ret = krb5_copy_principal(context, from->server, &c->server);
112 ret = krb5_copy_keyblock_contents(context, &from->keyblock,
118 c->ticket.length = from->ticket.length;
119 c->ticket.data = mshim_malloc(from->ticket.length);
120 memcpy(c->ticket.data, from->ticket.data, c->ticket.length);
122 c->times.authtime = from->times.authtime;
123 c->times.starttime = from
94 krb5_copy_creds(mit_krb5_context context, const mit_krb5_creds *from, mit_krb5_creds **to) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/gamepad/
H A DNavigatorGamepad.cpp51 NavigatorGamepad* NavigatorGamepad::from(Navigator* navigator) function in class:WebCore::NavigatorGamepad
53 NavigatorGamepad* supplement = static_cast<NavigatorGamepad*>(Supplement<Navigator>::from(navigator, supplementName()));
63 return NavigatorGamepad::from(navigator)->gamepads();
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DWorkerContextIndexedDatabase.cpp54 WorkerContextIndexedDatabase* WorkerContextIndexedDatabase::from(ScriptExecutionContext* context) function in class:WebCore::WorkerContextIndexedDatabase
56 WorkerContextIndexedDatabase* supplement = static_cast<WorkerContextIndexedDatabase*>(Supplement<ScriptExecutionContext>::from(context, supplementName()));
66 return from(context)->indexedDB();
/macosx-10.9.5/WebCore-7537.78.1/Modules/networkinfo/
H A DNavigatorNetworkInfoConnection.cpp51 NavigatorNetworkInfoConnection* NavigatorNetworkInfoConnection::from(Navigator* navigator) function in class:WebCore::NavigatorNetworkInfoConnection
53 NavigatorNetworkInfoConnection* supplement = static_cast<NavigatorNetworkInfoConnection*>(Supplement<Navigator>::from(navigator, supplementName()));
66 NavigatorNetworkInfoConnection* navigatorConnection = NavigatorNetworkInfoConnection::from(navigator);
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGAnimateColorElement.cpp47 void SVGAnimateColorElement::determinePropertyValueTypes(const String& from, const String& to) argument
49 SVGAnimateElement::determinePropertyValueTypes(from, to);
50 if (attributeValueIsCurrentColor(from))
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/include/idn/
H A Dapi.h11 * license is obtained from Japan Network Information Center ("JPNIC"),
29 * derived from this Software without specific prior written approval of
87 * Initialize this module, and load configuration from the default
138 * Converts the domain name from UTF-8 to ACE (e.g. Punycode).
197 idn_encodename(idn_action_t actions, const char *from, char *to, size_t tolen);
214 * Converts the domain name from ACE (e.g. Punycode) to UCS4.
274 idn_decodename(idn_action_t actions, const char *from, char *to, size_t tolen);
281 * two is whether the encoding conversion from auxiliary encoding to
285 * If auxencoding is NULL, from is treated as UTF-8 encoded string.
291 idn_decodename2(idn_action_t actions, const char *from, cha
[all...]
H A Dunormalize.h11 * license is obtained from Japan Network Information Center ("JPNIC"),
29 * derived from this Software without specific prior written approval of
67 * They take NUL-terminated UCS4 encoded string 'from', perform
79 const unsigned long *from, unsigned long *to,
/macosx-10.9.5/sudo-72/src/zlib/
H A Dinffast.c78 unsigned dmax; /* maximum distance from zlib header */
95 unsigned char FAR *from; /* where to copy match from */ local
187 if (dist > op) { /* see if copy from window */
208 from = out - dist;
210 PUP(out) = PUP(from);
216 from = window - OFF;
218 from += wsize - op;
219 if (op < len) { /* some from window */
222 PUP(out) = PUP(from);
[all...]
/macosx-10.9.5/zlib-53/zlib/
H A Dinffast.c83 unsigned dmax; /* maximum distance from zlib header */
100 unsigned char FAR *from; /* where to copy match from */ local
192 if (dist > op) { /* see if copy from window */
213 from = out - dist;
215 PUP(out) = PUP(from);
221 from = window - OFF;
223 from += wsize - op;
224 if (op < len) { /* some from window */
227 PUP(out) = PUP(from);
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Dinsdel.c133 register unsigned char *to, *from;
142 from = GPT_ADDR;
170 || to - from >= 128))
174 if (!BCOPY_UPWARD_SAFE && i > to - from)
175 i = to - from;
177 from -= i, to -= i;
178 bcopy (from, to, i);
185 *--to = *--from;
209 register unsigned char *to, *from;
216 from
131 register unsigned char *to, *from; local
207 register unsigned char *to, *from; local
1840 int from, to; local
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/
H A DDBIHacks.pm1 package #hide from PAUSE
19 # This code will remove non-selecting/non-restricting joins from
20 # {from} specs, aiding the RDBMS query optimizer
25 my ($from, $select, $where, $attrs) = @_;
27 if (ref $from ne 'ARRAY' || ref $from->[0] ne 'HASH' || ref $from->[1] ne 'ARRAY') {
28 return $from; # only standard {from} specs are supported
38 my @newfrom = $from
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/quota/
H A DNavigatorStorageQuota.cpp15 * contributors may be used to endorse or promote products derived from
56 NavigatorStorageQuota* NavigatorStorageQuota::from(Navigator* navigator) function in class:WebCore::NavigatorStorageQuota
58 NavigatorStorageQuota* supplement = static_cast<NavigatorStorageQuota*>(Supplement<Navigator>::from(navigator, supplementName()));
68 return NavigatorStorageQuota::from(navigator)->webkitTemporaryStorage();
73 return NavigatorStorageQuota::from(navigator)->webkitPersistentStorage();
H A DWorkerNavigatorStorageQuota.cpp15 * contributors may be used to endorse or promote products derived from
54 WorkerNavigatorStorageQuota* WorkerNavigatorStorageQuota::from(WorkerNavigator* navigator) function in class:WebCore::WorkerNavigatorStorageQuota
56 WorkerNavigatorStorageQuota* supplement = static_cast<WorkerNavigatorStorageQuota*>(Supplement<WorkerNavigator>::from(navigator, supplementName()));
66 return WorkerNavigatorStorageQuota::from(navigator)->webkitTemporaryStorage();
71 return WorkerNavigatorStorageQuota::from(navigator)->webkitPersistentStorage();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DCustomFilterOperation.cpp56 PassRefPtr<FilterOperation> CustomFilterOperation::blend(const FilterOperation* from, double progress, const LayoutSize& size, bool blendToPassthrough) argument
61 if (blendToPassthrough || !from || !from->isSameType(*this))
64 const CustomFilterOperation* fromOp = static_cast<const CustomFilterOperation*>(from);
H A DFilterOperation.cpp73 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
75 if (from && !from->isSameType(*this))
81 const BasicColorMatrixFilterOperation* fromOp = toBasicColorMatrixFilterOperation(from);
109 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
111 if (from && !from->isSameType(*this))
117 const BasicComponentTransferFilterOperation* fromOp = toBasicComponentTransferFilterOperation(from);
155 PassRefPtr<FilterOperation> BlurFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
157 if (from
178 blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DScaleTransformOperation.cpp29 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
31 if (from && !from->isSameType(*this))
39 const ScaleTransformOperation* fromOp = static_cast<const ScaleTransformOperation*>(from);
H A DTranslateTransformOperation.cpp28 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
30 if (from && !from->isSameType(*this))
38 const TranslateTransformOperation* fromOp = static_cast<const TranslateTransformOperation*>(from);
H A DTransformOperations.cpp68 TransformOperations TransformOperations::blendByMatchingOperations(const TransformOperations& from, const double& progress) const argument
72 unsigned fromSize = from.operations().size();
76 RefPtr<TransformOperation> fromOperation = (i < fromSize) ? from.operations()[i].get() : 0;
93 TransformOperations TransformOperations::blendByUsingMatrixInterpolation(const TransformOperations& from, double progress, const LayoutSize& size) const argument
100 from.apply(size, fromTransform);
111 TransformOperations TransformOperations::blend(const TransformOperations& from, double progress, const LayoutSize& size) const argument
113 if (from == *this)
116 if (from.size() && from.operationsMatch(*this))
117 return blendByMatchingOperations(from, progres
[all...]
/macosx-10.9.5/text_cmds-87/tr/
H A Dcmap.h61 cmap_lookup(struct cmap *cm, wint_t from) argument
64 if (from < CM_CACHE_SIZE && cm->cm_havecache)
65 return (cm->cm_cache[from]);
66 return (cmap_lookup_hard(cm, from));
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dmach_swapon.h38 #warning obsolete header file! Please delete the include from your sources.
/macosx-10.9.5/libxml2-26/libxml2/include/libxml/
H A Dxmlautomata.h57 xmlAutomataStatePtr from,
63 xmlAutomataStatePtr from,
70 xmlAutomataStatePtr from,
78 xmlAutomataStatePtr from,
86 xmlAutomataStatePtr from,
95 xmlAutomataStatePtr from,
103 xmlAutomataStatePtr from,
112 xmlAutomataStatePtr from,
117 xmlAutomataStatePtr from,
121 xmlAutomataStatePtr from,
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/include/libxml/
H A Dxmlautomata.h57 xmlAutomataStatePtr from,
63 xmlAutomataStatePtr from,
70 xmlAutomataStatePtr from,
78 xmlAutomataStatePtr from,
86 xmlAutomataStatePtr from,
95 xmlAutomataStatePtr from,
103 xmlAutomataStatePtr from,
112 xmlAutomataStatePtr from,
117 xmlAutomataStatePtr from,
121 xmlAutomataStatePtr from,
[all...]

Completed in 138 milliseconds

1234567891011>>