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

/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DHashing.h173 /// \brief Bitwise right rotate.
176 inline uint64_t rotate(uint64_t val, size_t shift) { function in namespace:llvm::hashing::detail
213 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b;
221 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d,
222 a + rotate(b ^ k3, 20) - c + len + seed);
228 uint64_t b = rotate(a + z, 52);
229 uint64_t c = rotate(a, 37);
231 c += rotate(a, 7);
234 uint64_t vs = b + rotate(
[all...]
/freebsd-9.3-release/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-9.3-release/contrib/tcsh/
H A Ded.inputl.c60 static int rotate = 0; variable
368 rotate = 0;
374 rotate = 0;
379 rotate = 1;
384 rotate = 1;
389 if (InputBuf[curlen] && rotate) {
482 if (InputBuf[curlen] && rotate) {
/freebsd-9.3-release/contrib/libstdc++/include/backward/
H A Dalgo.h93 using std::rotate;
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dentropy.c96 isc_uint32_t rotate; /*%< how many bits to rotate by */ member in struct:__anon227
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-9.3-release/contrib/ntp/lib/isc/
H A Dentropy.c96 isc_uint32_t rotate; /*%< how many bits to rotate by */ member in struct:__anon63
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-9.3-release/sys/arm/arm/
H A Ddisassem.c327 int rotate= ((insn >> 7) & 0x1e); local
330 (insn & 0xff) << (32 - rotate) |
331 (insn & 0xff) >> rotate);
/freebsd-9.3-release/usr.sbin/newsyslog/
H A Dnewsyslog.c161 int rotate; /* Non-zero if this file should be rotated */ member in struct:conf_entry
222 int norotate = 0; /* Don't rotate */
226 int rotatereq = 0; /* -R = Always rotate the file(s) as given */
394 tempwork->rotate = 0;
414 tempwork->rotate = 0;
496 ent->rotate = 0;
574 ent->rotate = 1;
578 ent->rotate = 1;
581 ent->rotate = 1;
585 ent->rotate
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Darm-tdep.c789 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
797 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
840 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
848 unsigned rot = (insn & 0xf00) >> 7; /* rotate amount */
1673 unsigned long rotate = 2 * bits (this_instr, 8, 11); local
1674 operand2 = ((immval >> rotate) | (immval << (32 - rotate)))
/freebsd-9.3-release/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-9.3-release/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-9.3-release/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-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp623 // header and only rotate if safe.
729 /// \brief Attempt to rotate an exiting block to the bottom of the loop.
731 /// Once we have built a chain, try to rotate it to line up the hot exit block
734 /// of its bottom already, don't rotate it.
774 std::rotate(LoopChain.begin(), llvm::next(ExitIt), LoopChain.end());
/freebsd-9.3-release/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-9.3-release/contrib/libc++/src/
H A Dlocale.cpp5469 rotate(__curr_symbol_.begin(), __curr_symbol_.begin() + 3,

Completed in 728 milliseconds