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

/freebsd-9.3-release/sys/libkern/
H A Djenkins.h44 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
67 Some k values for my "a-=c; a^=rot(c,k); c+=b;" arrangement that
92 a -= c; a ^= rot(c, 4); c += b; \
93 b -= a; b ^= rot(a, 6); a += c; \
94 c -= b; c ^= rot(b, 8); b += a; \
95 a -= c; a ^= rot(c,16); c += b; \
96 b -= a; b ^= rot(a,19); a += c; \
97 c -= b; c ^= rot(b, 4); b += a; \
127 c ^= b; c -= rot(b,14); \
128 a ^= c; a -= rot(
[all...]
/freebsd-9.3-release/games/caesar/
H A Dcaesar.c150 int ch, rot; local
152 if ((rot = atoi(arg)) < 0) {
157 putchar(ROTATE(ch, rot));
/freebsd-9.3-release/contrib/tcsh/
H A Dsh.hist.c180 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
183 a -= c; a ^= rot(c, 4); c += b; \
184 b -= a; b ^= rot(a, 6); a += c; \
185 c -= b; c ^= rot(b, 8); b += a; \
186 a -= c; a ^= rot(c,16); c += b; \
187 b -= a; b ^= rot(a,19); a += c; \
188 c -= b; c ^= rot(b, 4); b += a; \
192 c ^= b; c -= rot(b,14); \
193 a ^= c; a -= rot(c,11); \
194 b ^= a; b -= rot(
[all...]
/freebsd-9.3-release/contrib/groff/src/devices/grolbp/
H A Dlbp.h215 rot[4], /* rotation */ local
220 vdmnum(perimeter,perim),vdmnum(0,rot),
285 rot[4], /* rotation */ local
290 vdmnum(pattern,patt),vdmnum(0,rot),
292 vdmprintf("}F%s",vdmnum(unionstyle,rot));
/freebsd-9.3-release/lib/libc/gen/
H A Dgetnetgrent.c301 int y, rv, rot; local
306 for (rot = 0; ; rot++) {
307 switch (rot) {
/freebsd-9.3-release/contrib/gdb/gdb/
H A Darm-tdep.c789 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */ local
790 imm = (imm >> rot) | (imm << (32 - rot));
797 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */ local
798 imm = (imm >> rot) | (imm << (32 - rot));
840 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */ local
841 imm = (imm >> rot) | (imm << (32 - rot));
848 unsigned rot local
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/rc4/asm/
H A Drc4-ia64.S103 mov pr.rot=1<<16 };;
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dtc-mips.c7403 unsigned int rot;
7408 rot = imm_expr.X_add_number & 0x3f;
7411 rot = (64 - rot) & 0x3f;
7412 if (rot >= 32)
7413 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
7415 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
7418 if (rot == 0)
7423 l = (rot < 0x20) ? "dsll" : "dsll32";
7424 r = ((0x40 - rot) <
7396 unsigned int rot; local
7428 unsigned int rot; local
7478 unsigned int rot; local
7509 unsigned int rot; local
[all...]
H A Dtc-ia64.c311 *dynreg[DYNREG_NUM_TYPES], in, loc, out, rot; member in struct:__anon455
1097 md.rot.num_regs = rots;
4840 if (num_alloced > md.rot.num_regs)
4843 md.rot.num_regs);
7595 declare_register ("pr.rot", REG_PR_ROT);
9512 /* Assumes that md.rot.num_regs is always valid */
9513 if (md.rot.num_regs > 0
9515 && num < 31 + md.rot.num_regs)
9999 for (i = 32; i < 32 + md.rot.num_regs; i++)
H A Dtc-arm.c4965 int rot;
4976 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
4979 switch (rot)
4962 int rot; local
/freebsd-9.3-release/crypto/openssl/crypto/bn/asm/
H A Dia64.S193 mov pr.rot=1<<16 };;
246 mov pr.rot=1<<16 };;
304 mov pr.rot=0x800001<<16
419 mov pr.rot=0x2001<<16
485 mov pr.rot=1<<16
1422 mov pr.rot=0 }
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Darm-dis.c3659 unsigned int rot = (given & 0x00000030) >> 4;
3660 if (rot)
3661 func (stream, ", ror #%u", rot * 8);
3658 unsigned int rot = (given & 0x00000030) >> 4; local
/freebsd-9.3-release/contrib/sendmail/contrib/
H A Dexpn.pl1351 that did about the same thing. It has since suffered bit rot
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1124 uint32_t rot = (Val & 0xF00) >> 7; local
1125 uint32_t rot_imm = (imm >> rot) | (imm << ((32-rot) & 0x1F));
3913 unsigned rot = fieldFromInstruction(Val, 7, 5); local
3914 unsigned imm = (unrot >> rot) | (unrot << ((32-rot)&31));
/freebsd-9.3-release/crypto/openssl/crypto/aes/asm/
H A Daes-ia64.S94 mov pr.rot=1<<16 }
473 mov pr.rot=1<<16 }
/freebsd-9.3-release/sys/boot/ficl/
H A Dwords.c980 static void rot(FICL_VM *pVM) function
4965 dictAppendWord(dp, "rot", rot, FW_DEFAULT);

Completed in 452 milliseconds