Symbol: rot
games/caesar/caesar.c
134
printit(int rot)
games/caesar/caesar.c
138
if (rot < 0)
games/caesar/caesar.c
139
rot = rot + 26;
games/caesar/caesar.c
141
putchar(ROTATE(ch, rot));
games/tetris/tetris.c
146
tmp = &shapes[classic? tmp->rotc : tmp->rot];
games/tetris/tetris.c
318
classic? curshape->rotc : curshape->rot];
games/tetris/tetris.h
127
int rot; /* index of rotated version of this shape */
sbin/unwind/libunbound/util/storage/lookup3.c
175
a -= c; a ^= rot(c, 4); c += b; \
sbin/unwind/libunbound/util/storage/lookup3.c
176
b -= a; b ^= rot(a, 6); a += c; \
sbin/unwind/libunbound/util/storage/lookup3.c
177
c -= b; c ^= rot(b, 8); b += a; \
sbin/unwind/libunbound/util/storage/lookup3.c
178
a -= c; a ^= rot(c,16); c += b; \
sbin/unwind/libunbound/util/storage/lookup3.c
179
b -= a; b ^= rot(a,19); a += c; \
sbin/unwind/libunbound/util/storage/lookup3.c
180
c -= b; c ^= rot(b, 4); b += a; \
sbin/unwind/libunbound/util/storage/lookup3.c
210
c ^= b; c -= rot(b,14); \
sbin/unwind/libunbound/util/storage/lookup3.c
211
a ^= c; a -= rot(c,11); \
sbin/unwind/libunbound/util/storage/lookup3.c
212
b ^= a; b -= rot(a,25); \
sbin/unwind/libunbound/util/storage/lookup3.c
213
c ^= b; c -= rot(b,16); \
sbin/unwind/libunbound/util/storage/lookup3.c
214
a ^= c; a -= rot(c,4); \
sbin/unwind/libunbound/util/storage/lookup3.c
215
b ^= a; b -= rot(a,14); \
sbin/unwind/libunbound/util/storage/lookup3.c
216
c ^= b; c -= rot(b,24); \
usr.sbin/nsd/lookup3.c
157
a -= c; a ^= rot(c, 4); c += b; \
usr.sbin/nsd/lookup3.c
158
b -= a; b ^= rot(a, 6); a += c; \
usr.sbin/nsd/lookup3.c
159
c -= b; c ^= rot(b, 8); b += a; \
usr.sbin/nsd/lookup3.c
160
a -= c; a ^= rot(c,16); c += b; \
usr.sbin/nsd/lookup3.c
161
b -= a; b ^= rot(a,19); a += c; \
usr.sbin/nsd/lookup3.c
162
c -= b; c ^= rot(b, 4); b += a; \
usr.sbin/nsd/lookup3.c
192
c ^= b; c -= rot(b,14); \
usr.sbin/nsd/lookup3.c
193
a ^= c; a -= rot(c,11); \
usr.sbin/nsd/lookup3.c
194
b ^= a; b -= rot(a,25); \
usr.sbin/nsd/lookup3.c
195
c ^= b; c -= rot(b,16); \
usr.sbin/nsd/lookup3.c
196
a ^= c; a -= rot(c,4); \
usr.sbin/nsd/lookup3.c
197
b ^= a; b -= rot(a,14); \
usr.sbin/nsd/lookup3.c
198
c ^= b; c -= rot(b,24); \
usr.sbin/unbound/util/storage/lookup3.c
175
a -= c; a ^= rot(c, 4); c += b; \
usr.sbin/unbound/util/storage/lookup3.c
176
b -= a; b ^= rot(a, 6); a += c; \
usr.sbin/unbound/util/storage/lookup3.c
177
c -= b; c ^= rot(b, 8); b += a; \
usr.sbin/unbound/util/storage/lookup3.c
178
a -= c; a ^= rot(c,16); c += b; \
usr.sbin/unbound/util/storage/lookup3.c
179
b -= a; b ^= rot(a,19); a += c; \
usr.sbin/unbound/util/storage/lookup3.c
180
c -= b; c ^= rot(b, 4); b += a; \
usr.sbin/unbound/util/storage/lookup3.c
210
c ^= b; c -= rot(b,14); \
usr.sbin/unbound/util/storage/lookup3.c
211
a ^= c; a -= rot(c,11); \
usr.sbin/unbound/util/storage/lookup3.c
212
b ^= a; b -= rot(a,25); \
usr.sbin/unbound/util/storage/lookup3.c
213
c ^= b; c -= rot(b,16); \
usr.sbin/unbound/util/storage/lookup3.c
214
a ^= c; a -= rot(c,4); \
usr.sbin/unbound/util/storage/lookup3.c
215
b ^= a; b -= rot(a,14); \
usr.sbin/unbound/util/storage/lookup3.c
216
c ^= b; c -= rot(b,24); \