Searched refs:cp1 (Results 1 - 25 of 41) sorted by last modified time

12

/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A DcurveParams.c936 int curveParamsEquivalent(curveParams *cp1, curveParams *cp2) argument
938 if(cp1 == cp2) {
944 if(cp1->primeType != cp2->primeType) {
947 if(cp1->curveType != cp2->curveType) {
950 if(cp1->k != cp2->k) {
953 if(cp1->q != cp2->q) {
956 if(cp1->m != cp2->m) {
959 if(gcompg(cp1->basePrime, cp2->basePrime)) {
962 if(gcompg(cp1->a, cp2->a)) {
965 if(gcompg(cp1
[all...]
H A DcurveParams.h191 int curveParamsEquivalent(curveParams *cp1, curveParams *cp2);
H A DfeeDES.c230 unsigned char *cp1 = fdinst->lastBlock; local
234 *cp++ ^= *cp1++;
317 char *cp1 = (char*)fdinst->lastBlock; local
321 *cp++ ^= *cp1++;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A DwrapKeyCms.cpp425 uint8 *cp1 = PRIVATE_KEY_BYTES.Data; local
426 uint32 ddLen = deserializeUint32(cp1);
427 cp1 += 4;
433 memcpy(DescriptiveData.Data, cp1, ddLen);
434 cp1 += ddLen;
442 memcpy(outBlob.Data, cp1, outBlobLen);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A DcurveParams.c936 int curveParamsEquivalent(curveParams *cp1, curveParams *cp2) argument
938 if(cp1 == cp2) {
944 if(cp1->primeType != cp2->primeType) {
947 if(cp1->curveType != cp2->curveType) {
950 if(cp1->k != cp2->k) {
953 if(cp1->q != cp2->q) {
956 if(cp1->m != cp2->m) {
959 if(gcompg(cp1->basePrime, cp2->basePrime)) {
962 if(gcompg(cp1->a, cp2->a)) {
965 if(gcompg(cp1
[all...]
H A DcurveParams.h191 int curveParamsEquivalent(curveParams *cp1, curveParams *cp2);
H A DfeeDES.c230 unsigned char *cp1 = fdinst->lastBlock; local
234 *cp++ ^= *cp1++;
317 char *cp1 = (char*)fdinst->lastBlock; local
321 *cp++ ^= *cp1++;
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A DSecCertificatePath.c98 SecCertificatePathRef cp1 = (SecCertificatePathRef) cf1; local
100 if (cp1->count != cp2->count)
103 for (ix = 0; ix < cp1->count; ++ix) {
104 if (!CFEqual(cp1->certificates[ix], cp2->certificates[ix]))
/macosx-10.10/xnu-2782.1.97/bsd/nfs/
H A Dnfs_socket.c5984 char *cp1, *cp2, *mdata; local
6007 cp1 = (caddr_t)&recmark;
6009 while (cp1 < ((caddr_t)&recmark) + NFSX_UNSIGNED) {
6015 *cp1++ = *cp2++;
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_cnode.c2077 hfs_lockpair(struct cnode *cp1, struct cnode *cp2, enum hfs_locktype locktype) argument
2085 if (cp1 == cp2) {
2086 return hfs_lock(cp1, locktype, HFS_LOCK_DEFAULT);
2092 if (cp1 < cp2) {
2093 first = cp1;
2097 last = cp1;
2114 hfs_isordered(struct cnode *cp1, struct cnode *cp2) argument
2116 if (cp1 == cp2)
2118 if (cp1 == NULL || cp2 == (struct cnode *)0xffffffff)
2120 if (cp2 == NULL || cp1
2136 hfs_lockfour(struct cnode *cp1, struct cnode *cp2, struct cnode *cp3, struct cnode *cp4, enum hfs_locktype locktype, struct cnode **error_cnode) argument
2283 hfs_unlockpair(struct cnode *cp1, struct cnode *cp2) argument
2294 hfs_unlockfour(struct cnode *cp1, struct cnode *cp2, struct cnode *cp3, struct cnode *cp4) argument
[all...]
H A Dhfs_chash.c456 hfs_chash_rehash(struct hfsmount *hfsmp, struct cnode *cp1, struct cnode *cp2) argument
460 LIST_REMOVE(cp1, c_hash);
462 LIST_INSERT_HEAD(CNODEHASH(hfsmp, cp1->c_fileid), cp1, c_hash);
H A Dhfs_cnode.h398 extern void hfs_chash_rehash(struct hfsmount *hfsmp, struct cnode *cp1, struct cnode *cp2);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dx509asn1.c871 char * cp1; local
990 &cp1, &cl1);
1004 free(cp1);
1010 i += copySubstring(cp2 + i, cp1 + j);
1013 free(cp1);
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Droute.c2665 u_char *cp1 = (u_char *)src; local
2669 u_char *cplim2 = cp2 + *cp1;
2671 *cp2++ = *cp1++; *cp2++ = *cp1++; /* copies sa_len & sa_family */
2676 *cp2++ = *cp1++ & *cp3++;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DPathCG.cpp251 void Path::addBezierCurveTo(const FloatPoint& cp1, const FloatPoint& cp2, const FloatPoint& p) argument
253 CGPathAddCurveToPoint(ensurePlatformPath(), 0, cp1.x(), cp1.y(), cp2.x(), cp2.y(), p.x(), p.y());
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DPathWinCE.cpp86 void Path::addBezierCurveTo(const FloatPoint& cp1, const FloatPoint& cp2, const FloatPoint& p) argument
88 m_path->addBezierCurveTo(cp1, cp2, p);
/macosx-10.10/lsof-53/lsof/
H A Dmisc.c1601 char *cp, *cp1; local
1628 cp1 = s;
1630 while (cp1 < s) {
1631 if (*cp1 != 'f' && *cp1 != 'F')
1633 cp1++;
H A Dprint.c2116 char *cp1; local
2122 cp1 = strrchr(Lf->fsdir, '/');
2123 if (cp1 == (char *)NULL || *(cp1 + 1) != '\0')
H A Dusage.c338 char buf[MAXPATHLEN+1], *cp, *cp1, *cp2; local
922 if (!(cp1 = isnullstr(LSOF_LOGNAME)))
923 cp1 = isnullstr(LSOF_USER);
924 if (cp || cp1) {
925 if (cp && cp1)
933 cp1 ? cp1 : "",
934 (cp && cp1) ? "@" : "",
H A Darg.c802 char c, *cp1, *cp2, *dash; local
827 for (cp1 = fc, err = 0; *cp1;) {
828 if (*cp1 == '^') {
830 cp1++;
833 for (cp2 = cp1, dash = (char *)NULL; *cp2 && *cp2 != ','; cp2++) {
839 if (cp2 > cp1) {
841 if (ckfd_range(cp1, dash, cp2, &lo, &hi))
848 if (enter_fd_lst(cp1, 0, 0, excl))
854 cp1
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/tzcode/
H A Dzic.c854 rcomp(cp1, cp2)
855 const void * cp1;
858 return strcmp(((const struct rule *) cp1)->r_name,
/macosx-10.10/network_cmds-457/route.tproj/
H A Droute.c1237 register char *cp1 = olen + (char *)&so_mask, *cp2; local
1239 for (so_mask.sa.sa_len = 0; cp1 > (char *)&so_mask; )
1240 if (*--cp1 != 0) {
1241 so_mask.sa.sa_len = 1 + cp1 - (char *)&so_mask;
1255 cp1 = so_mask.sa.sa_len + 1 + (char *)&so_dst;
1257 while (cp2 > cp1)
1260 while (cp1 > so_dst.sa.sa_data)
1261 *--cp1 &= *--cp2;
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DCanvasPathMethods.cpp102 FloatPoint cp1 = FloatPoint(cp1x, cp1y); local
104 if (p1 != m_path.currentPoint() || p1 != cp1 || p1 != cp2)
105 m_path.addBezierCurveTo(cp1, cp2, p1);
/macosx-10.10/Heimdal-398.1.2/appl/ftp/ftp/
H A Dcmds.c1719 char *cp1, *cp2 = new; local
1724 for (cp1 = name; *cp1; cp1++) {
1727 if (*cp1 == *(ntin + i)) {
1736 *cp2++ = *cp1;
1784 char *cp1 = name, *cp2 = mapin; local
1791 while (match && *cp1 && *cp2) {
1794 if (*++cp2 != *cp1) {
1800 if (*cp1 !
[all...]
H A Ddomacro.c41 char *cp1, *cp2, line2[200]; local
61 cp1 = macros[i].mac_start;
62 while (cp1 != macros[i].mac_end) {
63 while (isspace((unsigned char)*cp1)) {
64 cp1++;
67 while (*cp1 != '\0') {
69 switch(*cp1) {
73 *cp2++ = *++cp1;
76 if (isdigit((unsigned char)*(cp1+1))) {
78 while (isdigit((unsigned char)*++cp1)) {
[all...]

Completed in 261 milliseconds

12