Home
last modified time | relevance | path

Searched refs:x1 (Results 1 – 25 of 141) sorted by relevance

123456

/onnv-gate/usr/src/common/openssl/crypto/rc2/
H A Drc2_cbc.c140 register RC2_INT x0,x1,x2,x3,t; in RC2_encrypt() local
145 x1=(RC2_INT)(l>>16L); in RC2_encrypt()
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff; in RC2_encrypt()
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff; in RC2_encrypt()
159 x1=(t<<2)|(t>>14); in RC2_encrypt()
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; in RC2_encrypt()
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff; in RC2_encrypt()
171 x1+=p1[x0&0x3f]; in RC2_encrypt()
172 x2+=p1[x1&0x3f]; in RC2_encrypt()
177 d[0]=(unsigned long)(x0&0xffff)|((unsigned long)(x1&0xffff)<<16L); in RC2_encrypt()
[all …]
H A Drc2_locl.h148 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff; \
150 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff; \
151 x1=(t<<2)|(t>>14); \
152 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; \
154 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff; \
/onnv-gate/usr/src/cmd/sgs/rtld.4.x/
H A Drtsubrs.c56 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);
[all …]
/onnv-gate/usr/src/uts/sparc/nsmb/
H A Dioc_check.ref3 #define ID_DOMAIN_INCR 0x1
5 #define ID_USER_INCR 0x1
10 #define SSN_SRVNAME_INCR 0x1
13 #define SH_NAME_INCR 0x1
15 #define SH_PASS_INCR 0x1
17 #define SH_TYPE_REQ_INCR 0x1
19 #define SH_TYPE_RET_INCR 0x1
44 #define IS_SSN_KEY_INCR 0x1
53 #define IOC_RQ_ERRCLASS 0x1
65 #define IOC_NAME_INCR 0x1
[all …]
/onnv-gate/usr/src/uts/intel/nsmb/
H A Dioc_check.ref3 #define ID_DOMAIN_INCR 0x1
5 #define ID_USER_INCR 0x1
10 #define SSN_SRVNAME_INCR 0x1
13 #define SH_NAME_INCR 0x1
15 #define SH_PASS_INCR 0x1
17 #define SH_TYPE_REQ_INCR 0x1
19 #define SH_TYPE_RET_INCR 0x1
44 #define IS_SSN_KEY_INCR 0x1
53 #define IOC_RQ_ERRCLASS 0x1
65 #define IOC_NAME_INCR 0x1
[all …]
/onnv-gate/usr/src/common/crypto/ecc/
H A Dec2_mont.c89 gf2m_Madd(const mp_int *x, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2, in gf2m_Madd() argument
101 MP_CHECKOK(group->meth->field_mul(x1, z2, x1, group->meth)); in gf2m_Madd()
103 MP_CHECKOK(group->meth->field_mul(x1, z1, &t2, group->meth)); in gf2m_Madd()
104 MP_CHECKOK(group->meth->field_add(z1, x1, z1, group->meth)); in gf2m_Madd()
106 MP_CHECKOK(group->meth->field_mul(z1, &t1, x1, group->meth)); in gf2m_Madd()
107 MP_CHECKOK(group->meth->field_add(x1, &t2, x1, group->meth)); in gf2m_Madd()
121 gf2m_Mxy(const mp_int *x, const mp_int *y, mp_int *x1, mp_int *z1, in gf2m_Mxy() argument
157 MP_CHECKOK(group->meth->field_add(z1, x1, z1, group->meth)); in gf2m_Mxy()
159 MP_CHECKOK(group->meth->field_mul(z2, x1, x1, group->meth)); in gf2m_Mxy()
171 MP_CHECKOK(group->meth->field_mul(x1, &t3, x2, group->meth)); in gf2m_Mxy()
[all …]
/onnv-gate/usr/src/common/openssl/crypto/ec/
H A Dec2_mult.c113 static int gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, in gf2m_Madd() argument
126 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) goto err; in gf2m_Madd()
128 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err; in gf2m_Madd()
129 if (!BN_GF2m_add(z1, z1, x1)) goto err; in gf2m_Madd()
131 if (!group->meth->field_mul(group, x1, z1, t1, ctx)) goto err; in gf2m_Madd()
132 if (!BN_GF2m_add(x1, x1, t2)) goto err; in gf2m_Madd()
150 static int gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, in gf2m_Mxy() argument
182 if (!BN_GF2m_add(z1, z1, x1)) goto err; in gf2m_Mxy()
184 if (!group->meth->field_mul(group, x1, z2, x1, ctx)) goto err; in gf2m_Mxy()
196 if (!group->meth->field_mul(group, x2, x1, t3, ctx)) goto err; in gf2m_Mxy()
[all …]
/onnv-gate/usr/src/cmd/tplot/
H A Dvplot.c190 int x1, y1; in getpict() local
194 switch (x1 = getc(stdin)) { in getpict()
214 x1 = mapx(getw(stdin)); in getpict()
218 line(x1, y1, lastx, lasty); in getpict()
228 while ((x1 = getc(stdin)) != '\n') in getpict()
229 plotch(x1); in getpict()
251 x1 = mapx(getw(stdin)); in getpict()
253 line(lastx, lasty, x1, y1); in getpict()
254 lastx = x1; in getpict()
279 while ((x1 = getc(stdin)) != '\n') in getpict()
[all …]
H A Ddriver.c82 int xi,yi,x0,y0,x1,y1,r,dx,n,i; in fplt() local
96 x1 = getsi(fin); in fplt()
98 line(x0,y0,x1,y1); in fplt()
120 x1 = getsi(fin); in fplt()
122 space(x0,y0,x1,y1); in fplt()
129 x1 = getsi(fin); in fplt()
131 arc(xi,yi,x0,y0,x1,y1); in fplt()
/onnv-gate/usr/src/lib/libc/i386/gen/
H A D_div64.s123 / uint32_t x1, x0;
135 / x1 = HI(x);
139 / if (x1 > y1 || x0 >= y0) {
142 / A_SUB2(y0, y1, x0, x1);
148 / *pmod = HILO(x1, x0);
169 / x1 = HI(dt);
173 / A_DIV32(x1, x2, y1, q0, x1);
181 / if (t1 > x1 || (t1 == x1 && t0 > x0)) {
187 / A_SUB2(t0, t1, x0, x1);
188 / *pmod = (HILO(x1, x0) >> normshift);
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dcanonical.t110 $x1 = freeze(\%a1);
114 ok 1, (length($x1) > $hashsize); # sanity check
115 ok 2, length($x1) == length($x2); # idem
116 ok 3, $x1 eq $x2;
117 ok 4, $x1 eq $x3;
126 $x1 = freeze(\%a1);
135 ok 5, ($x1 ne $x2) || ($x1 ne $x3);
/onnv-gate/usr/src/lib/libplot/plot/common/
H A Dbox.c37 box(short x0, short y0, short x1, short y1) in box() argument
41 cont(x1, y1); in box()
42 cont(x1, y0); in box()
44 move(x1, y1); in box()
/onnv-gate/usr/src/lib/libplot/t4014/common/
H A Dbox.c37 box(short x0, short y0, short x1, short y1) in box() argument
41 cont(x1, y1); in box()
42 cont(x1, y0); in box()
44 move(x1, y1); in box()
H A Darc.c68 arc(short x, short y, short x0, short y0, short x1, short y1) in arc() argument
88 if ((x0 == x1) && (y0 == y1)) in arc()
92 qf = quad_l(x, y, x1, y1); in arc()
93 if (abs(x - x1) < abs(y - y1)) { in arc()
106 m1 = (y1 - y) / (x1 - x); in arc()
142 if (xs >= x1) in arc()
147 if (xs <= x1) in arc()
/onnv-gate/usr/src/lib/libplot/vt0/common/
H A Dbox.c37 box(short x0, short y0, short x1, short y1) in box() argument
41 cont(x1, y1); in box()
42 cont(x1, y0); in box()
44 move(x1, y1); in box()
H A Dline.c40 line(short x0, short y0, short x1, short y1) in line() argument
42 struct {char x, c; short x0, y0, x1, y1; } p; in line() member
46 p.x1 = xnow = xsc(x1); in line()
/onnv-gate/usr/src/lib/libplot/t300s/common/
H A Dbox.c37 box(short x0, short y0, short x1, short y1) in box() argument
41 cont(x1, y1); in box()
42 cont(x1, y0); in box()
44 move(x1, y1); in box()
H A Darc.c65 arc(short x, short y, short x0, short y0, short x1, short y1) in arc() argument
85 if ((x0 == x1) && (y0 == y1)) in arc()
89 qf = quad_l(x, y, x1, y1); in arc()
90 if (abs(x - x1) < abs(y - y1)) { in arc()
103 m1 = (y1 - y) / (x1 - x); in arc()
139 if (xs >= x1) in arc()
144 if (xs <= x1) in arc()
/onnv-gate/usr/src/lib/libplot/t300/common/
H A Dbox.c37 box(short x0, short y0, short x1, short y1) in box() argument
41 cont(x1, y1); in box()
42 cont(x1, y0); in box()
44 move(x1, y1); in box()
H A Darc.c49 arc(short x, short y, short x0, short y0, short x1, short y1) in arc() argument
69 if ((x0 == x1) && (y0 == y1)) in arc()
73 qf = quad_l(x, y, x1, y1); in arc()
74 if ((abs(x - x1)) < (abs(y - y1))) { in arc()
87 m1 = (y1 - y) / (x1 - x); in arc()
123 if (xs >= x1) in arc()
128 if (xs <= x1) in arc()
/onnv-gate/usr/src/lib/libplot/t450/common/
H A Dbox.c37 box(short x0, short y0, short x1, short y1) in box() argument
41 cont(x1, y1); in box()
42 cont(x1, y0); in box()
44 move(x1, y1); in box()
H A Darc.c68 arc(short x, short y, short x0, short y0, short x1, short y1) in arc() argument
90 if ((x0 == x1) && (y0 == y1)) in arc()
94 qf = quad_l(x, y, x1, y1); in arc()
95 if (abs(x - x1) < abs(y - y1)) { in arc()
108 m1 = (y1 - y) / (x1 - x); in arc()
144 if (xs >= x1) in arc()
149 if (xs <= x1) in arc()
/onnv-gate/usr/src/uts/common/io/usb/clients/hidparser/
H A DREADME107 hid1: Index = 1 value =0x1
111 hid1: Index = 5 value =0x1
115 hid1: Index = 9 value =0x1
157 hid1: Index = 51 value =0x1
163 hid1: Index = 57 value =0x1
169 hid1: Index = 63 value =0x1
175 hid1: Index = 69 value =0x1
179 hid1: Index = 73 value =0x1
181 hid1: Index = 75 value =0x1
189 hid1: Index = 83 value =0x1
[all …]
/onnv-gate/usr/src/common/util/i386/
H A Dmuldiv.s169 / uint32_t x1, x0;
181 / x1 = HI(x);
185 / if (x1 > y1 || x0 >= y0) {
188 / A_SUB2(y0, y1, x0, x1);
194 / *pmod = HILO(x1, x0);
215 / x1 = HI(dt);
219 / A_DIV32(x1, x2, y1, q0, x1);
227 / if (t1 > x1 || (t1 == x1 && t0 > x0)) {
233 / A_SUB2(t0, t1, x0, x1);
234 / *pmod = (HILO(x1, x0) >> normshift);
[all …]
/onnv-gate/usr/src/common/openssl/crypto/idea/
H A Di_cbc.c139 register unsigned long x1,x2,x3,x4,t0,t1,ul; in idea_encrypt() local
142 x1=(x2>>16); in idea_encrypt()
157 x1&=0xffff; in idea_encrypt()
158 idea_mul(x1,x1,*p,ul); p++; in idea_encrypt()
166 d[0]=(t0&0xffff)|((x1&0xffff)<<16); in idea_encrypt()

123456