Searched refs:rot (Results 1 - 25 of 86) sorted by relevance

1234

/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arm/
H A Dmve-vhcadd.s7 .irp rot, #90, #270
8 vhcadd.\data \op1, \op2, \op3, \rot
15 .macro vhcadd_q0 op2, rot
17 vhcadd.s32 q0, \op2, \op3, \rot
21 .macro vhcadd_q1 op2, rot
23 vhcadd.s32 q1, \op2, \op3, \rot
27 .macro vhcadd_q2 op2, rot
29 vhcadd.s32 q2, \op2, \op3, \rot
33 .macro vhcadd_q4 op2, rot
35 vhcadd.s32 q4, \op2, \op3, \rot
[all...]
/netbsd-current/games/caesar/
H A Dcaesar.c82 init_rottbl(unsigned int rot) argument
86 rot %= LETTERS; /* prevent integer overflow */
92 rottbl[upper[i]] = upper[(i + rot) % LETTERS];
95 rottbl[lower[i]] = lower[(i + rot) % LETTERS];
127 long rot; local
131 rot = strtol(arg, &endp, 10);
134 if (errno == 0 && (rot < 0 || rot > INT_MAX))
138 return (unsigned int)rot;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/aarch64/
H A Dadvsimd-armv8_3.s5 .irp rot, 0, 90, 180, 270
9 \op v\d, v\m, v\n, #\rot
17 .irp rot, 0, 90, 180, 270
21 \op v\d, v\m, v\n[\idx], #\rot
29 .irp rot, 90, 270
33 \op v\d, v\m, v\n, #\rot
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/bfin/
H A Dshift2.s243 r4 = rot r1 by 31 ; /* rotate left */
244 r4 = rot r1 by -32 ; /* rotate right */
245 r4 = rot r1 by 5 ; /* rotate right */
247 a0 = rot a0 by 22 ; /* rotate Accumulator left */
248 a0 = rot a0 by -32 ; /* rotate Accumulator left */
249 a0 = rot a0 by 31 ; /* rotate Accumulator left */
251 a1 = rot a1 by -32 ; /* rotate Accumulator right */
252 a1 = rot a1 by 31 ; /* rotate Accumulator right */
253 a1 = rot a1 by 22 ; /* rotate Accumulator right */
255 r4 = rot r
[all...]
H A Dshift.s76 a0 = rot A0 by 0;
81 r0 = rot r1 by r2.L;
84 A1 = rot a1 bY r6.l;
H A Dparallel2.s70 a0 = rot A0 by 0 || R5 = W [P3] (z);
75 r0 = rot r1 by r2.L || R5 = W [P4++] (z);
78 A1 = rot a1 bY r6.l || R5 = W [P5++] (z);
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/md5/asm/
H A Dmd5-sparcv9.pl66 my $rot = (7,12,17,22)[$i%4];
81 sll $a,$rot,$t3
83 srl $a,32-$rot,$a
97 sll $a,$rot,$t3
99 srl $a,32-$rot,$a
109 my $rot = (7,12,17,22)[$i%4];
119 sll $a,$rot,$t3
121 srl $a,32-$rot,$a
130 my $rot = (5,9,14,20)[$i%4];
144 sll $a,$rot,
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/md5/asm/
H A Dmd5-sparcv9.pl68 my $rot = (7,12,17,22)[$i%4];
83 sll $a,$rot,$t3
85 srl $a,32-$rot,$a
99 sll $a,$rot,$t3
101 srl $a,32-$rot,$a
111 my $rot = (7,12,17,22)[$i%4];
121 sll $a,$rot,$t3
123 srl $a,32-$rot,$a
132 my $rot = (5,9,14,20)[$i%4];
146 sll $a,$rot,
[all...]
/netbsd-current/games/tetris/
H A Dtetris.h128 int rot; /* index of rotated version of this shape */ member in struct:shape
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/aarch64/
H A Daarch64-sve-builtins-sve2.cc55 unspec_cdot (int rot) argument
57 switch (rot)
69 unspec_sqrdcmlah (int rot) argument
71 switch (rot)
100 int rot = INTVAL (e.args.pop ()); variable
101 return e.use_exact_insn (code_for_aarch64_sve (unspec_cdot (rot),
113 int rot = INTVAL (e.args.pop ()); variable
114 return e.use_exact_insn (code_for_aarch64_lane (unspec_cdot (rot),
203 int rot = INTVAL (e.args.pop ()); variable
204 if (rot
219 int rot = INTVAL (e.args.pop ()); variable
232 int rot = INTVAL (e.args.pop ()); variable
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/aarch64/
H A Daarch64-sve-builtins-sve2.cc55 unspec_cdot (int rot) argument
57 switch (rot)
69 unspec_sqrdcmlah (int rot) argument
71 switch (rot)
100 int rot = INTVAL (e.args.pop ()); variable
101 return e.use_exact_insn (code_for_aarch64_sve (unspec_cdot (rot),
113 int rot = INTVAL (e.args.pop ()); variable
114 return e.use_exact_insn (code_for_aarch64_lane (unspec_cdot (rot),
203 int rot = INTVAL (e.args.pop ()); variable
204 if (rot
219 int rot = INTVAL (e.args.pop ()); variable
232 int rot = INTVAL (e.args.pop ()); variable
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/zlib/examples/
H A Dgzappend.c122 /* rotate list[0..len-1] left by rot positions, in place */
123 local void rotate(unsigned char *list, unsigned len, unsigned rot) argument
129 /* normalize rot and handle degenerate cases */
131 if (rot >= len) rot %= len;
132 if (rot == 0) return;
138 if (rot == 1) {
146 if (rot == len - 1) {
154 cycles = gcd(len, rot); /* number of cycles */
160 from += rot; /* g
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/zlib/examples/
H A Dgzappend.c122 /* rotate list[0..len-1] left by rot positions, in place */
123 local void rotate(unsigned char *list, unsigned len, unsigned rot) argument
129 /* normalize rot and handle degenerate cases */
131 if (rot >= len) rot %= len;
132 if (rot == 0) return;
138 if (rot == 1) {
146 if (rot == len - 1) {
154 cycles = gcd(len, rot); /* number of cycles */
160 from += rot; /* g
[all...]
/netbsd-current/common/dist/zlib/examples/
H A Dgzappend.c122 /* rotate list[0..len-1] left by rot positions, in place */
123 local void rotate(unsigned char *list, unsigned len, unsigned rot) argument
129 /* normalize rot and handle degenerate cases */
131 if (rot >= len) rot %= len;
132 if (rot == 0) return;
138 if (rot == 1) {
146 if (rot == len - 1) {
154 cycles = gcd(len, rot); /* number of cycles */
160 from += rot; /* g
[all...]
/netbsd-current/external/gpl3/binutils/dist/zlib/examples/
H A Dgzappend.c122 /* rotate list[0..len-1] left by rot positions, in place */
123 local void rotate(unsigned char *list, unsigned len, unsigned rot) argument
129 /* normalize rot and handle degenerate cases */
131 if (rot >= len) rot %= len;
132 if (rot == 0) return;
138 if (rot == 1) {
146 if (rot == len - 1) {
154 cycles = gcd(len, rot); /* number of cycles */
160 from += rot; /* g
[all...]
/netbsd-current/external/gpl3/gdb/dist/zlib/examples/
H A Dgzappend.c122 /* rotate list[0..len-1] left by rot positions, in place */
123 local void rotate(unsigned char *list, unsigned len, unsigned rot) argument
129 /* normalize rot and handle degenerate cases */
131 if (rot >= len) rot %= len;
132 if (rot == 0) return;
138 if (rot == 1) {
146 if (rot == len - 1) {
154 cycles = gcd(len, rot); /* number of cycles */
160 from += rot; /* g
[all...]
/netbsd-current/external/bsd/unbound/dist/util/storage/
H A Dlookup3.c118 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
150 Some k values for my "a-=c; a^=rot(c,k); c+=b;" arrangement that
175 a -= c; a ^= rot(c, 4); c += b; \
176 b -= a; b ^= rot(a, 6); a += c; \
177 c -= b; c ^= rot(b, 8); b += a; \
178 a -= c; a ^= rot(c,16); c += b; \
179 b -= a; b ^= rot(a,19); a += c; \
180 c -= b; c ^= rot(b, 4); b += a; \
210 c ^= b; c -= rot(b,14); \
211 a ^= c; a -= rot(
[all...]
/netbsd-current/external/bsd/nsd/dist/
H A Dlookup3.c109 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
132 Some k values for my "a-=c; a^=rot(c,k); c+=b;" arrangement that
157 a -= c; a ^= rot(c, 4); c += b; \
158 b -= a; b ^= rot(a, 6); a += c; \
159 c -= b; c ^= rot(b, 8); b += a; \
160 a -= c; a ^= rot(c,16); c += b; \
161 b -= a; b ^= rot(a,19); a += c; \
162 c -= b; c ^= rot(b, 4); b += a; \
192 c ^= b; c -= rot(b,14); \
193 a ^= c; a -= rot(
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/camellia/asm/
H A Dcmll-x86.pl481 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
484 if ($rot) {
486 &shld ($i0,$i1,$rot);
487 &shld ($i1,$i2,$rot);
488 &shld ($i2,$i3,$rot);
489 &shld ($i3,$idx,$rot);
501 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
504 if ($rot) {
506 &shl ($i0,$rot);
508 &shr ($idx,32-$rot);
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/camellia/asm/
H A Dcmll-x86.pl480 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
483 if ($rot) {
485 &shld ($i0,$i1,$rot);
486 &shld ($i1,$i2,$rot);
487 &shld ($i2,$i3,$rot);
488 &shld ($i3,$idx,$rot);
500 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
503 if ($rot) {
505 &shl ($i0,$rot);
507 &shr ($idx,32-$rot);
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/ia64/
H A Dopc-i.pl132 mov pr.rot = 0
135 mov pr.rot = 0x3ff0000
136 mov pr.rot = -0x4000000
/netbsd-current/external/gpl2/groff/dist/src/devices/grolbp/
H A Dlbp.h217 rot[4], /* rotation */ local
222 vdmnum(perimeter,perim),vdmnum(0,rot),
287 rot[4], /* rotation */ local
292 vdmnum(pattern,patt),vdmnum(0,rot),
294 vdmprintf("}F%s",vdmnum(unionstyle,rot));
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/sha/asm/
H A Dsha1-armv8.pl76 add $e,$e,$t2 // e+=rot(a,5)
93 add $e,$e,$t2 // e+=rot(a,5)
118 add $e,$e,$t2 // e+=rot(a,5)
143 add $e,$e,$t2 // e+=rot(a,5)
156 add $e,$e,$t2 // e+=rot(a,5)
166 add $e,$e,$t2 // e+=rot(a,5)
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/sha/asm/
H A Dsha1-armv8.pl80 add $e,$e,$t2 // e+=rot(a,5)
97 add $e,$e,$t2 // e+=rot(a,5)
122 add $e,$e,$t2 // e+=rot(a,5)
147 add $e,$e,$t2 // e+=rot(a,5)
160 add $e,$e,$t2 // e+=rot(a,5)
170 add $e,$e,$t2 // e+=rot(a,5)
/netbsd-current/external/gpl3/gdb.old/dist/sim/testsuite/common/
H A Dbits-tst.c240 long long rot = calc (roted, mask, -1, shift); local
241 long long urot = calc (roted, rot, -1, -shift);
243 || (shift == 0 && rot != mask)
244 || (shift != 0 && rot == mask && abs(row - col) != (nr_bits - 1)))

Completed in 312 milliseconds

1234