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

/freebsd-10.1-release/sys/libkern/
H A Djenkins_hash.c45 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
68 Some k values for my "a-=c; a^=rot(c,k); c+=b;" arrangement that
93 a -= c; a ^= rot(c, 4); c += b; \
94 b -= a; b ^= rot(a, 6); a += c; \
95 c -= b; c ^= rot(b, 8); b += a; \
96 a -= c; a ^= rot(c,16); c += b; \
97 b -= a; b ^= rot(a,19); a += c; \
98 c -= b; c ^= rot(b, 4); b += a; \
128 c ^= b; c -= rot(b,14); \
129 a ^= c; a -= rot(
[all...]
/freebsd-10.1-release/games/caesar/
H A Dcaesar.c150 int ch, rot; local
152 if ((rot = atoi(arg)) < 0) {
157 putchar(ROTATE(ch, rot));
/freebsd-10.1-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-10.1-release/contrib/unbound/util/storage/
H A Dlookup3.c107 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
130 Some k values for my "a-=c; a^=rot(c,k); c+=b;" arrangement that
155 a -= c; a ^= rot(c, 4); c += b; \
156 b -= a; b ^= rot(a, 6); a += c; \
157 c -= b; c ^= rot(b, 8); b += a; \
158 a -= c; a ^= rot(c,16); c += b; \
159 b -= a; b ^= rot(a,19); a += c; \
160 c -= b; c ^= rot(b, 4); b += a; \
190 c ^= b; c -= rot(b,14); \
191 a ^= c; a -= rot(
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl471 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
474 if ($rot) {
476 &shld ($i0,$i1,$rot);
477 &shld ($i1,$i2,$rot);
478 &shld ($i2,$i3,$rot);
479 &shld ($i3,$idx,$rot);
491 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
494 if ($rot) {
496 &shl ($i0,$rot);
498 &shr ($idx,32-$rot);
[all...]
H A Dcmll-x86_64.pl367 my ($i0,$i1,$rot)=@_;
369 if ($rot) {
372 shld \$$rot,$i1,$i0
373 shld \$$rot,%r11,$i1
382 my ($i0,$i1,$rot)=@_;
384 if ($rot) {
387 shl \$$rot,$i0
389 shr \$`64-$rot`,%r9
390 shr \$`64-$rot`,%r11
392 shl \$$rot,
[all...]
/freebsd-10.1-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-10.1-release/lib/libc/gen/
H A Dgetnetgrent.c301 int y, rv, rot; local
306 for (rot = 0; ; rot++) {
307 switch (rot) {
/freebsd-10.1-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-10.1-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:__anon332
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.c4970 int rot;
4981 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
4984 switch (rot)
4967 int rot; local
/freebsd-10.1-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 }
H A Dia64-mont.pl153 mov pr.rot=0x20001f<<16
223 mov pr.rot=0x20101f<<16
307 mov pr.rot=0x10001<<16
340 mov pr.rot=1<<16 };;
484 mov pr.rot=1<<16 }
/freebsd-10.1-release/crypto/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl417 mov pr.rot = 0x10000; \\
617 ;; // next "mov pr.rot = N"
/freebsd-10.1-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-10.1-release/contrib/sendmail/contrib/
H A Dexpn.pl1351 that did about the same thing. It has since suffered bit rot
/freebsd-10.1-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-10.1-release/crypto/openssl/crypto/aes/asm/
H A Daes-ia64.S94 mov pr.rot=1<<16 }
473 mov pr.rot=1<<16 }
/freebsd-10.1-release/crypto/openssl/crypto/modes/asm/
H A Dghash-ia64.pl126 mov pr.rot=0x7<<16
/freebsd-10.1-release/sys/boot/ficl/
H A Dwords.c980 static void rot(FICL_VM *pVM) function
4965 dictAppendWord(dp, "rot", rot, FW_DEFAULT);

Completed in 370 milliseconds