HomeSort by relevance Sort by last modified time
    Searched refs:qx (Results 1 - 23 of 23) sorted by null

  /onnv/onnv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Kstat/
Makefile.PL 42 my $arch = qx{uname -p}; chomp($arch);
  /onnv/onnv-gate/usr/src/common/crypto/ecc/
ec2_aff.c 79 ec_GF2m_pt_add_aff(const mp_int *px, const mp_int *py, const mp_int *qx,
94 MP_CHECKOK(mp_copy(qx, rx));
100 if (ec_GF2m_pt_is_inf_aff(qx, qy) == 0) {
106 /* if px != qx, then lambda = (py+qy) / (px+qx), tempx = a + lambda^2
107 * + lambda + px + qx */
108 if (mp_cmp(px, qx) != 0) {
110 MP_CHECKOK(group->meth->field_add(px, qx, &tempx, group->meth));
121 field_add(&tempx, qx, &tempx, group->meth));
123 /* if py != qy or qx = 0, then R = inf *
196 mp_int k, k3, qx, qy, sx, sy; local
    [all...]
ecl.h 82 const mp_int *py, mp_int *qx, mp_int *qy);
90 mp_int *qx, mp_int *qy);
ecp_aff.c 85 ec_GFp_pt_add_aff(const mp_int *px, const mp_int *py, const mp_int *qx,
102 MP_CHECKOK(mp_copy(qx, rx));
108 if (ec_GFp_pt_is_inf_aff(qx, qy) == 0) {
114 /* if px != qx, then lambda = (py-qy) / (px-qx) */
115 if (mp_cmp(px, qx) != 0) {
117 MP_CHECKOK(group->meth->field_sub(px, qx, &tempx, group->meth));
128 /* lambda = (3qx^2+a) / (2qy) */
129 MP_CHECKOK(group->meth->field_sqr(qx, &tempx, group->meth));
146 /* rx = lambda^2 - px - qx */
209 mp_int k, k3, qx, qy, sx, sy; local
    [all...]
ec2.h 58 /* Computes R = P + Q where R is (rx, ry), P is (px, py) and Q is (qx,
61 const mp_int *qx, const mp_int *qy, mp_int *rx,
66 const mp_int *qx, const mp_int *qy, mp_int *rx,
115 * (qx, qy, qz). Uses projective coordinates. */
117 const mp_int *pz, const mp_int *qx,
ecp.h 58 /* Computes R = P + Q where R is (rx, ry), P is (px, py) and Q is (qx,
61 const mp_int *qx, const mp_int *qy, mp_int *rx,
66 const mp_int *qx, const mp_int *qy, mp_int *rx,
106 * (qx, qy, qz). Uses Jacobian coordinates. */
108 const mp_int *pz, const mp_int *qx,
ecp_jm.c 129 * (qx, qy, 1). Elliptic curve points P, Q, and R can all be identical.
135 const mp_int *paz4, const mp_int *qx,
156 MP_CHECKOK(ec_GFp_pt_aff2jac(qx, qy, rx, ry, rz, group));
163 if (ec_GFp_pt_is_inf_aff(qx, qy) == MP_YES) {
171 /* A = qx * pz^2, B = qy * pz^3 */
174 MP_CHECKOK(group->meth->field_mul(A, qx, A, group->meth));
ecl-priv.h 183 const mp_int *qx, const mp_int *qy, mp_int *rx,
186 const mp_int *qx, const mp_int *qy, mp_int *rx,
ecp_jac.c 146 * (qx, qy, 1). Elliptic curve points P, Q, and R can all be identical.
154 const mp_int *qx, const mp_int *qy, mp_int *rx,
176 MP_CHECKOK(ec_GFp_pt_aff2jac(qx, qy, rx, ry, rz, group));
179 if (ec_GFp_pt_is_inf_aff(qx, qy) == MP_YES) {
186 /* A = qx * pz^2, B = qy * pz^3 */
189 MP_CHECKOK(group->meth->field_mul(&A, qx, &A, group->meth));
  /onnv/onnv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/PerlGcc/
Makefile.PL 49 my $rel = qx{uname -r}; chomp($rel);
50 my $arch = qx{uname -p}; chomp($arch);
  /onnv/onnv-gate/usr/src/lib/libmp/common/
mdiv.c 60 m_dsb(int qx, int n, short *a, short *b)
68 (void) printf("m_dsb %d %d %d %d\n", qx, n, *a, *b);
76 (void) printf("1 borrow=%x %d %d %d\n", borrow, (*aptr * qx),
79 borrow -= (*aptr++) * qx - *bptr;
81 (void) printf("2 borrow=%x %d %d %d\n", borrow, (*aptr * qx),
86 (void) printf("3 borrow=%x %d %d %d\n", borrow, (*aptr * qx),
92 (void) printf("4 borrow=%x %d %d %d\n", borrow, (*aptr * qx),
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/io/
fflush.t 9 # Script to test auto flush on fork/exec/system/qx. The idea is to
105 # Test flush on system/qx/pipe open
111 "qx" => sub {
113 qx{$c};
122 for (qw(system qx popen)) {
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/t/
terse.t 92 my $items = qx{$^X $path "-MO=Terse" -le "print \\42" $redir};
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/utils/port/
InstallPerl 99 $PerlArch=qx{arch};
120 $SolArch = qx{uname -p}; # Solaris architecture.
124 my $compiler1 = qx{exec ksh -e whence cc};
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
Complete.pm 104 $tty_saved_state = qx($stty -g 2>/dev/null);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
Functions.t 127 pipe, qx/STRING/, readpipe, setpgrp, setpriority, sleep,
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
open.pm 170 open(), readpipe() (aka qx//) and similar operators found within the
overload.pm 744 to overload C<q>-quoted strings, constant pieces of C<qq>- and C<qx>-quoted
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
stat.t 222 my $DEV = qx($CMD);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/
encoding.pm 154 Internally converts all literals (C<q//,qq//,qr//,qw///, qx//>) from
390 C<q//,qq//,qr//,qw///, qx//> and so forth. In perl 5.8.0, this
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Text/
Balanced.pm 641 'qx' => '',
722 unless ($$textref =~ m{\G(\b(?:m|s|qq|qx|qw|q|qr|tr|y)\b(?=\s*\S)|<<)}gc)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
Functions.pm 286 qx/STRING/ Process backquote quote a string
  /onnv/onnv-gate/usr/src/cmd/terminfo/
termcap     [all...]

Completed in 1021 milliseconds