Searched refs:rotate (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dcityhash.c31 * Bitwise right rotate. Normally this will compile to a single
35 rotate(uint64_t val, int shift) function
60 return (cityhash_helper(rotate(a + b, 43) + rotate(c, 30) + d,
61 a + rotate(b + HASH_K2, 18) + c, mul));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h166 /// Bitwise right rotate.
169 inline uint64_t rotate(uint64_t val, size_t shift) { function in namespace:llvm::hashing::detail
206 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b;
214 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d,
215 a + rotate(b ^ k3, 20) - c + len + seed);
221 uint64_t b = rotate(a + z, 52);
222 uint64_t c = rotate(a, 37);
224 c += rotate(a, 7);
227 uint64_t vs = b + rotate(
[all...]
/freebsd-11-stable/sys/netgraph/
H A Dng_vlan_rotate.c310 * Receive data, and do rotate the vlans as desired.
319 * 34012 +2 rotate
320 * 12340 +4 rotate
321 * 12340 -1 rotate
354 /* rotate left aka downwards */
379 int8_t rotate; local
386 rotate = +vrp->conf.rot;
389 rotate = -vrp->conf.rot;
433 if ((vlans < vrp->conf.min) || (vlans <= abs(rotate))) {
441 if (rotate
[all...]
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-thumb.pl54 sub rotate { subroutine
74 $code.=$inline?&rotate():"\tbl .Lrotate\n";
84 $code.=$inline?&rotate():"\tbl .Lrotate\n";
97 $code.=$inline?&rotate():"\tbl .Lrotate\n";
247 $code.=".Lrotate:\n".&rotate()."\tmov pc,lr\n" if (!$inline);
/freebsd-11-stable/release/picobsd/tinyware/view/
H A Dview.c55 int rotate; member in struct:action
204 if(e->zoom!=1 || e->rotate) {
206 if(e->rotate) {
218 if(e->rotate) {
387 a.rotate=0;
440 if(a.rotate) a.rotate=0;
441 else a.rotate=1;
581 a.rotate=0;
/freebsd-11-stable/contrib/tcsh/
H A Ded.inputl.c56 static int rotate = 0; variable
364 rotate = 0;
370 rotate = 0;
375 rotate = 1;
380 rotate = 1;
385 if (InputBuf[curlen] && rotate) {
478 if (InputBuf[curlen] && rotate) {
/freebsd-11-stable/contrib/libstdc++/include/backward/
H A Dalgo.h93 using std::rotate;
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dentropy.c96 isc_uint32_t rotate; /*%< how many bits to rotate by */ member in struct:__anon4814
286 if (rp->rotate == 0)
290 ((val << rp->rotate) | (val >> (32 - rp->rotate)));
293 * If we have looped around the pool, increment the rotate
302 rp->rotate = (rp->rotate + 7) & 31;
660 pool->rotate = 0;
669 pool->rotate
[all...]
/freebsd-11-stable/sys/amd64/vmm/io/
H A Dvatpic.c70 bool rotate; member in struct:atpic
366 atpic->rotate = ((val & OCW2_R) != 0);
382 if (atpic->rotate)
385 } else if ((val & OCW2_SL) != 0 && atpic->rotate == true) {
591 if (atpic->rotate == true)
/freebsd-11-stable/sys/arm/arm/
H A Ddisassem.c338 int rotate= ((insn >> 7) & 0x1e); local
341 (insn & 0xff) << (32 - rotate) |
342 (insn & 0xff) >> rotate);
/freebsd-11-stable/usr.sbin/newsyslog/
H A Dnewsyslog.c132 #define CE_NOEMPTY 0x2000 /* Do not rotate the file when its size */
165 int rotate; /* Non-zero if this file should be rotated */ member in struct:conf_entry
228 static int norotate = 0; /* Don't rotate */
232 static int rotatereq = 0; /* -R = Always rotate the file(s) as given */
413 tempwork->rotate = 0;
433 tempwork->rotate = 0;
515 ent->rotate = 0;
598 ent->rotate = 1;
602 ent->rotate = 1;
605 ent->rotate
[all...]
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Dghashv8-armx.S124 vext.8 q0,q0,q0,#8 @ rotate Xi
131 vext.8 q3,q8,q8,#8 @ rotate I[0]
H A Daesv8-armx.S13 .long 0x0c0f0e0d,0x0c0f0e0d,0x0c0f0e0d,0x0c0f0e0d @ rotate-n-splat
H A Daes-armv4.S17 @ allows to merge logical or arithmetic operation with shift or rotate
/freebsd-11-stable/crypto/openssh/regress/
H A DMakefile78 hostkey-rotate \
/freebsd-11-stable/contrib/gdb/gdb/
H A Darm-tdep.c792 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
800 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
843 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
851 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
1675 unsigned long rotate = 2 * bits (this_instr, 8, 11); local
1676 operand2 = ((immval >> rotate) | (immval << (32 - rotate)))
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dstl_algo.h1732 * This is a helper function for the rotate algorithm specialized on RAIs.
1751 * This is a helper function for the rotate algorithm.
1791 * This is a helper function for the rotate algorithm.
1825 * This is a helper function for the rotate algorithm.
1917 rotate(_ForwardIterator __first, _ForwardIterator __middle, function
2135 std::rotate(__begin, __middle, __end);
2184 std::rotate(__begin, __middle, __end);
3104 std::rotate(__first_cut, __middle, __second_cut);
3155 std::rotate(__first_cut, __middle, __second_cut);
3568 std::rotate(__firs
[all...]
/freebsd-11-stable/contrib/binutils/opcodes/
H A Darm-dis.c2820 int rotate = (given & 0xf00) >> 7;
2822 immed = (((immed << (32 - rotate))
2823 | (immed >> rotate)) & 0xffffffff);
2819 int rotate = (given & 0xf00) >> 7; local
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dropeimpl.h1681 rotate(_Rope_iterator<char, __STL_DEFAULT_ALLOCATOR(char)> __first, function
1696 rotate(_Rope_iterator<wchar_t, __STL_DEFAULT_ALLOCATOR(char)> __first,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp2117 // header and only rotate if safe.
2257 /// Attempt to rotate an exiting block to the bottom of the loop.
2259 /// Once we have built a chain, try to rotate it to line up the hot exit block
2262 /// of its bottom already, don't rotate it.
2331 std::rotate(LoopChain.begin(), std::next(ExitIt), LoopChain.end());
2334 /// Attempt to rotate a loop based on profile data to reduce branch cost.
2477 std::rotate(LoopChain.begin(), RotationPos, LoopChain.end());
2535 // Check if we have profile data for this function. If yes, we will rotate
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Daesv8-armx.pl65 .long 0x0c0f0e0d,0x0c0f0e0d,0x0c0f0e0d,0x0c0f0e0d // rotate-n-splat
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dopencl-c.h9849 char __ovld __cnfn rotate(char v, char i);
9850 uchar __ovld __cnfn rotate(uchar v, uchar i);
9851 char2 __ovld __cnfn rotate(char2 v, char2 i);
9852 uchar2 __ovld __cnfn rotate(uchar2 v, uchar2 i);
9853 char3 __ovld __cnfn rotate(char3 v, char3 i);
9854 uchar3 __ovld __cnfn rotate(uchar3 v, uchar3 i);
9855 char4 __ovld __cnfn rotate(char4 v, char4 i);
9856 uchar4 __ovld __cnfn rotate(uchar4 v, uchar4 i);
9857 char8 __ovld __cnfn rotate(char8 v, char8 i);
9858 uchar8 __ovld __cnfn rotate(uchar
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dexpmed.c2199 int rotate = (code == LROTATE_EXPR || code == RROTATE_EXPR);
2254 if (rotate)
2262 do it as the IOR of two shifts. I.e., to rotate A
2308 if (temp == 0 && ! rotate
2190 int rotate = (code == LROTATE_EXPR || code == RROTATE_EXPR); local
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DWriter.cpp1489 // and insert them with one rotate.
1494 std::rotate(pos, nonScriptI, end);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp5790 unsigned rotate = (fieldFromInstruction(Insn, 20, 2) << 0); local
5807 Inst.addOperand(MCOperand::createImm(rotate));

Completed in 328 milliseconds

12