| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
| subst_amp.t | 75 sub x1 {'x'} subroutine 87 $a =~ s/\Ga(?{push @res, $_, $`})/x1/ge; 101 $a =~ s/\Ga(?{push @res, $_, $`})/x1/e;
|
| /onnv/onnv-gate/usr/src/lib/libplot/vt0/common/ |
| line.c | 40 line(short x0, short y0, short x1, short y1) 42 struct {char x, c; short x0, y0, x1, y1; } p; member in struct:__anon3916 46 p.x1 = xnow = xsc(x1);
|
| /onnv/onnv-gate/usr/src/tools/cscope-fast/ |
| mouse.h | 36 int x1; member in struct:__anon4584
|
| /onnv/onnv-gate/usr/src/cmd/sgs/rtld.4.x/ |
| rtsubrs.c | 56 va_list x1; local 58 va_start(x1); 59 prf(stdout, fmt, x1); 60 va_end(x1); 72 va_list x1; local 74 va_start(x1); 75 prf(fd, fmt, x1); 76 va_end(x1); 87 va_list x1; local 90 va_start(x1); 108 va_list x1; local [all...] |
| /onnv/onnv-gate/usr/src/common/crypto/ecc/ |
| ec2_mont.c | 84 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in 89 gf2m_Madd(const mp_int *x, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2, 101 MP_CHECKOK(group->meth->field_mul(x1, z2, x1, group->meth)); 103 MP_CHECKOK(group->meth->field_mul(x1, z1, &t2, group->meth)); 104 MP_CHECKOK(group->meth->field_add(z1, x1, z1, group->meth)); 106 MP_CHECKOK(group->meth->field_mul(z1, &t1, x1, group->meth)); 107 MP_CHECKOK(group->meth->field_add(x1, &t2, x1, group->meth)) 199 mp_int x1, x2, z1, z2; local [all...] |
| ec.c | 635 mp_int x1; local 651 MP_DIGITS(&x1) = 0; 678 CHECK_MPI_OK( mp_init(&x1, kmflag) ); 716 ** Extract the x co-ordinate of kG into x1 718 CHECK_MPI_OK( mp_read_unsigned_octets(&x1, kGpoint.data + 1, 724 ** r = x1 mod n NOTE: n is the order of the curve 726 CHECK_MPI_OK( mp_mod(&x1, &n, &r) ); 757 mp_tohex(&x1, mpstr); 758 printf("x1: %s\n", mpstr); 801 mp_clear(&x1); 874 mp_int x1; local [all...] |
| /onnv/onnv-gate/usr/src/common/openssl/crypto/idea/ |
| i_cbc.c | 139 register unsigned long x1,x2,x3,x4,t0,t1,ul; local 142 x1=(x2>>16); 157 x1&=0xffff; 158 idea_mul(x1,x1,*p,ul); p++; 166 d[0]=(t0&0xffff)|((x1&0xffff)<<16);
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/rc2/ |
| rc2_cbc.c | 140 register RC2_INT x0,x1,x2,x3,t; local 145 x1=(RC2_INT)(l>>16L); 156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff; 158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff; 159 x1=(t<<2)|(t>>14); 160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; 162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff; 171 x1+=p1[x0&0x3f]; 172 x2+=p1[x1&0x3f] 185 register RC2_INT x0,x1,x2,x3,t; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/tplot/ |
| driver.c | 82 int xi,yi,x0,y0,x1,y1,r,dx,n,i; local 96 x1 = getsi(fin); 98 line(x0,y0,x1,y1); 120 x1 = getsi(fin); 122 space(x0,y0,x1,y1); 129 x1 = getsi(fin); 131 arc(xi,yi,x0,y0,x1,y1);
|
| vplot.c | 190 int x1, y1; local 194 switch (x1 = getc(stdin)) { 214 x1 = mapx(getw(stdin)); 218 line(x1, y1, lastx, lasty); 228 while ((x1 = getc(stdin)) != '\n') 229 plotch(x1); 251 x1 = mapx(getw(stdin)); 253 line(lastx, lasty, x1, y1); 254 lastx = x1; 279 while ((x1 = getc(stdin)) != '\n' [all...] |
| /onnv/onnv-gate/usr/src/common/openssl/crypto/ec/ |
| ec2_mult.c | 107 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery 113 static int gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, 126 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) goto err; 128 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err; 129 if (!BN_GF2m_add(z1, z1, x1)) goto err; 131 if (!group->meth->field_mul(group, x1, z1, t1, ctx)) goto err; 132 if (!BN_GF2m_add(x1, x1, t2)) goto err 218 BIGNUM *x1, *x2, *z1, *z2; local [all...] |
| ec2_smpl.c | 679 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local 704 x1 = BN_CTX_get(ctx); 723 if (!BN_copy(x1, &b->X)) goto err; 728 if (!EC_POINT_get_affine_coordinates_GF2m(group, b, x1, y1, ctx)) goto err; 732 if (BN_GF2m_cmp(x0, x1)) 734 if (!BN_GF2m_add(t, x0, x1)) goto err; 744 if (BN_GF2m_cmp(y0, y1) || BN_is_zero(x1)) 750 if (!group->meth->field_div(group, s, y1, x1, ctx)) goto err; 751 if (!BN_GF2m_add(s, s, x1)) goto err; 758 if (!BN_GF2m_add(y2, x1, x2)) goto err [all...] |
| /onnv/onnv-gate/usr/src/lib/libmp/common/ |
| mdiv.c | 125 int x1; local 135 x1 = c1 - v1 * d; 136 x1 = x1 * 0100000 + u3 - v2 * d; 138 } while (x1 < 0);
|
| /onnv/onnv-gate/usr/src/common/bignum/ |
| mont_mulf.c | 75 double tmp, tmp1, x, x1; local 81 x1 = dt[i + 1]; 83 dt[i + 1] = lower32(x1, Zero) + tmp1; 85 tmp1 = upper32(x1);
|
| /onnv/onnv-gate/usr/src/lib/libast/common/uwin/ |
| rand48.c | 73 unsigned short x1 = x[1]; local 78 r += a[2]*x1; 82 r += a[1]*x1;
|
| lgamma.c | 178 double z, p, x1; local 192 x1 = 1./x; 193 z = x1*x1; 197 p = p*x1; /* error < 2.3e-18 absolute */
|
| /onnv/onnv-gate/usr/src/cmd/filesync/ |
| anal.c | 550 char *s1, *s2, *x1, *x2; local 559 x1 = f1->f_fullname; 605 if (*s1 == 0 && x1 != 0) { 606 s1 = x1; 607 x1 = 0;
|
| /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postplot/ |
| postplot.c | 79 * x0 y0 x1 y1 l - 81 * Draws a line from (x0, y0) to (x1, y1). 506 int x0,y0,x1,y1; local 530 x1 = getint(); 532 fprintf(fp_out, "%d %d %d %d l\n", x1, y1, x0, y0); 533 hpos = x1; 561 x1 = getint(); 564 fprintf(fp_out, "%d %d space\n", x1-x0, y1-y0); 575 x1 = getint(); 579 dx1 = x1 - xc [all...] |
| /onnv/onnv-gate/usr/src/cmd/spline/ |
| spline.c | 189 REAL D2yi,D2yi1,D2yn1,x0,x1,yy,a; local 244 x1 = j*h/hi1; 245 yy = D2yi*(x0-x0*x0*x0)+D2yi1*(x1-x1*x1*x1); 246 yy = y.val[i]*x0+y.val[i+1]*x1 -hi1*hi1*yy/6;
|
| /onnv/onnv-gate/usr/src/lib/libnisdb/ |
| ldap_xdr.c | 687 XDR x1, x2; local 724 xdrmem_create(&x1, (char *)b1, l1, XDR_ENCODE); 727 if (xdr_nis_object(&x1, &obj1) && xdr_nis_object(&x2, &obj2)) {
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/bn/ |
| bn_gf2m.c | 446 BN_ULONG x1, x0, y1, y0, zz[4]; local 472 x1 = ((i+1) == a->top) ? 0 : a->d[i+1]; 473 bn_GF2m_mul_2x2(zz, x1, x0, y1, y0); 948 if (p[0] & 0x1) /* m is odd */
|
| /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/ |
| ParserState.cxx | 573 const ExternalEntity *x1 = e1->asExternalEntity(); local 575 const StringC *s1 = x1->externalId().systemIdString(); 585 s1 = x1->externalId().publicIdString();
|
| /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/ |
| graphics.c | 76 const int x1 = ROWBYTES; variable 228 if ((fontx + 1) >= x1) { 579 if (col >= x0 && col < x1) { 601 for (i = x0; i < x1; i++) { 608 for (i = x0; i < x1; i++)
|
| /onnv/onnv-gate/usr/src/lib/libcurses/screen/ |
| wrefresh.c | 803 int x1, x2, blnk, idch, cost, cost_ich1, match; local 833 for (x1 = 0; x1 < idch; ++x1) 843 for (x1 = 0, x2 = idch; x2 < length; ++x1, ++x2) 844 scp[x1] = scp[x2]; 845 for (; x1 < length; ++x1) 846 scp[x1] = ' ' [all...] |
| /onnv/onnv-gate/usr/src/uts/sun4/os/ |
| visinstr.c | 446 al3l >>= 0x1; local 459 al3r >>= 0x1; local 475 al3r >>= 0x1; local 501 mask &= (0x3 << (0x1 - al3r)) & 0x3; 516 mask &= 0x3 >> (0x1 - al3r); [all...] |