Searched refs:p1 (Results 276 - 300 of 702) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOUserClient.h65 typedef IOReturn (IOService::*IOMethod)(void * p1, void * p2, void * p3,
69 void * p1, void * p2, void * p3,
72 typedef IOReturn (IOService::*IOTrap)(void * p1, void * p2, void * p3,
/macosx-10.10/CrackLib-37765/cracklib27/cracklib/
H A Drules.c587 register char *p1; local
596 p1 = area;
598 while (i && *p1)
601 *(p2++) = *(p1++);
604 strlcpy(p2, p1, STRINGSIZE);
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dparse_reply-test.c172 unsigned char *p1, *p2;
177 p1 = (unsigned char *)mmap(0, 2 * pagesize, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
178 if (p1 == (unsigned char *)MAP_FAILED)
180 p2 = p1 + pagesize;
202 ret = munmap ((void *)p1, 2 * pagesize);
/macosx-10.10/ntp-92/ntpd/
H A Dkeyword-gen.c592 const struct key_tok *p1 = (const void *)a1; local
595 if (p1->token == p2->token)
598 if (p1->token < p2->token)
611 const struct key_tok *p1 = (const void *)a1; local
614 return strcmp(p1->key, p2->key);
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclUnixInit.c990 register CONST char *env, *p1, *p2;
995 p1 = Tcl_ExternalToUtfDString(NULL, env, -1, &envString);
998 for (; *p2 == *p1; p1++, p2++) {
1001 if ((*p1 == '=') && (*p2 == '\0')) {
985 register CONST char *env, *p1, *p2; local
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DGraphicsContext.cpp834 void GraphicsContext::adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth, StrokeStyle penStyle) argument
841 if (p1.x() == p2.x()) {
842 p1.setY(p1.y() + strokeWidth);
845 p1.setX(p1.x() + strokeWidth);
851 if (p1.x() == p2.x()) {
853 p1.setX(p1.x() + 0.5f);
857 p1
[all...]
H A DFloatRect.h163 void fitToPoints(const FloatPoint& p0, const FloatPoint& p1);
164 void fitToPoints(const FloatPoint& p0, const FloatPoint& p1, const FloatPoint& p2);
165 void fitToPoints(const FloatPoint& p0, const FloatPoint& p1, const FloatPoint& p2, const FloatPoint& p3);
/macosx-10.10/tcsh-65/tcsh/win32/
H A Dntfunc.c548 char *p1; local
551 p1 = hb_subst_array[i];
552 if (!p1)
554 while(*p1 != ' ')
555 p1++;
557 *p1 = 0;
559 *p1 = ' ';
561 return (p1+1);
636 char *p1; local
639 p1
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A Dder_get.c134 const unsigned char *p1; local
137 p1 = memchr(p, 0, len);
138 if (p1 != NULL) {
144 while ((size_t)(p1 - p) < len && *p1 == '\0')
145 p1++;
146 if ((size_t)(p1 - p) != len) {
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dlocdispnames.cpp537 UChar *p1=u_strstr(separator, sub1); local
538 if (p0==NULL || p1==NULL || p1<p0) {
543 sepLen = p1 - separator;
554 UChar *p1=u_strstr(pattern, sub1); local
555 if (p0==NULL || p1==NULL) {
560 sub1Pos=p1-pattern;
/macosx-10.10/OpenSSH-189/osslshim/heimdal-asn1/
H A Dasn1-der_get.c156 const unsigned char *p1; local
159 p1 = memchr(p, 0, len);
160 if (p1 != NULL) {
166 while ((size_t)(p1 - p) < len && *p1 == '\0')
167 p1++;
168 if ((size_t)(p1 - p) != len) {
/macosx-10.10/WebCore-7600.1.25/editing/
H A DTypingCommand.cpp316 VisiblePosition p1 = startOfWord(previous, LeftWordIfOnBoundary); local
318 if (p1 != p2) {
319 RefPtr<Range> range = makeRange(p1, p2);
323 frame.editor().markMisspellingsAfterTypingToWord(p1, endingSelection(), !strippedPreviousWord.isEmpty());
337 VisiblePosition p1 = startOfWord(previous, startWordSide);
339 if (p1 != p2)
340 frame.editor().markMisspellingsAfterTypingToWord(p1, endingSelection(), false);
/macosx-10.10/bind9-45.101/bind9/contrib/dlz/drivers/
H A Ddlz_bdbhpt_driver.c123 char *p1, *p2; local
127 for (p1 = str, p2 = str + strlen(str) - 1; p2 > p1; ++p1, --p2)
129 *p1 ^= *p2;
130 *p2 ^= *p1;
131 *p1 ^= *p2;
/macosx-10.10/emacs-93/emacs/lisp/calc/
H A Dcalc-poly.el519 ;; math-total-polynomial-base, but is used by math-polynomial-p1,
525 (math-polynomial-base expr 'math-polynomial-p1)
529 ;; in calc-alg.el, but is used by math-polynomial-p1 which is called
533 (defun math-polynomial-p1 (subexpr)
933 (let ((p1 (math-ratpoly-p (nth 1 expr) var))
935 (and p1 (setq p2 (math-ratpoly-p (nth 2 expr) var))
936 (max p1 p2))))
938 (let ((p1 (math-ratpoly-p (nth 1 expr) var))
940 (and p1 (setq p2 (math-ratpoly-p (nth 2 expr) var))
941 (+ p1 p
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djdarith.c402 int p1, blkn; local
412 p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
419 MCU_data[blkn][0][0] |= p1;
438 int p1, m1; local
456 p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
474 *thiscoef += p1;
482 *thiscoef = p1;
/macosx-10.10/emacs-93/emacs/src/
H A Dfontset.c819 unsigned char *regex, *p0, *p1;
834 p1 = regex = (unsigned char *) alloca (SBYTES (pattern) + 2 * nstars + 1);
836 p1 = regex = (unsigned char *) alloca (SBYTES (pattern) + 5 * nstars + 1);
838 *p1++ = '^';
844 *p1++ = '.';
846 *p1++ = '[', *p1++ = '^', *p1++ = '-', *p1++ = ']';
847 *p1
816 unsigned char *regex, *p0, *p1; local
[all...]
H A Ddoc.c133 register char *p, *p1; local
247 p1 = (char *) index (p + offset, '\037');
249 p1 = (char *) index (p, '\037');
250 if (p1)
252 *p1 = 0;
253 p = p1;
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkTrig.c1330 TkGetMiterPoints(p1, p2, p3, width, m1, m2)
1331 double p1[]; /* Points to x- and y-coordinates of point
1339 * point (see as you face from p1 to p2). */
1343 double theta1; /* Angle of segment p2-p1. */
1362 p1x = floor(p1[0]+0.5);
1363 p1y = floor(p1[1]+0.5);
1399 * looking from p1 to p2).
1431 * p1 *---------------* p2
1436 * them and m1-m2 perpendicular to p1-p2. However, if
1441 * p1 *
[all...]
/macosx-10.10/IOKitUser-1050.1.21/
H A DIOKitLib.h850 uintptr_t p1 );
855 uintptr_t p1,
861 uintptr_t p1,
868 uintptr_t p1,
876 uintptr_t p1,
885 uintptr_t p1,
/macosx-10.10/OpenSSL098-52/src/crypto/jpake/
H A Djpake.c65 JPAKE_STEP_PART_init(&s1->p1);
72 JPAKE_STEP_PART_release(&s1->p1);
280 generate_step_part(&send->p1, ctx->xa, ctx->p.g, ctx);
305 if(!is_legal(received->p1.gx, ctx))
319 if(!verify_zkp(&received->p1, ctx->p.g, ctx))
340 BN_copy(ctx->p.gxc, received->p1.gx);
/macosx-10.10/OpenSSL098-52/src/demos/engines/ibmca/
H A Dhw_ibmca.c111 BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
353 void (*p1)();
382 if(!(p1 = DSO_bind_func(
399 p_icaOpenAdapter = (unsigned int (ICA_CALL *)())p1;
829 BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
836 /* let rr = a1 ^ p1 mod m */
837 if (!ibmca_mod_exp(rr,a1,p1,m,ctx)) goto end;
828 ibmca_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont) argument
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-dsa-eay.c116 #define DSA_MOD_EXP(err_instr, dsa, rr, a1, p1, a2, p2, m, ctx, in_mont) \
120 _tmp_res53 = (dsa)->meth->dsa_mod_exp((dsa), (rr), (a1), (p1), \
123 _tmp_res53 = BN_mod_exp2_mont((rr), (a1), (p1), (a2), (p2), \
/macosx-10.10/OpenSSL098-52/src/crypto/dsa/
H A Ddsa_ossl.c105 #define DSA_MOD_EXP(err_instr,dsa,rr,a1,p1,a2,p2,m,ctx,in_mont) \
109 _tmp_res53 = (dsa)->meth->dsa_mod_exp((dsa), (rr), (a1), (p1), \
112 _tmp_res53 = BN_mod_exp2_mont((rr), (a1), (p1), (a2), (p2), \
/macosx-10.10/OpenSSL098-52/src/crypto/md2/
H A Dmd2_dgst.c212 register MD2_INT *p1,*p2; local
215 p1=c->state;
228 md[i]=(UCHAR)(p1[i]&0xff);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/dsa/
H A Ddsa_ossl.c92 static int dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1,
327 static int dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1, argument
331 return BN_mod_exp2_mont(rr, a1, p1, a2, p2, m, ctx, in_mont);

Completed in 325 milliseconds

<<11121314151617181920>>